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

1 2

  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 126 intptr_t getJumpTableBaseAddr(unsigned JTI) const {
127 assert(JTI < JumpTableId2AddrMap.size());
128 return JumpTableId2AddrMap[JTI];
135 void addJumpTableBaseAddr(unsigned JTI, intptr_t Addr) {
136 assert(JTI < JumpTableId2AddrMap.size());
137 JumpTableId2AddrMap[JTI] = Addr;
ARMConstantIslandPass.cpp     [all...]
ARMCodeEmitter.cpp 50 ARMJITInfo *JTI;
70 : MachineFunctionPass(ID), JTI(nullptr),
372 JTI = static_cast<ARMJITInfo*>(Target.getJITInfo());
382 JTI->Initialize(MF, IsPIC);
628 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
832 JTI->addPCLabelAddr(LabelID, MCE.getCurrentPCValue());
    [all...]
ARMAsmPrinter.cpp 187 raw_svector_ostream(Name) << DL->getPrivateGlobalPrefix() << "JTI"
    [all...]
ARMBaseInstrInfo.cpp 561 unsigned JTI);
563 unsigned JTI) {
564 assert(JTI < JT.size());
565 return JT[JTI].MBBs.size();
627 unsigned JTI = JTOP.getIndex();
631 assert(JTI < JT.size());
640 unsigned NumEntries = getNumJTEntries(JT, JTI);
    [all...]
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/Target/Sparc/
SparcCodeEmitter.cpp 34 SparcJITInfo *JTI;
52 : MachineFunctionPass(ID), JTI(nullptr), II(nullptr), TD(nullptr),
103 JTI = Target.getJITInfo();
108 JTI->Initialize(MF, IsPIC);
  /external/llvm/lib/Target/Mips/
MipsCodeEmitter.cpp 50 MipsJITInfo *JTI;
69 : MachineFunctionPass(ID), JTI(nullptr), II(nullptr), TD(nullptr),
145 JTI = Target.getJITInfo();
152 JTI->Initialize(MF, IsPIC, Subtarget->isLittle());
  /external/llvm/include/llvm/CodeGen/
MachineRelocation.h 179 unsigned JTI, intptr_t cst = 0,
190 Result.Target.Index = JTI;
MachineFunction.h 466 MCSymbol *getJTISymbol(unsigned JTI, MCContext &Ctx,
SelectionDAG.h 442 SDValue getJumpTable(int JTI, EVT VT, bool isTarget = false,
444 SDValue getTargetJumpTable(int JTI, EVT VT, unsigned char TargetFlags = 0) {
445 return getJumpTable(JTI, VT, true, TargetFlags);
    [all...]
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/Target/XCore/
XCoreAsmPrinter.cpp 197 unsigned JTI = MI->getOperand(opNum).getIndex();
201 const std::vector<MachineBasicBlock*> &JTBBs = JT[JTI].MBBs;
XCoreISelLowering.cpp 357 unsigned JTI = JT->getIndex();
362 unsigned NumEntries = MJTI->getJumpTables()[JTI].MBBs.size();
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 238 MachineBasicBlock *D): Reg(R), JTI(J), MBB(M), Default(D) {}
243 /// JTI - the JumpTableIndex for this jump table in the function.
244 unsigned JTI;
TargetLowering.cpp 252 unsigned JTI,MCContext &Ctx) const{
254 return MCSymbolRefExpr::Create(MF->getJTISymbol(JTI, Ctx), Ctx);
    [all...]
SelectionDAG.cpp     [all...]
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineFunction.cpp 460 MCSymbol *MachineFunction::getJTISymbol(unsigned JTI, MCContext &Ctx,
464 assert(JTI < JumpTableInfo->getJumpTables().size() && "Invalid JTI!");
470 << Prefix << "JTI" << getFunctionNumber() << '_' << JTI;
    [all...]
BranchFolding.cpp 223 MachineJumpTableInfo *JTI = MF.getJumpTableInfo();
224 if (!JTI) {
230 BitVector JTIsLive(JTI->getJumpTables().size());
248 JTI->RemoveJumpTable(i);
    [all...]
  /external/llvm/lib/Target/X86/
X86CodeEmitter.cpp 94 void emitJumpTableAddress(unsigned JTI, unsigned Reloc,
342 void Emitter<CodeEmitter>::emitJumpTableAddress(unsigned JTI, unsigned Reloc,
350 Reloc, JTI, RelocCST));
    [all...]
X86ISelLowering.h 537 unsigned JTI, MCContext &Ctx) const override;
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 753 unsigned JTI = JT->getIndex();
760 const std::vector<MachineBasicBlock*> &JTBBs = JTE[JTI].MBBs;
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]

Completed in 353 milliseconds

1 2