HomeSort by: relevance | last modified time | path
    Searched refs:MachineConstantPool (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineConstantPool.h 1 //===- CodeGen/MachineConstantPool.h - Abstract Constant Pool ---*- C++ -*-===//
10 /// This file declares the MachineConstantPool class which is an abstract
29 class MachineConstantPool;
48 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
63 /// This class is a data container for one entry in a MachineConstantPool.
66 /// An entry in a MachineConstantPool
107 /// The MachineConstantPool class keeps track of constants referenced by a
117 class MachineConstantPool {
128 explicit MachineConstantPool(const DataLayout &DL)
130 ~MachineConstantPool();
    [all...]
FastISel.h 43 class MachineConstantPool;
206 MachineConstantPool &MCP;
MachineFunction.h 57 class MachineConstantPool;
248 MachineConstantPool *ConstantPool;
590 MachineConstantPool *getConstantPool() { return ConstantPool; }
591 const MachineConstantPool *getConstantPool() const { return ConstantPool; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZConstantPoolValue.h 12 #include "llvm/CodeGen/MachineConstantPool.h"
45 int getExistingMachineCPValue(MachineConstantPool *CP,
SystemZConstantPoolValue.cpp 28 int SystemZConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP,
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMConstantPoolValue.h 19 #include "llvm/CodeGen/MachineConstantPool.h"
79 int getExistingMachineCPValueImpl(MachineConstantPool *CP, Align Alignment) {
114 int getExistingMachineCPValue(MachineConstantPool *CP,
187 int getExistingMachineCPValue(MachineConstantPool *CP,
223 int getExistingMachineCPValue(MachineConstantPool *CP,
259 int getExistingMachineCPValue(MachineConstantPool *CP,
ARMAsmPrinter.h 20 class MachineConstantPool;
43 const MachineConstantPool *MCP;
ARMConstantPoolValue.cpp 75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP,
191 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP,
239 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP,
279 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP,
ThumbRegisterInfo.cpp 19 #include "llvm/CodeGen/MachineConstantPool.h"
70 MachineConstantPool *ConstantPool = MF.getConstantPool();
89 MachineConstantPool *ConstantPool = MF.getConstantPool();
ARMBaseRegisterInfo.cpp 25 #include "llvm/CodeGen/MachineConstantPool.h"
483 MachineConstantPool *ConstantPool = MF.getConstantPool();
ARMAsmPrinter.cpp 254 // indexes in MachineConstantPool, which isn't in sync with indexes used here.
1257 const MachineConstantPool *MCP = MF.getConstantPool();
1660 /// second is the index into the MachineConstantPool that this is, the third
ARMConstantIslandPass.cpp 31 #include "llvm/CodeGen/MachineConstantPool.h"
210 MachineConstantPool *MCP;
517 // MachineConstantPool measures alignment in bytes.
ARMFrameLowering.cpp 123 #include "llvm/CodeGen/MachineConstantPool.h"
2551 MachineConstantPool *MCP = MF.getConstantPool();
ARMExpandPseudoInsts.cpp 2328 MachineConstantPool *MCP = MF->getConstantPool();
2406 MachineConstantPool *MCP = MBB.getParent()->getConstantPool();
ARMBaseInstrInfo.cpp 30 #include "llvm/CodeGen/MachineConstantPool.h"
1736 MachineConstantPool *MCP = MF.getConstantPool();
1864 const MachineConstantPool *MCP = MF->getConstantPool();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsAsmPrinter.h 32 class MachineConstantPool;
60 const MachineConstantPool *MCP = nullptr;
MipsConstantIslandPass.cpp 32 #include "llvm/CodeGen/MachineConstantPool.h"
345 MachineConstantPool *MCP = nullptr;
531 // MachineConstantPool measures alignment in bytes. We measure in log2(bytes).
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunction.cpp 27 #include "llvm/CodeGen/MachineConstantPool.h"
177 ConstantPool = new (Allocator) MachineConstantPool(getDataLayout());
241 ConstantPool->~MachineConstantPool();
1104 // MachineConstantPool implementation
1143 MachineConstantPool::~MachineConstantPool() {
1203 unsigned MachineConstantPool::getConstantPoolIndex(const Constant *C,
1222 unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V,
1239 void MachineConstantPool::print(raw_ostream &OS) const {
1255 LLVM_DUMP_METHOD void MachineConstantPool::dump() const { print(dbgs());
    [all...]
MIRPrinter.cpp 26 #include "llvm/CodeGen/MachineConstantPool.h"
130 const MachineConstantPool &ConstantPool);
529 const MachineConstantPool &ConstantPool) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreInstrInfo.cpp 17 #include "llvm/CodeGen/MachineConstantPool.h"
443 MachineConstantPool *ConstantPool = MBB.getParent()->getConstantPool();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIRParser.cpp 25 #include "llvm/CodeGen/MachineConstantPool.h"
140 MachineConstantPool &ConstantPool,
866 MachineConstantPool &ConstantPool, const yaml::MachineFunction &YamlMF) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
InstrEmitter.cpp 18 #include "llvm/CodeGen/MachineConstantPool.h"
423 MachineConstantPool *MCP = MF->getConstantPool();
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ExpandPseudoInsts.cpp 26 #include "llvm/CodeGen/MachineConstantPool.h"
975 MachineConstantPool *MCP = MF.getConstantPool();
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 24 #include "llvm/CodeGen/MachineConstantPool.h"
551 MachineConstantPool *MCP = MF->getConstantPool();
742 MachineConstantPool *MCP = MF->getConstantPool();
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 42 #include "llvm/CodeGen/MachineConstantPool.h"
2000 const MachineConstantPool *MCP = MF->getConstantPool();

Completed in 133 milliseconds

1 2