Path: blob/main/contrib/llvm-project/llvm/lib/Target/ARC/ARC.h
35268 views
//===- ARC.h - Top-level interface for ARC 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 in the LLVM9// ARC back-end.10//11//===----------------------------------------------------------------------===//1213#ifndef LLVM_LIB_TARGET_ARC_ARC_H14#define LLVM_LIB_TARGET_ARC_ARC_H1516#include "MCTargetDesc/ARCMCTargetDesc.h"17#include "llvm/Target/TargetMachine.h"1819namespace llvm {2021class ARCTargetMachine;22class FunctionPass;23class PassRegistry;2425FunctionPass *createARCISelDag(ARCTargetMachine &TM, CodeGenOptLevel OptLevel);26FunctionPass *createARCExpandPseudosPass();27FunctionPass *createARCOptAddrMode();28FunctionPass *createARCBranchFinalizePass();29void initializeARCDAGToDAGISelLegacyPass(PassRegistry &);3031} // end namespace llvm3233#endif // LLVM_LIB_TARGET_ARC_ARC_H343536