LLVM 20.0.0git
|
The MachineConstantPool class keeps track of constants referenced by a function which must be spilled to memory. More...
#include "llvm/CodeGen/MachineConstantPool.h"
Public Member Functions | |
MachineConstantPool (const DataLayout &DL) | |
The only constructor. | |
~MachineConstantPool () | |
Align | getConstantPoolAlign () const |
Return the alignment required by the whole constant pool, of which the first element must be aligned. | |
unsigned | getConstantPoolIndex (const Constant *C, Align Alignment) |
getConstantPoolIndex - Create a new entry in the constant pool or return an existing one. | |
unsigned | getConstantPoolIndex (MachineConstantPoolValue *V, Align Alignment) |
bool | isEmpty () const |
isEmpty - Return true if this constant pool contains no constants. | |
const std::vector< MachineConstantPoolEntry > & | getConstants () const |
void | print (raw_ostream &OS) const |
print - Used by the MachineFunction printer to print information about constant pool objects. | |
void | dump () const |
dump - Call print(cerr) to be called from the debugger. | |
The MachineConstantPool class keeps track of constants referenced by a function which must be spilled to memory.
This is used for constants which are unable to be used directly as operands to instructions, which typically include floating point and large integer constants.
Instructions reference the address of these constant pool constants through the use of MO_ConstantPoolIndex values. When emitting assembly or machine code, these virtual address references are converted to refer to the address of the function constant pool values. The machine constant pool.
Definition at line 117 of file MachineConstantPool.h.
|
inlineexplicit |
MachineConstantPool::~MachineConstantPool | ( | ) |
Definition at line 1416 of file MachineFunction.cpp.
References llvm::CallingConv::C, and Deleted.
LLVM_DUMP_METHOD void MachineConstantPool::dump | ( | ) | const |
dump - Call print(cerr) to be called from the debugger.
Definition at line 1548 of file MachineFunction.cpp.
References llvm::dbgs(), and print().
|
inline |
Return the alignment required by the whole constant pool, of which the first element must be aligned.
Definition at line 134 of file MachineConstantPool.h.
getConstantPoolIndex - Create a new entry in the constant pool or return an existing one.
Create a new entry in the constant pool or return an existing one.
User must specify the minimum required alignment for the object.
User must specify the log2 of the minimum required alignment for the object.
Definition at line 1485 of file MachineFunction.cpp.
References llvm::CallingConv::C, CanShareConstantPoolEntry(), DL, and llvm::getAlign().
Referenced by llvm::ARMFrameLowering::adjustForSegmentedStacks(), duplicateCPV(), emitLoadFromConstantPool(), llvm::CSKYAsmPrinter::emitMachineConstantPoolValue(), llvm::PPCInstrInfo::finalizeInsInstrs(), llvm::X86InstrInfo::foldMemoryOperandImpl(), and llvm::XtensaInstrInfo::loadImmediate().
unsigned MachineConstantPool::getConstantPoolIndex | ( | MachineConstantPoolValue * | V, |
Align | Alignment | ||
) |
Definition at line 1504 of file MachineFunction.cpp.
References Idx.
|
inline |
Definition at line 145 of file MachineConstantPool.h.
Referenced by duplicateCPV(), llvm::AsmPrinter::emitConstantPool(), llvm::WebAssemblyAsmPrinter::emitConstantPool(), llvm::XtensaAsmPrinter::emitConstantPool(), llvm::ARMAsmPrinter::emitInstruction(), llvm::MipsAsmPrinter::emitInstruction(), EstimateFunctionSizeInBytes(), llvm::PPCInstrInfo::getConstantFromConstantPool(), llvm::AsmPrinter::GetCPISymbol(), and llvm::ARMBaseInstrInfo::produceSameValue().
|
inline |
isEmpty - Return true if this constant pool contains no constants.
Definition at line 143 of file MachineConstantPool.h.
void MachineConstantPool::print | ( | raw_ostream & | OS | ) | const |
print - Used by the MachineFunction printer to print information about constant pool objects.
Implemented in MachineFunction.cpp
Definition at line 1521 of file MachineFunction.cpp.
References OS.
Referenced by dump().