Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.h518 struct MachineConstantPoolValue {
524 bool operator==(const MachineConstantPoolValue &Other) const {
531 template <> struct MappingTraits<MachineConstantPoolValue> {
532 static void mapping(IO &YamlIO, MachineConstantPoolValue &Constant) {
573 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::yaml::MachineConstantPoolValue)
702 std::vector<MachineConstantPoolValue> Constants; /// Constant pool.
737 std::vector<MachineConstantPoolValue>());
H A DAsmPrinter.h49 class MachineConstantPoolValue; variable
512 virtual void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV);
H A DSelectionDAGNodes.h64 class MachineConstantPoolValue; variable
1817 MachineConstantPoolValue *MachineCPVal;
1832 ConstantPoolSDNode(bool isTarget, MachineConstantPoolValue *v, EVT VT, int o,
1852 MachineConstantPoolValue *getMachineCPVal() const {
H A DSelectionDAG.h72 class MachineConstantPoolValue; variable
704 SDValue getConstantPool(MachineConstantPoolValue *C, EVT VT,
707 SDValue getTargetConstantPool(MachineConstantPoolValue *C, EVT VT,
/netbsd-src/external/apache2/llvm/dist/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.h36 void emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) override;
H A DSystemZAsmPrinter.cpp715 MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/netbsd-src/external/apache2/llvm/dist/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 DARMAsmPrinter.cpp877 MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
H A DARMExpandPseudoInsts.cpp2330 MachineConstantPoolValue *CPV = in ExpandMI()
2408 MachineConstantPoolValue *CPV; in ExpandMI()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineFunction.cpp1107 void MachineConstantPoolValue::anchor() {} in anchor()
1109 unsigned MachineConstantPoolValue::getSizeInBytes(const DataLayout &DL) const { in getSizeInBytes()
1146 DenseSet<MachineConstantPoolValue*> Deleted; in ~MachineConstantPool()
1152 for (MachineConstantPoolValue *CPV : MachineCPVsSharingEntries) { in ~MachineConstantPool()
1222 unsigned MachineConstantPool::getConstantPoolIndex(MachineConstantPoolValue *V, in getConstantPoolIndex()
H A DMIRPrinter.cpp540 yaml::MachineConstantPoolValue YamlConstant; in convert()
/netbsd-src/external/apache2/llvm/dist/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.
612 ``MachineConstantPoolValue``. When serializing all the function's constants the
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3061 void AsmPrinter::emitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { in emitMachineConstantPoolValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1641 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT, in getConstantPool()