Searched defs:MCP (Results 1 - 9 of 9) sorted by relevance

/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.h43 /// MCP - Keep a pointer to constantpool entries of the current
45 const MachineConstantPool *MCP; member in class:llvm::ARMAsmPrinter
52 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL), InConstantPool(false) {
H A DARMAsmPrinter.cpp325 MCP = MF.getConstantPool();
1201 const MachineConstantPool *MCP = MF.getConstantPool(); local
1202 if (CPI >= MCP->getConstants().size())
1207 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI];
1614 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
H A DARMConstantIslandPass.cpp258 MachineConstantPool *MCP; member in class:__anon8834::ARMConstantIslands
378 MCP = mf.getConstantPool();
381 << MCP->getConstants().size() << " CP entries, aligned to "
382 << MCP->getConstantPoolAlignment() << " bytes *****\n");
423 if (!MCP->isEmpty())
511 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
529 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
609 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
610 unsigned Align = MCP->getConstants()[CPI].getAlignment();
H A DARMBaseInstrInfo.cpp1177 MachineConstantPool *MCP = MF.getConstantPool(); local
1180 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI];
1214 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment());
1294 const MachineConstantPool *MCP = MF->getConstantPool(); local
1297 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0];
1298 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
H A DARMISelLowering.cpp5789 MachineConstantPool *MCP = MF->getConstantPool(); local
5800 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
/external/llvm/include/llvm/CodeGen/
H A DFastISel.h54 MachineConstantPool &MCP; member in class:llvm::FastISel
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp987 /// representations of the constants in the constant pool MCP. This is
992 const MachineConstantPool *MCP = MF->getConstantPool(); local
993 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp397 void emitConstantPool(MachineConstantPool *MCP);
765 static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP, argument
767 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1054 void JITEmitter::emitConstantPool(MachineConstantPool *MCP) { argument
1058 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1061 unsigned Size = GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
1062 unsigned Align = MCP->getConstantPoolAlignment();
1064 ConstantPool = MCP;
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp3917 MachineConstantPool &MCP = *MF.getConstantPool(); local
3932 unsigned CPI = MCP.getConstantPoolIndex(C, Alignment);

Completed in 2302 milliseconds