-
Notifications
You must be signed in to change notification settings - Fork 8
/
Epiphany.h
42 lines (31 loc) · 1.17 KB
/
Epiphany.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//==-- Epiphany.h - Top-level interface for Epiphany representation -*- C++ -*-=//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file contains the entry points for global functions defined in the LLVM
// Epiphany back-end.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_TARGET_EPIPHANY_H
#define LLVM_TARGET_EPIPHANY_H
#include "MCTargetDesc/EpiphanyMCTargetDesc.h"
#include "llvm/Target/TargetMachine.h"
namespace llvm {
class EpiphanyAsmPrinter;
class FunctionPass;
class EpiphanyTargetMachine;
class MachineInstr;
class MCInst;
FunctionPass *createEpiphanyISelDAG(EpiphanyTargetMachine &TM,
CodeGenOpt::Level OptLevel);
FunctionPass *createEpiphanyCondMovPass(EpiphanyTargetMachine &TM);
FunctionPass *createEpiphanyLSOptPass();
void LowerEpiphanyMachineInstrToMCInst(const MachineInstr *MI, MCInst &OutMI,
EpiphanyAsmPrinter &AP);
}
#endif