Searched defs:MCP (Results 1 - 12 of 12) sorted by relevance
/external/llvm/lib/Target/ARM/ |
H A D | ARMAsmPrinter.h | 42 /// MCP - Keep a pointer to constantpool entries of the current 44 const MachineConstantPool *MCP; member in class:llvm::ARMAsmPrinter
|
H A D | ARMAsmPrinter.cpp | 62 : AsmPrinter(TM, std::move(Streamer)), AFI(nullptr), MCP(nullptr), 105 MCP = MF.getConstantPool(); 1184 const MachineConstantPool *MCP = MF.getConstantPool(); local 1185 if (CPI >= MCP->getConstants().size()) 1190 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; 1543 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
|
H A D | ARMExpandPseudoInsts.cpp | 1036 MachineConstantPool *MCP = MBB.getParent()->getConstantPool(); local 1050 .addConstantPoolIndex(MCP->getConstantPoolIndex(CPV, 4));
|
H A D | ARMConstantIslandPass.cpp | 269 MachineConstantPool *MCP; member in class:__anon12508::ARMConstantIslands 395 MCP = mf.getConstantPool(); 398 << MCP->getConstants().size() << " CP entries, aligned to " 399 << MCP->getConstantPoolAlignment() << " bytes *****\n"); 433 if (!MCP->isEmpty()) 534 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); 551 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); 702 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); 703 unsigned Align = MCP->getConstants()[CPI].getAlignment();
|
H A D | ARMFrameLowering.cpp | 1977 MachineConstantPool *MCP = MF.getConstantPool(); local 1978 unsigned CPI = MCP->getConstantPoolIndex(NewCPV, 4);
|
H A D | ARMBaseInstrInfo.cpp | 1364 MachineConstantPool *MCP = MF.getConstantPool(); local 1367 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI]; 1402 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment()); 1484 const MachineConstantPool *MCP = MF->getConstantPool(); local 1487 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0]; 1488 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1];
|
H A D | ARMISelLowering.cpp | 6952 MachineConstantPool *MCP = MF->getConstantPool(); local 6963 unsigned CPI = MCP->getConstantPoolIndex(CPV, 4);
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsAsmPrinter.h | 52 /// MCP - Keep a pointer to constantpool entries of the current 54 const MachineConstantPool *MCP; member in class:llvm::MipsAsmPrinter 103 : AsmPrinter(TM, std::move(Streamer)), MCP(nullptr),
|
H A D | MipsConstantIslandPass.cpp | 351 MachineConstantPool *MCP; member in class:__anon12661::MipsConstantIslands 370 MF(nullptr), MCP(nullptr), PrescannedForConstants(false) {} 450 MCP = mf.getConstantPool(); 478 if (!MCP->isEmpty()) 543 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); 561 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); 640 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); 641 unsigned Align = MCP->getConstants()[CPI].getAlignment(); 1696 unsigned index = MCP->getConstantPoolIndex(C, 4);
|
/external/llvm/include/llvm/CodeGen/ |
H A D | FastISel.h | 197 MachineConstantPool &MCP; member in class:llvm::FastISel
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 1260 /// representations of the constants in the constant pool MCP. This is 1265 const MachineConstantPool *MCP = MF->getConstantPool(); local 1266 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
|
/external/llvm/lib/Target/X86/ |
H A D | X86InstrInfo.cpp | 6116 MachineConstantPool &MCP = *MF.getConstantPool(); local 6131 unsigned CPI = MCP.getConstantPoolIndex(C, Alignment);
|
Completed in 992 milliseconds