HomeSort by relevance Sort by last modified time
    Searched refs:MCP (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFCodeEmitter.h 50 void emitConstantPool(MachineConstantPool *MCP);
ELFCodeEmitter.cpp 141 void ELFCodeEmitter::emitConstantPool(MachineConstantPool *MCP) {
142 const std::vector<MachineConstantPoolEntry> &CP = MCP->getConstants();
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMAsmPrinter.h 43 /// MCP - Keep a pointer to constantpool entries of the current
45 const MachineConstantPool *MCP;
49 : AsmPrinter(TM, Streamer), AFI(NULL), MCP(NULL) {
ARMAsmPrinter.cpp 308 MCP = MF.getConstantPool();
    [all...]
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsAsmPrinter.h 52 /// MCP - Keep a pointer to constantpool entries of the current
54 const MachineConstantPool *MCP;
103 : AsmPrinter(TM, std::move(Streamer)), MCP(nullptr),
MipsConstantIslandPass.cpp 339 MachineConstantPool *MCP;
356 : MachineFunctionPass(ID), STI(nullptr), MF(nullptr), MCP(nullptr),
441 MCP = mf.getConstantPool();
469 if (!MCP->isEmpty())
534 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
552 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
631 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
632 unsigned Align = MCP->getConstants()[CPI].getAlignment();
    [all...]
MipsAsmPrinter.cpp 79 MCP = MF.getConstantPool();
168 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
ObjectCodeEmitter.h 151 virtual void emitConstantPool(MachineConstantPool *MCP) = 0;
FastISel.h 50 MachineConstantPool &MCP;
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.h 42 /// MCP - Keep a pointer to constantpool entries of the current
44 const MachineConstantPool *MCP;
ARMConstantIslandPass.cpp 269 MachineConstantPool *MCP;
400 MCP = mf.getConstantPool();
403 << MCP->getConstants().size() << " CP entries, aligned to "
404 << MCP->getConstantPoolAlignment() << " bytes *****\n");
438 if (!MCP->isEmpty())
547 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
564 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
715 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
716 unsigned Align = MCP->getConstants()[CPI].getAlignment();
    [all...]
ARMAsmPrinter.cpp 61 : AsmPrinter(TM, std::move(Streamer)), AFI(nullptr), MCP(nullptr),
104 MCP = MF.getConstantPool();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMAsmPrinter.h 42 /// MCP - Keep a pointer to constantpool entries of the current
44 const MachineConstantPool *MCP;
ARMConstantIslandPass.cpp 212 MachineConstantPool *MCP;
342 MCP = mf.getConstantPool();
345 << MCP->getConstants().size() << " CP entries, aligned to "
346 << MCP->getConstantPoolAlignment() << " bytes *****\n");
383 if (!MCP->isEmpty())
492 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
509 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
663 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
664 unsigned Align = MCP->getConstants()[CPI].getAlignment();
    [all...]
ARMAsmPrinter.cpp 57 : AsmPrinter(TM, std::move(Streamer)), AFI(nullptr), MCP(nullptr),
108 MCP = MF.getConstantPool();
    [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 396 void emitConstantPool(MachineConstantPool *MCP);
764 static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP,
766 const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/
MipsAsmPrinter.h 59 /// MCP - Keep a pointer to constantpool entries of the current
61 const MachineConstantPool *MCP = nullptr;
MipsConstantIslandPass.cpp 351 MachineConstantPool *MCP = nullptr;
444 MCP = mf.getConstantPool();
474 if (!MCP->isEmpty())
538 unsigned MaxAlign = Log2_32(MCP->getConstantPoolAlignment());
556 const std::vector<MachineConstantPoolEntry> &CPs = MCP->getConstants();
635 assert(CPI < MCP->getConstants().size() && "Invalid constant pool index.");
636 unsigned Align = MCP->getConstants()[CPI].getAlignment();
    [all...]
MipsAsmPrinter.cpp 90 MCP = MF.getConstantPool();
190 const MachineConstantPoolEntry &MCPE = MCP->getConstants()[CPIdx];
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 378 MachineConstantPool *MCP = MF->getConstantPool();
380 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
382 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 419 MachineConstantPool *MCP = MF->getConstantPool();
421 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
423 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 442 MachineConstantPool *MCP = MF->getConstantPool();
444 Idx = MCP->getConstantPoolIndex(CP->getMachineCPVal(), Align);
446 Idx = MCP->getConstantPoolIndex(CP->getConstVal(), Align);
    [all...]
  /external/llvm/include/llvm/CodeGen/
FastISel.h 201 MachineConstantPool &MCP;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
FastISel.h 208 MachineConstantPool &MCP;

Completed in 849 milliseconds

1 2 3