brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 4d57bfd Raw
31 lines · c
1//===- Xtensa.h - Top-level interface for Xtensa representation -*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file contains the entry points for global functions defined in10// the LLVM Xtensa back-end.11//12//===----------------------------------------------------------------------===//13 14#ifndef LLVM_LIB_TARGET_XTENSA_XTENSA_H15#define LLVM_LIB_TARGET_XTENSA_XTENSA_H16 17#include "MCTargetDesc/XtensaMCTargetDesc.h"18#include "llvm/PassRegistry.h"19#include "llvm/Support/CodeGen.h"20 21namespace llvm {22class FunctionPass;23class PassRegistry;24class XtensaTargetMachine;25 26FunctionPass *createXtensaISelDag(XtensaTargetMachine &TM,27                                  CodeGenOptLevel OptLevel);28void initializeXtensaAsmPrinterPass(PassRegistry &);29} // namespace llvm30#endif // LLVM_LIB_TARGET_XTENSA_XTENSA_H31