Home
last modified time | relevance | path

Searched refs:GlobalAddressSDNode (Results 1 – 25 of 60) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp40 if (auto *A = dyn_cast<GlobalAddressSDNode>(Base)) in equalBaseIndex()
41 if (auto *B = dyn_cast<GlobalAddressSDNode>(Other.Base)) in equalBaseIndex()
141 bool IsGV0 = isa<GlobalAddressSDNode>(BasePtr0.getBase()); in computeAliasing()
142 bool IsGV1 = isa<GlobalAddressSDNode>(BasePtr1.getBase()); in computeAliasing()
H A DScheduleDAGSDNodes.h70 if (isa<GlobalAddressSDNode>(Node)) return true; in isPassiveNode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFISelDAGToDAG.cpp92 bool getConstantFieldValue(const GlobalAddressSDNode *Node, uint64_t Offset,
271 const GlobalAddressSDNode *GADN = in PreprocessLoad()
272 dyn_cast<GlobalAddressSDNode>(OP1N->getOperand(0).getNode()); in PreprocessLoad()
282 if (const GlobalAddressSDNode *GADN = in PreprocessLoad()
283 dyn_cast<GlobalAddressSDNode>(OP1.getNode())) in PreprocessLoad()
337 bool BPFDAGToDAGISel::getConstantFieldValue(const GlobalAddressSDNode *Node, in getConstantFieldValue()
H A DBPFISelLowering.h47 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
H A DBPFISelLowering.cpp187 bool BPFTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { in isOffsetFoldingLegal()
460 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { in LowerCall()
646 auto N = cast<GlobalAddressSDNode>(Op); in LowerGlobalAddress()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsCCState.cpp74 if (const GlobalAddressSDNode *G = in getSpecialCallingConvForCallee()
75 dyn_cast<const GlobalAddressSDNode>(Callee)) { in getSpecialCallingConvForCallee()
H A DMips16ISelDAGToDAG.cpp154 if (isa<ConstantPoolSDNode>(Opnd0) || isa<GlobalAddressSDNode>(Opnd0) || in selectAddr()
H A DMipsISelLowering.h503 SDValue getTargetNode(GlobalAddressSDNode *N, EVT Ty, SelectionDAG &DAG,
656 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
H A DMipsISelLowering.cpp148 SDValue MipsTargetLowering::getTargetNode(GlobalAddressSDNode *N, EVT Ty, in getTargetNode()
2069 GlobalAddressSDNode *N = cast<GlobalAddressSDNode>(Op); in lowerGlobalAddress()
2132 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); in lowerGlobalTLSAddress()
3069 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(CLI.Callee)) { in getOpndList()
3112 if (const GlobalAddressSDNode *G = in AdjustInstrPostInstrSelection()
3113 dyn_cast_or_null<const GlobalAddressSDNode>(TargetAddr)) { in AdjustInstrPostInstrSelection()
3221 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { in LowerCall()
3391 } else if (auto *N = dyn_cast<GlobalAddressSDNode>(Callee)) { in LowerCall()
3408 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { in LowerCall()
4299 MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { in isOffsetFoldingLegal()
H A DMips16ISelLowering.cpp468 } else if (GlobalAddressSDNode *G = in getOpndList()
469 dyn_cast<GlobalAddressSDNode>(CLI.Callee)) { in getOpndList()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.h199 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
201 SDValue LowerToTLSInitialExecModel(GlobalAddressSDNode *GA,
203 SDValue LowerToTLSLocalExecModel(GlobalAddressSDNode *GA,
206 GlobalAddressSDNode *GA, SDValue InFlag, EVT PtrVT,
294 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
H A DHexagonISelLowering.cpp422 if (GlobalAddressSDNode *GAN = dyn_cast<GlobalAddressSDNode>(Callee)) in LowerCall()
578 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { in LowerCall()
1224 auto *GAN = cast<GlobalAddressSDNode>(Op); in LowerGLOBALADDRESS()
1282 GlobalAddressSDNode *GA, SDValue Glue, EVT PtrVT, unsigned ReturnReg, in GetDynamicTLSAddr()
1318 HexagonTargetLowering::LowerToTLSInitialExecModel(GlobalAddressSDNode *GA, in LowerToTLSInitialExecModel()
1360 HexagonTargetLowering::LowerToTLSLocalExecModel(GlobalAddressSDNode *GA, in LowerToTLSLocalExecModel()
1382 HexagonTargetLowering::LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, in LowerToTLSGeneralDynamicModel()
1421 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); in LowerGlobalTLSAddress()
3447 bool HexagonTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) in isOffsetFoldingLegal()
3483 if (!isa<GlobalAddressSDNode>(Callee) && in IsEligibleForTailCallOptimization()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.h612 SDValue lowerGlobalAddress(GlobalAddressSDNode *Node,
614 SDValue lowerTLSGetOffset(GlobalAddressSDNode *Node,
618 SDValue lowerGlobalTLSAddress(GlobalAddressSDNode *Node,
H A DSystemZISelDAGToDAG.cpp492 uint64_t Offset = (cast<GlobalAddressSDNode>(Full)->getOffset() - in expandAddress()
493 cast<GlobalAddressSDNode>(Anchor)->getOffset()); in expandAddress()
1491 if (GlobalAddressSDNode *GA = in storeLoadIsAligned()
1492 dyn_cast<GlobalAddressSDNode>(BasePtr.getOperand(0))) { in storeLoadIsAligned()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/MSP430/
H A DMSP430ISelDAGToDAG.cpp143 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) { in MatchWrapper()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.h111 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h596 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
799 SDValue LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA,
801 SDValue LowerToTLSExecModels(GlobalAddressSDNode *GA,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVISelLowering.h525 SDValue getStaticTLSAddr(GlobalAddressSDNode *N, SelectionDAG &DAG,
527 SDValue getDynamicTLSAddr(GlobalAddressSDNode *N, SelectionDAG &DAG) const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h89 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
H A DSparcISelLowering.cpp698 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) { in hasReturnsTwiceAttr()
944 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) in LowerCall_32()
1248 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) in LowerCall_64()
1913 if (const GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op)) in withTargetFlags()
2027 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op); in LowerGlobalTLSAddress()
3340 SparcTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { in isOffsetFoldingLegal()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARC/
H A DARCISelLowering.cpp323 if (auto *G = dyn_cast<GlobalAddressSDNode>(Callee)) in LowerCall()
726 const GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op); in LowerGlobalAddress()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.h184 bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const override;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelDAGToDAG.cpp540 if (auto *G = dyn_cast<GlobalAddressSDNode>(N0)) { in matchWrapper()
583 if (auto *G = dyn_cast<GlobalAddressSDNode>(N0)) { in matchWrapper()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp281 const GlobalAddressSDNode *GN = cast<GlobalAddressSDNode>(Op); in LowerGlobalAddress()
378 if (GlobalAddressSDNode *GASD = in lowerLoadWordFromAlignedBasePlusOffset()
379 dyn_cast<GlobalAddressSDNode>(Base.getNode())) { in lowerLoadWordFromAlignedBasePlusOffset()
1195 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) in LowerCCCCallTo()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiISelLowering.cpp606 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee); in LowerCCCCallTo()
1161 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal(); in LowerGlobalAddress()
1162 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset(); in LowerGlobalAddress()

123