Home
last modified time | relevance | path

Searched refs:GVal (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
H A DBPFMISimplifyPatchable.cpp61 const GlobalValue *GVal, bool IsAma);
63 Register &SrcReg, const GlobalValue *GVal,
66 MachineOperand *RelocOp, const GlobalValue *GVal);
68 const GlobalValue *GVal);
70 MachineOperand *RelocOp, const GlobalValue *GVal,
92 MachineOperand *RelocOp, const GlobalValue *GVal) { in checkADDrr() argument
140 .addGlobalAddress(GVal); in checkADDrr()
146 MachineBasicBlock &MBB, MachineOperand *RelocOp, const GlobalValue *GVal, in checkShift() argument
155 .add(Inst->getOperand(1)).addGlobalAddress(GVal); in checkShift()
161 Register &DstReg, const GlobalValue *GVal, bool IsAma) { in processCandidate() argument
[all …]
H A DBTFDebug.cpp1036 const GlobalValue *GVal = MO.getGlobal(); in processGlobalValue() local
1037 auto *GVar = dyn_cast<GlobalVariable>(GVal); in processGlobalValue()
1040 processFuncPrototypes(dyn_cast<Function>(GVal)); in processGlobalValue()
1239 const GlobalValue *GVal = MO.getGlobal(); in InstLower() local
1240 auto *GVar = dyn_cast<GlobalVariable>(GVal); in InstLower()
1270 const GlobalValue *GVal = MO.getGlobal(); in InstLower() local
1271 auto *GVar = dyn_cast<GlobalVariable>(GVal); in InstLower()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Linker/
H A DLinkModules.cpp132 const GlobalValue *GVal = M.getNamedValue(ComdatName); in getComdatLeader() local
133 if (const auto *GA = dyn_cast_or_null<GlobalAlias>(GVal)) { in getComdatLeader()
134 GVal = GA->getBaseObject(); in getComdatLeader()
135 if (!GVal) in getComdatLeader()
141 GVar = dyn_cast_or_null<GlobalVariable>(GVal); in getComdatLeader()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DCFLGraph.h206 if (auto GVal = dyn_cast<GlobalValue>(Val)) { variable
207 if (Graph.addNode(InstantiatedValue{GVal, 0},
208 getGlobalOrArgAttrFromValue(*GVal)))
209 Graph.addNode(InstantiatedValue{GVal, 1}, getAttrUnknown());
H A DConstantFolding.cpp605 GlobalValue *GVal; in FoldReinterpretLoadFromConstPtr() local
607 if (!IsConstantOffsetFromGlobal(C, GVal, OffsetAI, DL)) in FoldReinterpretLoadFromConstPtr()
610 auto *GV = dyn_cast<GlobalVariable>(GVal); in FoldReinterpretLoadFromConstPtr()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp667 const llvm::GlobalValue *GVal = I.getOperand(1).getGlobal(); in select() local
673 .addGlobalAddress(GVal); in select()
688 if (GVal->hasLocalLinkage()) { in select()
696 .addGlobalAddress(GVal); in select()
706 .addGlobalAddress(GVal); in select()
715 .addGlobalAddress(GVal); in select()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLParser.cpp1023 GlobalValue *GVal = nullptr; in parseIndirectSymbol() local
1028 GVal = M->getNamedValue(Name); in parseIndirectSymbol()
1029 if (GVal) { in parseIndirectSymbol()
1036 GVal = I->second.first; in parseIndirectSymbol()
1075 if (GVal) { in parseIndirectSymbol()
1077 if (GVal->getType() != GA->getType()) in parseIndirectSymbol()
1084 GVal->replaceAllUsesWith(GA.get()); in parseIndirectSymbol()
1085 GVal->eraseFromParent(); in parseIndirectSymbol()
1149 GlobalValue *GVal = nullptr; in parseGlobal() local
1153 GVal = M->getNamedValue(Name); in parseGlobal()
[all …]