Searched defs:CPI (Results 1 - 11 of 11) 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;
261 void MipsCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const { argument
263 Reloc, CPI, 0, false));
/external/llvm/lib/Target/X86/
H A DX86CodeEmitter.cpp91 void emitConstPoolAddress(unsigned CPI, unsigned Reloc, intptr_t Disp = 0,
323 void Emitter<CodeEmitter>::emitConstPoolAddress(unsigned CPI, unsigned Reloc, argument
332 Reloc, CPI, RelocCST));
H A DX86InstrBuilder.h174 addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, argument
178 .addConstantPoolIndex(CPI, 0, OpFlags).addReg(0);
H A DX86InstrInfo.cpp4155 unsigned CPI = MCP.getConstantPoolIndex(C, Alignment); local
4161 MOs.push_back(MachineOperand::CreateCPI(CPI, 0));
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1058 unsigned CPI = CPSections[i].CPEs[j]; local
1059 MachineConstantPoolEntry CPE = CP[CPI];
1068 OutStreamer.EmitLabel(GetCPISymbol(CPI));
1984 (Twine(MAI->getPrivateGlobalPrefix()) + "CPI" + Twine(getFunctionNumber())
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp1206 unsigned CPI = MI->getOperand(1).getIndex(); local
1208 if (CPI >= MCP->getConstants().size())
1209 CPI = AFI.getOriginalCPIdx(CPI);
1210 assert(CPI != -1U && "Invalid constpool index");
1213 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI];
H A DARMCodeEmitter.cpp91 void emitConstantToMemory(unsigned CPI, const Constant *CV);
374 void emitConstPoolAddress(unsigned CPI, unsigned Reloc) const;
528 void ARMCodeEmitter::emitConstPoolAddress(unsigned CPI, unsigned Reloc) const { argument
531 Reloc, CPI, 0, true));
658 void ARMCodeEmitter::emitConstantToMemory(unsigned CPI, const Constant *C) { argument
660 errs() << " ** Constant pool #" << CPI << " @ "
700 emitConstantToMemory(CPI, CA->getOperand(i));
709 unsigned CPI = MI.getOperand(0).getImm(); // CP instruction index. local
714 JTI->addConstantPoolEntryAddr(CPI, MCE.getCurrentPCValue());
722 DEBUG(errs() << " ** ARM constant pool #" << CPI << "
[all...]
H A DARMConstantIslandPass.cpp216 unsigned CPI; member in struct:__anon22280::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
778 unsigned CPI = I->getOperand(op).getIndex(); local
1098 decrementCPEReferenceCount(unsigned CPI, MachineInstr *CPEMI) argument
1131 unsigned CPI = CPEMI->getOperand(1).getIndex(); local
1366 unsigned CPI = CPEMI->getOperand(1).getIndex(); local
[all...]
H A DARMBaseInstrInfo.cpp1205 /// Create a copy of a const pool value. Update CPI to the new index and return
1207 static unsigned duplicateCPV(MachineFunction &MF, unsigned &CPI) { argument
1211 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1245 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1266 unsigned CPI = Orig->getOperand(1).getIndex(); local
1267 unsigned PCLabelId = duplicateCPV(MF, CPI);
1270 .addConstantPoolIndex(CPI).addImm(PCLabelId);
1283 unsigned CPI = Orig->getOperand(1).getIndex(); local
1284 unsigned PCLabelId = duplicateCPV(MF, CPI);
1285 Orig->getOperand(1).setIndex(CPI);
[all...]
H A DARMISelLowering.cpp6499 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4); local
6523 .addConstantPoolIndex(CPI)
6550 .addConstantPoolIndex(CPI)
6582 .addConstantPoolIndex(CPI)

Completed in 775 milliseconds