Home
last modified time | relevance | path

Searched refs:MachineConstantPool (Results 1 – 25 of 36) sorted by relevance

12

/freebsd-src/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h29 class MachineConstantPool; variable
48 virtual int getExistingMachineCPValue(MachineConstantPool *CP,
117 class MachineConstantPool {
128 explicit MachineConstantPool(const DataLayout &DL) in MachineConstantPool() function
130 ~MachineConstantPool();
H A DMachineFunction.h58 class MachineConstantPool; variable
276 MachineConstantPool *ConstantPool;
749 MachineConstantPool *getConstantPool() { return ConstantPool; }
750 const MachineConstantPool *getConstantPool() const { return ConstantPool; }
H A DFastISel.h44 class MachineConstantPool; variable
207 MachineConstantPool &MCP;
/freebsd-src/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYConstantPoolValue.h75 int getExistingMachineCPValue(MachineConstantPool *CP,
88 int getExistingMachineCPValueImpl(MachineConstantPool *CP, Align Alignment) { in getExistingMachineCPValueImpl()
127 int getExistingMachineCPValue(MachineConstantPool *CP,
157 int getExistingMachineCPValue(MachineConstantPool *CP,
185 int getExistingMachineCPValue(MachineConstantPool *CP,
212 int getExistingMachineCPValue(MachineConstantPool *CP,
H A DCSKYConstantPoolValue.cpp57 int CSKYConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
114 int CSKYConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
148 int CSKYConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
182 int CSKYConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
214 int CSKYConstantPoolJT::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
H A DCSKYAsmPrinter.h28 MachineConstantPool *MCP;
H A DCSKYInstrInfo.cpp568 MachineConstantPool *MCP = MF.getConstantPool(); in getGlobalBaseReg()
H A DCSKYConstantIslandPass.cpp30 #include "llvm/CodeGen/MachineConstantPool.h"
203 MachineConstantPool *MCP = nullptr;
374 // MachineConstantPool measures alignment in bytes. We measure in log2(bytes). in doInitialPlacement()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h79 int getExistingMachineCPValueImpl(MachineConstantPool *CP, Align Alignment) { in getExistingMachineCPValueImpl()
114 int getExistingMachineCPValue(MachineConstantPool *CP,
187 int getExistingMachineCPValue(MachineConstantPool *CP,
223 int getExistingMachineCPValue(MachineConstantPool *CP,
259 int getExistingMachineCPValue(MachineConstantPool *CP,
H A DARMConstantPoolValue.cpp75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
191 int ARMConstantPoolConstant::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
239 int ARMConstantPoolSymbol::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
279 int ARMConstantPoolMBB::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
H A DARMAsmPrinter.h20 class MachineConstantPool; variable
43 const MachineConstantPool *MCP;
H A DThumbRegisterInfo.cpp70 MachineConstantPool *ConstantPool = MF.getConstantPool(); in emitThumb1LoadConstPool()
89 MachineConstantPool *ConstantPool = MF.getConstantPool(); in emitThumb2LoadConstPool()
H A DARMBaseRegisterInfo.cpp25 #include "llvm/CodeGen/MachineConstantPool.h"
502 MachineConstantPool *ConstantPool = MF.getConstantPool(); in emitLoadConstPool()
H A DARMExpandPseudoInsts.cpp2581 MachineConstantPool *MCP = MF->getConstantPool(); in ExpandMI()
2662 MachineConstantPool *MCP = MBB.getParent()->getConstantPool(); in ExpandMI()
H A DARMAsmPrinter.cpp268 // indexes in MachineConstantPool, which isn't in sync with indexes used here. in GetCPISymbol()
1376 const MachineConstantPool *MCP = MF.getConstantPool(); in EmitUnwindingInstruction()
1800 /// second is the index into the MachineConstantPool that this is, the third in emitInstruction()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.h32 class MachineConstantPool; variable
60 const MachineConstantPool *MCP = nullptr;
H A DMipsConstantIslandPass.cpp345 MachineConstantPool *MCP = nullptr;
/freebsd-src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.h45 int getExistingMachineCPValue(MachineConstantPool *CP,
H A DSystemZConstantPoolValue.cpp28 int SystemZConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunction.cpp27 #include "llvm/CodeGen/MachineConstantPool.h"
214 ConstantPool = new (Allocator) MachineConstantPool(getDataLayout()); in init()
290 ConstantPool->~MachineConstantPool(); in clear()
1371 // MachineConstantPool implementation in getSizeInBytes()
1410 MachineConstantPool::~MachineConstantPool() { in ~MachineConstantPool()
1479 unsigned MachineConstantPool::getConstantPoolIndex(const Constant *C, in getConstantPoolIndex()
1498 unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V, in getConstantPoolIndex()
1515 void MachineConstantPool::print(raw_ostream &OS) const { in print()
1542 LLVM_DUMP_METHOD void MachineConstantPool
[all...]
H A DMIRPrinter.cpp23 #include "llvm/CodeGen/MachineConstantPool.h"
119 const MachineConstantPool &ConstantPool);
578 const MachineConstantPool &ConstantPool) { in convert()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreInstrInfo.cpp17 #include "llvm/CodeGen/MachineConstantPool.h"
440 MachineConstantPool *ConstantPool = MBB.getParent()->getConstantPool(); in loadImmediate()
/freebsd-src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupVectorConstants.cpp23 #include "llvm/CodeGen/MachineConstantPool.h"
335 MachineConstantPool *CP = MI.getParent()->getParent()->getConstantPool(); in processInstruction()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp21 #include "llvm/CodeGen/MachineConstantPool.h"
151 MachineConstantPool &ConstantPool,
983 MachineConstantPool &ConstantPool, const yaml::MachineFunction &YamlMF) { in initializeConstantPool()
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DInstrEmitter.cpp18 #include "llvm/CodeGen/MachineConstantPool.h"
451 MachineConstantPool *MCP = MF->getConstantPool(); in ConstrainForSubReg()

12