Home
last modified time | relevance | path

Searched refs:ARMConstantPoolValue (Results 1 – 25 of 29) sorted by relevance

12

/external/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp29 ARMConstantPoolValue::ARMConstantPoolValue(Type *Ty, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
38 ARMConstantPoolValue::ARMConstantPoolValue(LLVMContext &C, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
47 ARMConstantPoolValue::~ARMConstantPoolValue() {} in ~ARMConstantPoolValue()
49 const char *ARMConstantPoolValue::getModifierText() const { in getModifierText()
69 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
75 ARMConstantPoolValue::addSelectionDAGCSEId(FoldingSetNodeID &ID) { in addSelectionDAGCSEId()
81 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue()
95 LLVM_DUMP_METHOD void ARMConstantPoolValue::dump() const { in dump()
99 void ARMConstantPoolValue::print(raw_ostream &O) const { in print()
119 : ARMConstantPoolValue(Ty, ID, Kind, PCAdj, Modifier, AddCurrentAddress), in ARMConstantPoolConstant()
[all …]
DARMConstantPoolValue.h52 class ARMConstantPoolValue : public MachineConstantPoolValue {
61 ARMConstantPoolValue(Type *Ty, unsigned id, ARMCP::ARMCPKind Kind,
65 ARMConstantPoolValue(LLVMContext &C, unsigned id, ARMCP::ARMCPKind Kind,
77 ARMConstantPoolValue *CPV = in getExistingMachineCPValueImpl()
78 (ARMConstantPoolValue *)Constants[i].Val.MachineCPVal; in getExistingMachineCPValueImpl()
89 ~ARMConstantPoolValue() override;
113 virtual bool hasSameValue(ARMConstantPoolValue *ACPV);
115 bool equals(const ARMConstantPoolValue *A) const { in equals()
126 inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
133 class ARMConstantPoolConstant : public ARMConstantPoolValue {
[all …]
DCMakeLists.txt22 ARMConstantPoolValue.cpp
DARMBaseInstrInfo.cpp1370 ARMConstantPoolValue *ACPV = in duplicateCPV()
1371 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal); in duplicateCPV()
1374 ARMConstantPoolValue *NewCPV = nullptr; in duplicateCPV()
1492 ARMConstantPoolValue *ACPV0 = in produceSameValue()
1493 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal); in produceSameValue()
1494 ARMConstantPoolValue *ACPV1 = in produceSameValue()
1495 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal); in produceSameValue()
DARMISelLowering.h25 class ARMConstantPoolValue; variable
DARMAsmPrinter.cpp955 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV); in EmitMachineConstantPoolValue()
DARMISelLowering.cpp1825 ARMConstantPoolValue *CPV = in LowerCall()
1840 ARMConstantPoolValue *CPV = in LowerCall()
1889 ARMConstantPoolValue *CPV = in LowerCall()
2526 ARMConstantPoolValue *CPV = in LowerBlockAddress()
2677 ARMConstantPoolValue *CPV = in LowerToTLSGeneralDynamicModel()
2728 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
2750 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
2807 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( in LowerGlobalAddressELF()
2943 ARMConstantPoolValue *CPV = in LowerINTRINSIC_WO_CHAIN()
7299 ARMConstantPoolValue *CPV = in SetupEntryBlockForSjLj()
DARMFastISel.cpp589 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id, in ARMMaterializeGV()
2941 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( in ARMLowerPICELF()
DARMFrameLowering.cpp1987 ARMConstantPoolValue *NewCPV = ARMConstantPoolSymbol::Create( in adjustForSegmentedStacks()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp33 ARMConstantPoolValue::ARMConstantPoolValue(Type *Ty, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
42 ARMConstantPoolValue::ARMConstantPoolValue(LLVMContext &C, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
51 ARMConstantPoolValue::~ARMConstantPoolValue() = default;
53 StringRef ARMConstantPoolValue::getModifierText() const { in getModifierText()
75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
81 ARMConstantPoolValue::addSelectionDAGCSEId(FoldingSetNodeID &ID) { in addSelectionDAGCSEId()
87 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue()
102 LLVM_DUMP_METHOD void ARMConstantPoolValue::dump() const { in dump()
107 void ARMConstantPoolValue::print(raw_ostream &O) const { in print()
127 : ARMConstantPoolValue(Ty, ID, Kind, PCAdj, Modifier, AddCurrentAddress), in ARMConstantPoolConstant()
[all …]
DARMConstantPoolValue.h61 class ARMConstantPoolValue : public MachineConstantPoolValue {
70 ARMConstantPoolValue(Type *Ty, unsigned id, ARMCP::ARMCPKind Kind,
74 ARMConstantPoolValue(LLVMContext &C, unsigned id, ARMCP::ARMCPKind Kind,
87 static_cast<ARMConstantPoolValue*>(Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
98 ~ARMConstantPoolValue() override;
123 virtual bool hasSameValue(ARMConstantPoolValue *ACPV);
125 bool equals(const ARMConstantPoolValue *A) const { in equals()
136 inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
143 class ARMConstantPoolConstant : public ARMConstantPoolValue {
194 bool hasSameValue(ARMConstantPoolValue *ACPV) override;
[all …]
DCMakeLists.txt29 ARMConstantPoolValue.cpp
DARMBaseInstrInfo.cpp1653 ARMConstantPoolValue *ACPV = in duplicateCPV()
1654 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal); in duplicateCPV()
1657 ARMConstantPoolValue *NewCPV = nullptr; in duplicateCPV()
1783 ARMConstantPoolValue *ACPV0 = in produceSameValue()
1784 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal); in produceSameValue()
1785 ARMConstantPoolValue *ACPV1 = in produceSameValue()
1786 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal); in produceSameValue()
DARMAsmPrinter.cpp863 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV); in EmitMachineConstantPoolValue()
DARMFastISel.cpp585 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id, in ARMMaterializeGV()
2959 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( in ARMLowerPICELF()
DARMISelLowering.cpp2326 ARMConstantPoolValue *CPV = in LowerCall()
2340 ARMConstantPoolValue *CPV = in LowerCall()
2393 ARMConstantPoolValue *CPV = in LowerCall()
3070 ARMConstantPoolValue *CPV = in LowerBlockAddress()
3219 ARMConstantPoolValue *CPV = in LowerToTLSGeneralDynamicModel()
3269 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
3289 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
3506 ARMConstantPoolValue *CPV = in LowerGlobalAddressELF()
3720 ARMConstantPoolValue *CPV = in LowerINTRINSIC_WO_CHAIN()
9500 ARMConstantPoolValue *CPV = in SetupEntryBlockForSjLj()
DARMFrameLowering.cpp2409 ARMConstantPoolValue *NewCPV = ARMConstantPoolSymbol::Create( in adjustForSegmentedStacks()
/external/llvm-project/llvm/lib/Target/ARM/
DARMConstantPoolValue.cpp33 ARMConstantPoolValue::ARMConstantPoolValue(Type *Ty, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
42 ARMConstantPoolValue::ARMConstantPoolValue(LLVMContext &C, unsigned id, in ARMConstantPoolValue() function in ARMConstantPoolValue
51 ARMConstantPoolValue::~ARMConstantPoolValue() = default;
53 StringRef ARMConstantPoolValue::getModifierText() const { in getModifierText()
75 int ARMConstantPoolValue::getExistingMachineCPValue(MachineConstantPool *CP, in getExistingMachineCPValue()
81 ARMConstantPoolValue::addSelectionDAGCSEId(FoldingSetNodeID &ID) { in addSelectionDAGCSEId()
87 ARMConstantPoolValue::hasSameValue(ARMConstantPoolValue *ACPV) { in hasSameValue()
102 LLVM_DUMP_METHOD void ARMConstantPoolValue::dump() const { in dump()
107 void ARMConstantPoolValue::print(raw_ostream &O) const { in print()
127 : ARMConstantPoolValue(Ty, ID, Kind, PCAdj, Modifier, AddCurrentAddress), in ARMConstantPoolConstant()
[all …]
DARMConstantPoolValue.h61 class ARMConstantPoolValue : public MachineConstantPoolValue {
70 ARMConstantPoolValue(Type *Ty, unsigned id, ARMCP::ARMCPKind Kind,
74 ARMConstantPoolValue(LLVMContext &C, unsigned id, ARMCP::ARMCPKind Kind,
85 static_cast<ARMConstantPoolValue*>(Constants[i].Val.MachineCPVal); in getExistingMachineCPValueImpl()
96 ~ARMConstantPoolValue() override;
121 virtual bool hasSameValue(ARMConstantPoolValue *ACPV);
123 bool equals(const ARMConstantPoolValue *A) const { in equals()
134 inline raw_ostream &operator<<(raw_ostream &O, const ARMConstantPoolValue &V) {
141 class ARMConstantPoolConstant : public ARMConstantPoolValue {
192 bool hasSameValue(ARMConstantPoolValue *ACPV) override;
[all …]
DCMakeLists.txt31 ARMConstantPoolValue.cpp
DARMBaseInstrInfo.cpp1694 ARMConstantPoolValue *ACPV = in duplicateCPV()
1695 static_cast<ARMConstantPoolValue*>(MCPE.Val.MachineCPVal); in duplicateCPV()
1698 ARMConstantPoolValue *NewCPV = nullptr; in duplicateCPV()
1824 ARMConstantPoolValue *ACPV0 = in produceSameValue()
1825 static_cast<ARMConstantPoolValue*>(MCPE0.Val.MachineCPVal); in produceSameValue()
1826 ARMConstantPoolValue *ACPV1 = in produceSameValue()
1827 static_cast<ARMConstantPoolValue*>(MCPE1.Val.MachineCPVal); in produceSameValue()
DARMAsmPrinter.cpp881 ARMConstantPoolValue *ACPV = static_cast<ARMConstantPoolValue*>(MCPV); in emitMachineConstantPoolValue()
DARMFastISel.cpp572 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create(GV, Id, in ARMMaterializeGV()
2953 ARMConstantPoolValue *CPV = ARMConstantPoolConstant::Create( in ARMLowerPICELF()
DARMISelLowering.cpp2492 ARMConstantPoolValue *CPV = in LowerCall()
2506 ARMConstantPoolValue *CPV = in LowerCall()
2559 ARMConstantPoolValue *CPV = in LowerCall()
3287 ARMConstantPoolValue *CPV = in LowerBlockAddress()
3436 ARMConstantPoolValue *CPV = in LowerToTLSGeneralDynamicModel()
3486 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
3506 ARMConstantPoolValue *CPV = in LowerToTLSExecModels()
3722 ARMConstantPoolValue *CPV = in LowerGlobalAddressELF()
3936 ARMConstantPoolValue *CPV = in LowerINTRINSIC_WO_CHAIN()
9943 ARMConstantPoolValue *CPV = in SetupEntryBlockForSjLj()
/external/llvm-project/llvm/utils/gn/secondary/llvm/lib/Target/ARM/
DBUILD.gn73 "ARMConstantPoolValue.cpp",

12