Path: blob/main/contrib/llvm-project/llvm/lib/Target/Xtensa/Xtensa.h
35271 views
//===- Xtensa.h - Top-level interface for Xtensa representation -*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file contains the entry points for global functions defined in9// the LLVM Xtensa back-end.10//11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_XTENSA_XTENSA_H14#define LLVM_LIB_TARGET_XTENSA_XTENSA_H1516#include "MCTargetDesc/XtensaMCTargetDesc.h"17#include "llvm/PassRegistry.h"18#include "llvm/Support/CodeGen.h"1920namespace llvm {21class XtensaTargetMachine;22class FunctionPass;2324FunctionPass *createXtensaISelDag(XtensaTargetMachine &TM,25CodeGenOptLevel OptLevel);26} // namespace llvm27#endif // LLVM_LIB_TARGET_XTENSA_XTENSA_H282930