Home
last modified time | relevance | path

Searched refs:Aliasee (Results 1 – 25 of 27) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DGlobals.cpp477 const Twine &Name, Constant *Aliasee, in GlobalAlias() argument
480 Aliasee) { in GlobalAlias()
487 Constant *Aliasee, Module *ParentModule) { in create() argument
488 return new GlobalAlias(Ty, AddressSpace, Link, Name, Aliasee, ParentModule); in create()
499 GlobalValue *Aliasee) { in create() argument
500 return create(Ty, AddressSpace, Linkage, Name, Aliasee, Aliasee->getParent()); in create()
504 GlobalValue *Aliasee) { in create() argument
505 PointerType *PTy = Aliasee->getType(); in create()
507 Aliasee); in create()
510 GlobalAlias *GlobalAlias::create(const Twine &Name, GlobalValue *Aliasee) { in create() argument
[all …]
DTypeFinder.cpp44 if (const Value *Aliasee = A.getAliasee()) in run() local
45 incorporateValue(Aliasee); in run()
DVerifier.cpp759 const Constant *Aliasee = GA.getAliasee(); in visitGlobalAlias() local
760 Assert(Aliasee, "Aliasee cannot be NULL!", &GA); in visitGlobalAlias()
761 Assert(GA.getType() == Aliasee->getType(), in visitGlobalAlias()
764 Assert(isa<GlobalValue>(Aliasee) || isa<ConstantExpr>(Aliasee), in visitGlobalAlias()
767 visitAliaseeSubExpr(GA, *Aliasee); in visitGlobalAlias()
DCore.cpp2199 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, in LLVMAddAlias() argument
2204 unwrap<Constant>(Aliasee), unwrap(M))); in LLVMAddAlias()
2248 void LLVMAliasSetAliasee(LLVMValueRef Alias, LLVMValueRef Aliasee) { in LLVMAliasSetAliasee() argument
2249 unwrap<GlobalAlias>(Alias)->setAliasee(unwrap<Constant>(Aliasee)); in LLVMAliasSetAliasee()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DGlobalAlias.h32 const Twine &Name, Constant *Aliasee, Module *Parent);
42 Constant *Aliasee, Module *Parent);
52 GlobalValue *Aliasee);
56 GlobalValue *Aliasee);
59 static GlobalAlias *create(const Twine &Name, GlobalValue *Aliasee);
72 void setAliasee(Constant *Aliasee);
DModuleSummaryIndex.h446 void setAliasee(ValueInfo &AliaseeVI, GlobalValueSummary *Aliasee) {
448 AliaseeSummary = Aliasee;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRecordStreamer.cpp127 const MCSymbol *Aliasee) { in emitELFSymverDirective() argument
128 SymverAliasMap[Aliasee].push_back(AliasName); in emitELFSymverDirective()
155 const MCSymbol *Aliasee = Symver.first; in flushSymverDirectives() local
160 RecordStreamer::State state = getSymbolState(Aliasee); in flushSymverDirectives()
188 const GlobalValue *GV = M.getNamedValue(Aliasee->getName()); in flushSymverDirectives()
190 auto MI = MangledNameMap.find(Aliasee->getName()); in flushSymverDirectives()
223 const MCExpr *Value = MCSymbolRefExpr::create(Aliasee, getContext()); in flushSymverDirectives()
DRecordStreamer.h68 const MCSymbol *Aliasee) override;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DCompileOnDemandLayer.cpp35 Constant *Aliasee = A.getAliasee(); in extractSubModule() local
37 assert(Aliasee->hasName() && "Anonymous aliasee"); in extractSubModule()
40 if (isa<Function>(Aliasee)) { in extractSubModule()
41 auto *F = cloneFunctionDecl(*A.getParent(), *cast<Function>(Aliasee)); in extractSubModule()
45 } else if (isa<GlobalVariable>(Aliasee)) { in extractSubModule()
47 *cast<GlobalVariable>(Aliasee)); in extractSubModule()
DCore.cpp285 OS << " " << *KV.first << ": " << KV.second.Aliasee << " " in operator <<()
653 if (&SrcJD == &TgtJD && (QueryAliases.count(KV.second.Aliasee) || in materialize()
654 RequestedAliases.count(KV.second.Aliasee))) in materialize()
658 QuerySymbols.add(KV.second.Aliasee); in materialize()
696 if (SrcJDDeps.count(KV.second.Aliasee)) { in materialize()
697 PerAliasDeps = {KV.second.Aliasee}; in materialize()
707 assert(Result->count(KV.second.Aliasee) && in materialize()
710 (*Result)[KV.second.Aliasee].getAddress(), KV.second.AliasFlags); in materialize()
DSpeculation.cpp32 auto It = Maps.insert({I.first, {I.second.Aliasee, SrcJD}}); in trackImpls()
DLazyReexports.cpp162 SourceJD, Alias.second.Aliasee, NotifyResolved); in materialize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DStackSafetyAnalysis.cpp192 const GlobalObject *Aliasee = A->getBaseObject(); in FunctionInfo() local
193 const FunctionType *Type = cast<FunctionType>(Aliasee->getValueType()); in FunctionInfo()
198 US.Calls.emplace_back(Aliasee, ArgNo, ConstantRange(APInt(PointerSize, 0))); in FunctionInfo()
DModuleSummaryAnalysis.cpp622 auto *Aliasee = A.getBaseObject(); in computeAliasSummary() local
623 auto AliaseeVI = Index.getValueInfo(Aliasee->getGUID()); in computeAliasSummary()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCELFStreamer.h56 const MCSymbol *Aliasee) override;
DMCStreamer.h582 const MCSymbol *Aliasee);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DCore.h302 SymbolAliasMapEntry(SymbolStringPtr Aliasee, JITSymbolFlags AliasFlags) in SymbolAliasMapEntry()
303 : Aliasee(std::move(Aliasee)), AliasFlags(AliasFlags) {} in SymbolAliasMapEntry()
305 SymbolStringPtr Aliasee; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCELFStreamer.cpp327 const MCSymbol *Aliasee) { in emitELFSymverDirective() argument
328 getAssembler().Symvers.push_back({AliasName, Aliasee}); in emitELFSymverDirective()
DWinCOFFObjectWriter.cpp347 const MCSymbol &Aliasee = SymRef->getSymbol(); in getLinkedSymbol() local
348 if (!Aliasee.isUndefined()) in getLinkedSymbol()
350 return GetOrCreateCOFFSymbol(&Aliasee); in getLinkedSymbol()
DMCAsmStreamer.cpp141 const MCSymbol *Aliasee) override;
459 const MCSymbol *Aliasee) { in emitELFSymverDirective() argument
461 Aliasee->print(OS, MAI); in emitELFSymverDirective()
DMCStreamer.cpp1074 const MCSymbol *Aliasee) {} in emitELFSymverDirective() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp2141 StringRef Aliasee = cast<MDString>(AliasMD->getOperand(1))->getString(); in lower() local
2143 if (!ExportedFunctions.count(Aliasee) || in lower()
2144 ExportedFunctions[Aliasee].Linkage != CFL_Definition || in lower()
2145 !M.getNamedAlias(Aliasee)) in lower()
2160 auto *Alias = GlobalAlias::create("", M.getNamedAlias(Aliasee)); in lower()
DGlobalOpt.cpp2753 Constant *Aliasee = GA.getAliasee(); in hasUsesToReplace() local
2754 GlobalValue *Target = cast<GlobalValue>(Aliasee->stripPointerCasts()); in hasUsesToReplace()
2794 Constant *Aliasee = J->getAliasee(); in OptimizeGlobalAliases() local
2795 GlobalValue *Target = dyn_cast<GlobalValue>(Aliasee->stripPointerCasts()); in OptimizeGlobalAliases()
2808 J->replaceAllUsesWith(ConstantExpr::getBitCast(Aliasee, J->getType())); in OptimizeGlobalAliases()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DHWAddressSanitizer.cpp1291 Constant *Aliasee = ConstantExpr::getIntToPtr( in instrumentGlobal() local
1297 GV->getLinkage(), "", Aliasee, &M); in instrumentGlobal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DCore.h2320 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee,
2371 void LLVMAliasSetAliasee(LLVMValueRef Alias, LLVMValueRef Aliasee);

12