/external/swiftshader/third_party/LLVM/lib/Target/ARM/ |
D | ARMAsmPrinter.h | 45 const MachineConstantPool *MCP; variable 49 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL) { in ARMAsmPrinter()
|
D | ARMAsmPrinter.cpp | 308 MCP = MF.getConstantPool(); in runOnMachineFunction() 1136 const MachineConstantPool *MCP = MF.getConstantPool(); in EmitUnwindingInstruction() local 1137 if (CPI >= MCP->getConstants().size()) in EmitUnwindingInstruction() 1142 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; in EmitUnwindingInstruction() 1495 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
|
D | ARMBaseInstrInfo.cpp | 1078 MachineConstantPool *MCP = MF.getConstantPool(); in duplicateCPV() local 1081 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPI]; in duplicateCPV() 1115 CPI = MCP->getConstantPoolIndex(NewCPV, MCPE.getAlignment()); in duplicateCPV() 1195 const MachineConstantPool *MCP = MF->getConstantPool(); in produceSameValue() local 1198 const MachineConstantPoolEntry &MCPE0 = MCP->getConstants()[CPI0]; in produceSameValue() 1199 const MachineConstantPoolEntry &MCPE1 = MCP->getConstants()[CPI1]; in produceSameValue()
|
/external/llvm/lib/Target/Mips/ |
D | MipsAsmPrinter.h | 54 const MachineConstantPool *MCP; variable 103 : AsmPrinter(TM, std::move(Streamer)), MCP(nullptr), in MipsAsmPrinter()
|
D | MipsConstantIslandPass.cpp | 339 MachineConstantPool *MCP; member in __anonec1d4ace0111::MipsConstantIslands 356 : MachineFunctionPass(ID), STI(nullptr), MF(nullptr), MCP(nullptr), in MipsConstantIslands() 441 MCP = mf.getConstantPool(); in runOnMachineFunction() 469 if (!MCP->isEmpty()) in runOnMachineFunction() 534 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); in doInitialPlacement() 552 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); in doInitialPlacement() 631 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPELogAlign() 632 unsigned Align = MCP->getConstants()[CPI].getAlignment(); in getCPELogAlign() 1681 unsigned index = MCP->getConstantPoolIndex(C, 4); in prescanForConstants()
|
D | MipsAsmPrinter.cpp | 79 MCP = MF.getConstantPool(); in runOnMachineFunction() 168 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 396 void emitConstantPool(MachineConstantPool *MCP); 764 static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP, in GetConstantPoolSizeInBytes() argument 766 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants(); in GetConstantPoolSizeInBytes() 1067 void JITEmitter::emitConstantPool(MachineConstantPool *MCP) { in emitConstantPool() argument 1071 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants(); in emitConstantPool() 1074 unsigned Size = GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData()); in emitConstantPool() 1075 unsigned Align = MCP->getConstantPoolAlignment(); in emitConstantPool() 1077 ConstantPool = MCP; in emitConstantPool()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | ELFCodeEmitter.cpp | 141 void ELFCodeEmitter::emitConstantPool(MachineConstantPool *MCP) { in emitConstantPool() argument 142 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); in emitConstantPool()
|
D | ELFCodeEmitter.h | 50 void emitConstantPool(MachineConstantPool *MCP);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | MipsConstantIslandPass.cpp | 351 MachineConstantPool *MCP = nullptr; member in __anon62969c260111::MipsConstantIslands 444 MCP = mf.getConstantPool(); in runOnMachineFunction() 474 if (!MCP->isEmpty()) in runOnMachineFunction() 538 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); in doInitialPlacement() 556 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); in doInitialPlacement() 635 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPELogAlign() 636 unsigned Align = MCP->getConstants()[CPI].getAlignment(); in getCPELogAlign() 1671 unsigned index = MCP->getConstantPoolIndex(C, 4); in prescanForConstants()
|
D | MipsAsmPrinter.h | 61 const MachineConstantPool *MCP = nullptr;
|
D | MipsAsmPrinter.cpp | 90 MCP = MF.getConstantPool(); in runOnMachineFunction() 190 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | ObjectCodeEmitter.h | 151 virtual void emitConstantPool(MachineConstantPool *MCP) = 0;
|
D | FastISel.h | 50 MachineConstantPool &MCP; variable
|
/external/llvm/lib/Target/ARM/ |
D | ARMConstantIslandPass.cpp | 269 MachineConstantPool *MCP; member in __anon72f5a51c0111::ARMConstantIslands 400 MCP = mf.getConstantPool(); in runOnMachineFunction() 403 << MCP->getConstants().size() << " CP entries, aligned to " in runOnMachineFunction() 404 << MCP->getConstantPoolAlignment() << " bytes *****\n"); in runOnMachineFunction() 438 if (!MCP->isEmpty()) in runOnMachineFunction() 547 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); in doInitialConstPlacement() 564 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); in doInitialConstPlacement() 715 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPELogAlign() 716 unsigned Align = MCP->getConstants()[CPI].getAlignment(); in getCPELogAlign()
|
D | ARMAsmPrinter.h | 44 const MachineConstantPool *MCP; variable
|
D | ARMAsmPrinter.cpp | 61 : AsmPrinter(TM, std::move(Streamer)), AFI(nullptr), MCP(nullptr), in ARMAsmPrinter() 104 MCP = MF.getConstantPool(); in runOnMachineFunction() 1230 const MachineConstantPool *MCP = MF.getConstantPool(); in EmitUnwindingInstruction() local 1231 if (CPI >= MCP->getConstants().size()) in EmitUnwindingInstruction() 1236 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; in EmitUnwindingInstruction() 1591 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/ |
D | ARMConstantIslandPass.cpp | 212 MachineConstantPool *MCP; member in __anona3bac0740111::ARMConstantIslands 342 MCP = mf.getConstantPool(); in runOnMachineFunction() 345 << MCP->getConstants().size() << " CP entries, aligned to " in runOnMachineFunction() 346 << MCP->getConstantPoolAlignment() << " bytes *****\n"); in runOnMachineFunction() 383 if (!MCP->isEmpty()) in runOnMachineFunction() 492 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment()); in doInitialConstPlacement() 509 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants(); in doInitialConstPlacement() 663 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index."); in getCPELogAlign() 664 unsigned Align = MCP->getConstants()[CPI].getAlignment(); in getCPELogAlign()
|
D | ARMAsmPrinter.h | 44 const MachineConstantPool *MCP; variable
|
D | ARMAsmPrinter.cpp | 57 : AsmPrinter(TM, std::move(Streamer)), AFI(nullptr), MCP(nullptr), in ARMAsmPrinter() 108 MCP = MF.getConstantPool(); in runOnMachineFunction() 1157 const MachineConstantPool *MCP = MF.getConstantPool(); in EmitUnwindingInstruction() local 1158 if (CPI >= MCP->getConstants().size()) in EmitUnwindingInstruction() 1163 const MachineConstantPoolEntry &CPE = MCP->getConstants()[CPI]; in EmitUnwindingInstruction() 1526 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | InstrEmitter.cpp | 378 MachineConstantPool *MCP = MF->getConstantPool(); in AddOperand() local 380 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); in AddOperand() 382 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); in AddOperand()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | InstrEmitter.cpp | 419 MachineConstantPool *MCP = MF->getConstantPool(); in AddOperand() local 421 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); in AddOperand() 423 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); in AddOperand()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/ |
D | InstrEmitter.cpp | 442 MachineConstantPool *MCP = MF->getConstantPool(); in AddOperand() local 444 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align); in AddOperand() 446 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align); in AddOperand()
|
/external/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 201 MachineConstantPool &MCP; variable
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 208 MachineConstantPool &MCP; variable
|