Home
last modified time | relevance | path

Searched refs:GV1 (Results 1 – 8 of 8) sorted by relevance

/external/llvm/test/Transforms/GlobalOpt/
Datomic.ll3 @GV1 = internal global i64 1
4 ; CHECK: @GV1 = internal unnamed_addr constant i64 1
8 %0 = load atomic i8* bitcast (i64* @GV1 to i8*) acquire, align 8
Dctor-list-opt.ll89 @GV1 = global %struct.B zeroinitializer, align 8
94 %0 = bitcast %struct.B* @GV1 to i8*
97 %3 = bitcast %struct.B* @GV1 to i8***
/external/llvm/lib/Analysis/IPA/
DGlobalsModRef.cpp497 const GlobalValue *GV1 = dyn_cast<GlobalValue>(UV1); in alias() local
499 if (GV1 || GV2) { in alias()
502 if (GV1 && !NonAddressTakenGlobals.count(GV1)) GV1 = 0; in alias()
507 if ((GV1 || GV2) && GV1 != GV2) in alias()
517 GV1 = GV2 = 0; in alias()
521 GV1 = GV; in alias()
530 GV1 = AllocsForIndirectGlobals[UV1]; in alias()
538 if ((GV1 || GV2) && GV1 != GV2) in alias()
/external/llvm/lib/Transforms/Scalar/
DGlobalMerge.cpp105 bool operator()(const GlobalVariable *GV1, const GlobalVariable *GV2) { in operator ()()
106 Type *Ty1 = cast<PointerType>(GV1->getType())->getElementType(); in operator ()()
/external/llvm/lib/Analysis/
DConstantFolding.cpp557 GlobalValue *GV1, *GV2; in SymbolicallyEvaluateBinop() local
560 if (IsConstantOffsetFromGlobal(Op0, GV1, Offs1, *TD)) in SymbolicallyEvaluateBinop()
562 GV1 == GV2) { in SymbolicallyEvaluateBinop()
DBasicAliasAnalysis.cpp1249 if (const GEPOperator *GV1 = dyn_cast<GEPOperator>(V1)) { in aliasCheck() local
1250 AliasResult Result = aliasGEP(GV1, V1Size, V1TBAAInfo, V2, V2Size, V2TBAAInfo, O1, O2); in aliasCheck()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp6075 const GlobalValue *GV1 = NULL; in isConsecutiveLoad() local
6079 bool isGA1 = TLI.isGAPlusOffset(Loc.getNode(), GV1, Offset1); in isConsecutiveLoad()
6081 if (isGA1 && isGA2 && GV1 == GV2) in isConsecutiveLoad()
DDAGCombiner.cpp9007 const GlobalValue *GV1, *GV2; in isAlias() local
9009 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1); in isAlias()
9013 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2))) in isAlias()
9029 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2)) in isAlias()