Home
last modified time | relevance | path

Searched refs:MachineConstantPoolValue (Results 1 – 23 of 23) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineConstantPool.h35 class MachineConstantPoolValue {
41 explicit MachineConstantPoolValue(Type *ty) : Ty(ty) {} in MachineConstantPoolValue() function
42 virtual ~MachineConstantPoolValue() = default;
58 const MachineConstantPoolValue &V) {
72 MachineConstantPoolValue *MachineCPVal;
85 MachineConstantPoolEntry(MachineConstantPoolValue *V, Align A) in MachineConstantPoolEntry()
121 DenseSet<MachineConstantPoolValue*> MachineCPVsSharingEntries;
140 unsigned getConstantPoolIndex(MachineConstantPoolValue *V, Align Alignment);
H A DMIRYamlMapping.h522 struct MachineConstantPoolValue {
528 bool operator==(const MachineConstantPoolValue &Other) const {
535 template <> struct MappingTraits<MachineConstantPoolValue> {
536 static void mapping(IO &YamlIO, MachineConstantPoolValue &Constant) {
577 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::yaml::MachineConstantPoolValue)
719 std::vector<MachineConstantPoolValue> Constants; /// Constant pool.
766 std::vector<MachineConstantPoolValue>());
H A DAsmPrinter.h52 class MachineConstantPoolValue; variable
590 virtual void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV);
H A DSelectionDAGNodes.h64 class MachineConstantPoolValue; variable
1892 MachineConstantPoolValue *MachineCPVal;
1907 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v, EVT VT, int o,
1927 MachineConstantPoolValue *getMachineCPVal() const {
H A DSelectionDAG.h77 class MachineConstantPoolValue; variable
738 SDValue getConstantPool(MachineConstantPoolValue *C, EVT VT,
741 SDValue getTargetConstantPool(MachineConstantPoolValue *C, EVT VT,
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.h32 class SystemZConstantPoolValue : public MachineConstantPoolValue {
H A DSystemZConstantPoolValue.cpp20 : MachineConstantPoolValue(gv->getType()), GV(gv), Modifier(modifier) {} in SystemZConstantPoolValue()
H A DSystemZAsmPrinter.h59 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
H A DSystemZAsmPrinter.cpp782 MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/
H A DCSKYAsmPrinter.h47 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
H A DCSKYConstantPoolValue.cpp32 : MachineConstantPoolValue(Ty), Kind(Kind), PCAdjust(PCAdjust), in CSKYConstantPoolValue()
H A DCSKYConstantPoolValue.h46 class CSKYConstantPoolValue : public MachineConstantPoolValue {
H A DCSKYAsmPrinter.cpp193 MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.cpp38 : MachineConstantPoolValue(Ty), LabelId(id), Kind(kind), in ARMConstantPoolValue()
47 : MachineConstantPoolValue((Type*)Type::getInt32Ty(C)), in ARMConstantPoolValue()
H A DARMAsmPrinter.h153 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
H A DARMConstantPoolValue.h61 class ARMConstantPoolValue : public MachineConstantPoolValue {
H A DARMExpandPseudoInsts.cpp2492 MachineConstantPoolValue *CPV = in ExpandMI()
2574 MachineConstantPoolValue *CPV; in ExpandMI()
H A DARMAsmPrinter.cpp899 MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachineFunction.cpp1346 void MachineConstantPoolValue::anchor() {} in anchor()
1348 unsigned MachineConstantPoolValue::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes()
1385 DenseSet<MachineConstantPoolValue*> Deleted; in ~MachineConstantPool()
1391 for (MachineConstantPoolValue *CPV : MachineCPVsSharingEntries) { in ~MachineConstantPool()
1461 unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V, in getConstantPoolIndex()
H A DMIRPrinter.cpp568 yaml::MachineConstantPoolValue YamlConstant; in convert()
/openbsd-src/gnu/llvm/llvm/docs/
H A DMIRLangRef.rst140 - The target-specific ``MachineConstantPoolValue`` subclasses (in the ARM and
154 ``MachineConstantPoolValue`` subclasses can't use the MIR format at the moment.
615 ``MachineConstantPoolValue``. When serializing all the function's constants the
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3540 void AsmPrinter::emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1803 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT, in getConstantPool()