HomeSort by relevance Sort by last modified time
    Searched refs:MCInstrInfo (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.h 93 class MCInstrInfo;
106 const MCInstrInfo *MII;
112 const MCInstrInfo *MII);
  /external/llvm/lib/Target/MBlaze/MCTargetDesc/
MBlazeMCTargetDesc.h 23 class MCInstrInfo;
33 MCCodeEmitter *createMBlazeMCCodeEmitter(const MCInstrInfo &MCII,
MBlazeMCTargetDesc.cpp 18 #include "llvm/MC/MCInstrInfo.h"
37 static MCInstrInfo *createMBlazeMCInstrInfo() {
38 MCInstrInfo *X = new MCInstrInfo();
98 const MCInstrInfo &MII,
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 17 class MCInstrInfo;
30 const MCInstrInfo &MII;
39 MCInstPrinter(const MCAsmInfo &mai, const MCInstrInfo &mii,
MCInstrAnalysis.h 17 #include "llvm/MC/MCInstrInfo.h"
24 const MCInstrInfo *Info;
27 MCInstrAnalysis(const MCInstrInfo *Info) : Info(Info) {}
MCInstrInfo.h 1 //===-- llvm/MC/MCInstrInfo.h - Target Instruction Info ---------*- C++ -*-===//
24 /// MCInstrInfo - Interface to description of machine instruction set
26 class MCInstrInfo {
33 /// InitMCInstrInfo - Initialize MCInstrInfo, called by TableGen
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsMCTargetDesc.h 23 class MCInstrInfo;
36 MCCodeEmitter *createMipsMCCodeEmitterEB(const MCInstrInfo &MCII,
40 MCCodeEmitter *createMipsMCCodeEmitterEL(const MCInstrInfo &MCII,
MipsMCTargetDesc.cpp 19 #include "llvm/MC/MCInstrInfo.h"
69 static MCInstrInfo *createMipsMCInstrInfo() {
70 MCInstrInfo *X = new MCInstrInfo();
120 const MCInstrInfo &MII,
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMCTargetDesc.h 23 class MCInstrInfo;
34 MCCodeEmitter *createPPCMCCodeEmitter(const MCInstrInfo &MCII,
PPCMCTargetDesc.cpp 19 #include "llvm/MC/MCInstrInfo.h"
37 static MCInstrInfo *createPPCMCInstrInfo() {
38 MCInstrInfo *X = new MCInstrInfo();
111 const MCInstrInfo &MII,
  /external/llvm/lib/Target/MSP430/MCTargetDesc/
MSP430MCTargetDesc.cpp 18 #include "llvm/MC/MCInstrInfo.h"
34 static MCInstrInfo *createMSP430MCInstrInfo() {
35 MCInstrInfo *X = new MCInstrInfo();
64 const MCInstrInfo &MII,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCTargetDesc.h 24 class MCInstrInfo;
44 MCCodeEmitter *createARMMCCodeEmitter(const MCInstrInfo &MCII,
ARMMCTargetDesc.cpp 20 #include "llvm/MC/MCInstrInfo.h"
131 static MCInstrInfo *createARMMCInstrInfo() {
132 MCInstrInfo *X = new MCInstrInfo();
187 const MCInstrInfo &MII,
199 ARMMCInstrAnalysis(const MCInstrInfo *Info) : MCInstrAnalysis(Info) {}
229 static MCInstrAnalysis *createARMMCInstrAnalysis(const MCInstrInfo *Info) {
  /external/llvm/lib/Target/CellSPU/MCTargetDesc/
SPUMCTargetDesc.cpp 18 #include "llvm/MC/MCInstrInfo.h"
35 static MCInstrInfo *createSPUMCInstrInfo() {
36 MCInstrInfo *X = new MCInstrInfo();
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCTargetDesc.cpp 18 #include "llvm/MC/MCInstrInfo.h"
35 static MCInstrInfo *createHexagonMCInstrInfo() {
36 MCInstrInfo *X = new MCInstrInfo();
  /external/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXMCTargetDesc.cpp 17 #include "llvm/MC/MCInstrInfo.h"
34 static MCInstrInfo *createNVPTXMCInstrInfo() {
35 MCInstrInfo *X = new MCInstrInfo();
  /external/llvm/lib/Target/Sparc/MCTargetDesc/
SparcMCTargetDesc.cpp 17 #include "llvm/MC/MCInstrInfo.h"
34 static MCInstrInfo *createSparcMCInstrInfo() {
35 MCInstrInfo *X = new MCInstrInfo();
  /external/llvm/lib/Target/XCore/MCTargetDesc/
XCoreMCTargetDesc.cpp 17 #include "llvm/MC/MCInstrInfo.h"
34 static MCInstrInfo *createXCoreMCInstrInfo() {
35 MCInstrInfo *X = new MCInstrInfo();
  /external/llvm/lib/MC/MCDisassembler/
Disassembler.h 31 class MCInstrInfo;
69 llvm::OwningPtr<const llvm::MCInstrInfo> MII;
88 const MCInstrInfo *mII,
EDDisassembler.h 41 class MCInstrInfo;
142 llvm::OwningPtr<const llvm::MCInstrInfo> MII;
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MCTargetDesc.h 24 class MCInstrInfo;
78 MCCodeEmitter *createX86MCCodeEmitter(const MCInstrInfo &MCII,
  /external/llvm/lib/Target/MBlaze/InstPrinter/
MBlazeInstPrinter.h 24 MBlazeInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
  /external/llvm/lib/Target/MSP430/InstPrinter/
MSP430InstPrinter.h 24 MSP430InstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,
  /external/llvm/include/llvm/Support/
TargetRegistry.h 40 class MCInstrInfo;
80 typedef MCInstrInfo *(*MCInstrInfoCtorFnTy)(void);
81 typedef MCInstrAnalysis *(*MCInstrAnalysisCtorFnTy)(const MCInstrInfo*Info);
107 const MCInstrInfo &MII,
110 typedef MCCodeEmitter *(*MCCodeEmitterCtorTy)(const MCInstrInfo &II,
159 /// MCInstrInfoCtorFn - Constructor function for this target's MCInstrInfo,
294 /// createMCInstrInfo - Create a MCInstrInfo implementation.
296 MCInstrInfo *createMCInstrInfo() const {
304 MCInstrAnalysis *createMCInstrAnalysis(const MCInstrInfo *Info) const {
398 const MCInstrInfo &MII
    [all...]
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.h 80 MipsInstPrinter(const MCAsmInfo &MAI, const MCInstrInfo &MII,

Completed in 489 milliseconds

1 2