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

1 2

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUTargetMachine.h 35 const AMDGPUInstrInfo * InstrInfo;
53 virtual const AMDGPUInstrInfo *getInstrInfo() const {return InstrInfo;}
56 return &InstrInfo->getRegisterInfo();
AMDGPUTargetMachine.cpp 58 // TLInfo uses InstrInfo so it must be initialized after.
60 InstrInfo = new R600InstrInfo(*this);
63 InstrInfo = new SIInstrInfo(*this);
  /external/llvm/lib/Target/AArch64/
AArch64TargetMachine.h 29 AArch64InstrInfo InstrInfo;
42 return &InstrInfo;
62 return &InstrInfo.getRegisterInfo();
AArch64TargetMachine.cpp 36 InstrInfo(Subtarget),
  /external/llvm/lib/Target/Hexagon/
HexagonTargetMachine.h 32 HexagonInstrInfo InstrInfo;
45 return &InstrInfo;
51 return &InstrInfo.getRegisterInfo();
  /external/llvm/lib/Target/MSP430/
MSP430TargetMachine.h 35 MSP430InstrInfo InstrInfo;
49 virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
54 return &InstrInfo.getRegisterInfo();
MSP430TargetMachine.cpp 38 InstrInfo(*this), TLInfo(*this), TSInfo(*this),
  /external/llvm/lib/Target/R600/
AMDGPUTargetMachine.h 34 OwningPtr<AMDGPUInstrInfo> InstrInfo;
50 return InstrInfo.get();
54 return &InstrInfo->getRegisterInfo();
AMDGPUTargetMachine.cpp 65 // TLInfo uses InstrInfo so it must be initialized after.
67 InstrInfo.reset(new R600InstrInfo(*this));
70 InstrInfo.reset(new SIInstrInfo(*this));
  /external/llvm/lib/Target/SystemZ/
SystemZTargetMachine.h 33 SystemZInstrInfo InstrInfo;
49 return &InstrInfo;
58 return &InstrInfo.getRegisterInfo();
SystemZTargetMachine.cpp 34 InstrInfo(*this), TLInfo(*this), TSInfo(*this),
  /external/llvm/lib/Target/XCore/
XCoreTargetMachine.h 30 XCoreInstrInfo InstrInfo;
40 virtual const XCoreInstrInfo *getInstrInfo() const { return &InstrInfo; }
54 return &InstrInfo.getRegisterInfo();
XCoreTargetMachine.cpp 32 InstrInfo(),
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUTargetMachine.h 35 const AMDGPUInstrInfo * InstrInfo;
53 virtual const AMDGPUInstrInfo *getInstrInfo() const {return InstrInfo;}
56 return &InstrInfo->getRegisterInfo();
AMDGPUTargetMachine.cpp 58 // TLInfo uses InstrInfo so it must be initialized after.
60 InstrInfo = new R600InstrInfo(*this);
63 InstrInfo = new SIInstrInfo(*this);
  /external/llvm/lib/Target/ARM/
ARMTargetMachine.h 70 ARMInstrInfo InstrInfo;
83 return &InstrInfo.getRegisterInfo();
96 virtual const ARMInstrInfo *getInstrInfo() const { return &InstrInfo; }
107 OwningPtr<ARMBaseInstrInfo> InstrInfo;
122 return &InstrInfo->getRegisterInfo();
135 return InstrInfo.get();
  /external/llvm/lib/Target/X86/
X86TargetMachine.h 82 X86InstrInfo InstrInfo;
99 return &InstrInfo;
111 X86InstrInfo InstrInfo;
128 return &InstrInfo;
X86TargetMachine.cpp 48 InstrInfo(*this),
69 InstrInfo(*this),
  /external/llvm/lib/Target/NVPTX/
NVPTXTargetMachine.h 35 NVPTXInstrInfo InstrInfo;
57 virtual const NVPTXInstrInfo *getInstrInfo() const { return &InstrInfo; }
62 return &(InstrInfo.getRegisterInfo());
  /external/llvm/lib/Target/PowerPC/
PPCTargetMachine.h 33 PPCInstrInfo InstrInfo;
46 virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; }
58 return &InstrInfo.getRegisterInfo();
  /external/llvm/lib/Target/Sparc/
SparcTargetMachine.h 31 SparcInstrInfo InstrInfo;
41 virtual const SparcInstrInfo *getInstrInfo() const { return &InstrInfo; }
47 return &InstrInfo.getRegisterInfo();
  /external/llvm/lib/Target/Mips/
MipsTargetMachine.h 37 OwningPtr<const MipsInstrInfo> InstrInfo;
62 { return InstrInfo.get(); }
78 return &InstrInfo->getRegisterInfo();
MipsTargetMachine.cpp 71 InstrInfo(MipsInstrInfo::create(*this)),
80 InstrInfoSE.swap(InstrInfo);
84 InstrInfo.reset(MipsInstrInfo::create(*this));
88 InstrInfo16.swap(InstrInfo);
93 assert(InstrInfo && "null instr info 16");
98 InstrInfo16.swap(InstrInfo);
102 InstrInfo.reset(MipsInstrInfo::create(*this));
106 InstrInfoSE.swap(InstrInfo);
111 assert(InstrInfo && "null instr info SE");
  /external/valgrind/main/callgrind/
global.h 280 typedef struct _InstrInfo InstrInfo;
340 InstrInfo instr[0]; /* info on instruction sizes and costs */
665 void (*add_icost)(SimCost, BBCC*, InstrInfo*, ULong);
668 void (*log_1I0D)(InstrInfo*) VG_REGPARM(1);
669 void (*log_2I0D)(InstrInfo*, InstrInfo*) VG_REGPARM(2);
670 void (*log_3I0D)(InstrInfo*, InstrInfo*, InstrInfo*) VG_REGPARM(3);
672 void (*log_1I1Dr)(InstrInfo*, Addr, Word) VG_REGPARM(3)
    [all...]
  /external/valgrind/main/cachegrind/
cg_main.c 141 // Primary data structure #2: InstrInfo table
143 // - table(SB_start_addr, list(InstrInfo))
144 // - For each SB, each InstrInfo in the list holds info about the
149 typedef struct _InstrInfo InstrInfo;
160 InstrInfo instrs[0];
300 void log_1I(InstrInfo* n)
307 void log_2I(InstrInfo* n, InstrInfo* n2)
315 void log_3I(InstrInfo* n, InstrInfo* n2, InstrInfo* n3
    [all...]

Completed in 761 milliseconds

1 2