Searched defs:CPI (Results 1 - 12 of 12) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineRelocation.h160 unsigned CPI, intptr_t cst = 0,
171 Result.Target.Index = CPI;
159 getConstPool(uintptr_t offset,unsigned RelocationType, unsigned CPI, intptr_t cst = 0, bool letTargetResolve = false) argument
/external/llvm/lib/Target/Mips/
H A DMipsCodeEmitter.cpp95 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
263 void MipsCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const { argument
265 Reloc, CPI, 0, false));
/external/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp96 void emitConstPoolAddress(unsigned CPI, unsigned Reloc, intptr_t Disp = 0,
320 void Emitter<CodeEmitter>::emitConstPoolAddress(unsigned CPI, unsigned Reloc, argument
329 Reloc, CPI, RelocCST));
H A DX86InstrBuilder.h174 addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, argument
178 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
H A DX86InstrInfo.cpp3932 unsigned CPI = MCP.getConstantPoolIndex(C, Alignment); local
3938 MOs.push_back(MachineOperand::CreateCPI(CPI, 0));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1048 unsigned CPI = CPSections[i].CPEs[j]; local
1049 MachineConstantPoolEntry CPE = CP[CPI];
1058 OutStreamer.EmitLabel(GetCPISymbol(CPI));
1976 (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp1200 unsigned CPI = MI->getOperand(1).getIndex(); local
1202 if (CPI >= MCP->getConstants().size())
1203 CPI = AFI.getOriginalCPIdx(CPI);
1204 assert(CPI != -1U && "Invalid constpool index");
1207 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI];
H A DARMCodeEmitter.cpp91 void emitConstantToMemory(unsigned CPI, const Constant *CV);
372 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
522 void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const { argument
525 Reloc, CPI, 0, true));
652 void ARMCodeEmitter::emitConstantToMemory(unsigned CPI, const Constant *C) { argument
654 errs() << " ** Constant pool #" << CPI << " @ "
694 emitConstantToMemory(CPI, CA->getOperand(i));
703 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index. local
708 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
716 DEBUG(errs() << " ** ARM constant pool #" << CPI << "
[all...]
H A DARMConstantIslandPass.cpp216 unsigned CPI; member in struct:__anon9427::ARMConstantIslands::CPEntry
219 : CPEMI(cpemi), CPI(cpi), RefCount(rc) {}
277 CPEntry *findConstPoolEntry(unsigned CPI, const MachineInstr *CPEMI);
284 bool decrementCPEReferenceCount(unsigned CPI, MachineInstr* CPEMI);
485 AFI->recordCPEClone(i, CPE.CPI);
528 // identity mapping of CPI's to CPE's.
560 DEBUG(dbgs() << "Moved CPI#" << i << " to end of function, size = "
587 *ARMConstantIslands::findConstPoolEntry(unsigned CPI, argument
589 std::vector<CPEntry> &CPEs = CPEntries[CPI];
608 unsigned CPI local
777 unsigned CPI = I->getOperand(op).getIndex(); local
1097 decrementCPEReferenceCount(unsigned CPI, MachineInstr *CPEMI) argument
1130 unsigned CPI = CPEMI->getOperand(1).getIndex(); local
1365 unsigned CPI = CPEMI->getOperand(1).getIndex(); local
[all...]
H A DARMBaseInstrInfo.cpp1174 /// Create a copy of a const pool value. Update CPI to the new index and return
1176 static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) { argument
1180 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1214 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1235 unsigned CPI = Orig->getOperand(1).getIndex(); local
1236 unsigned PCLabelId = duplicateCPV(MF, CPI);
1239 .addConstantPoolIndex(CPI).addImm(PCLabelId);
1252 unsigned CPI = Orig->getOperand(1).getIndex(); local
1253 unsigned PCLabelId = duplicateCPV(MF, CPI);
1254 Orig->getOperand(1).setIndex(CPI);
[all...]
H A DARMISelLowering.cpp5800 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4); local
5824 .addConstantPoolIndex(CPI)
5851 .addConstantPoolIndex(CPI)
5883 .addConstantPoolIndex(CPI)
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1015 SDValue CPI = DAG.getTargetConstantPool(C, PtrVT, CP->getAlignment()); local
1024 return DAG.getNode(SPUISD::AFormAddr, dl, PtrVT, CPI, Zero);
1026 SDValue Hi = DAG.getNode(SPUISD::Hi, dl, PtrVT, CPI, Zero);
1027 SDValue Lo = DAG.getNode(SPUISD::Lo, dl, PtrVT, CPI, Zero);

Completed in 264 milliseconds