Home
last modified time | relevance | path

Searched refs:MCP (Results 1 – 25 of 59) sorted by relevance

123

/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMAsmPrinter.h45 const MachineConstantPool *MCP; variable
49 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL) { in ARMAsmPrinter()
DARMAsmPrinter.cpp308 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()
DARMBaseInstrInfo.cpp1078 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/
DMipsAsmPrinter.h54 const MachineConstantPool *MCP; variable
103 : AsmPrinter(TM, std::move(Streamer)), MCP(nullptr), in MipsAsmPrinter()
DMipsConstantIslandPass.cpp339 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()
DMipsAsmPrinter.cpp79 MCP = MF.getConstantPool(); in runOnMachineFunction()
168 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp396 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/
DELFCodeEmitter.cpp141 void ELFCodeEmitter::emitConstantPool(MachineConstantPool *MCP) { in emitConstantPool() argument
142 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants(); in emitConstantPool()
DELFCodeEmitter.h50 void emitConstantPool(MachineConstantPool *MCP);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
DMipsConstantIslandPass.cpp351 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()
DMipsAsmPrinter.h61 const MachineConstantPool *MCP = nullptr;
DMipsAsmPrinter.cpp90 MCP = MF.getConstantPool(); in runOnMachineFunction()
190 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx]; in EmitInstruction()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
DObjectCodeEmitter.h151 virtual void emitConstantPool(MachineConstantPool *MCP) = 0;
DFastISel.h50 MachineConstantPool &MCP; variable
/external/llvm/lib/Target/ARM/
DARMConstantIslandPass.cpp269 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()
DARMAsmPrinter.h44 const MachineConstantPool *MCP; variable
DARMAsmPrinter.cpp61 : 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/
DARMConstantIslandPass.cpp212 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()
DARMAsmPrinter.h44 const MachineConstantPool *MCP; variable
DARMAsmPrinter.cpp57 : 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/
DInstrEmitter.cpp378 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/
DInstrEmitter.cpp419 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/
DInstrEmitter.cpp442 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/
DFastISel.h201 MachineConstantPool &MCP; variable
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DFastISel.h208 MachineConstantPool &MCP; variable

123