Home
last modified time | relevance | path

Searched refs:Stubs (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DBasicGOTAndStubsBuilder.h58 auto StubI = Stubs.find(Target.getName()); in getStubSymbol()
60 if (StubI == Stubs.end()) { in getStubSymbol()
62 StubI = Stubs.insert(std::make_pair(Target.getName(), &StubSymbol)).first; in getStubSymbol()
65 assert(StubI != Stubs.end() && "Count not get stub symbol"); in getStubSymbol()
75 DenseMap<StringRef, Symbol *> Stubs; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
DRuntimeDyldCOFFX86_64.h146 StubMap &Stubs) { in generateRelocationStub() argument
156 auto Stub = Stubs.find(OriginalRelValueRef); in generateRelocationStub()
157 if (Stub == Stubs.end()) { in generateRelocationStub()
162 Stubs[OriginalRelValueRef] = StubOffset; in generateRelocationStub()
194 StubMap &Stubs) override { in processRelocationRef() argument
233 SectionID, TargetName, Offset, RelType, Addend, Stubs); in processRelocationRef()
DRuntimeDyldMachOX86_64.h37 StubMap &Stubs) override { in processRelocationRef() argument
74 processGOTRelocation(RE, Value, Stubs); in processRelocationRef()
130 RelocationValueRef &Value, StubMap &Stubs) { in processGOTRelocation() argument
135 RuntimeDyldMachO::StubMap::const_iterator i = Stubs.find(Value); in processGOTRelocation()
137 if (i != Stubs.end()) { in processGOTRelocation()
140 Stubs[Value] = Section.getStubOffset(); in processGOTRelocation()
DRuntimeDyldCOFFAArch64.h101 StubMap &Stubs) { in generateRelocationStub() argument
111 auto Stub = Stubs.find(OriginalRelValueRef); in generateRelocationStub()
112 if (Stub == Stubs.end()) { in generateRelocationStub()
117 Stubs[OriginalRelValueRef] = StubOffset; in generateRelocationStub()
144 StubMap &Stubs) override { in processRelocationRef() argument
185 SectionID, TargetName, Offset, RelType, Addend, Stubs); in processRelocationRef()
DRuntimeDyldMachOARM.h104 StubMap &Stubs) override { in processRelocationRef() argument
191 processBranchRelocation(RE, Value, Stubs); in processRelocationRef()
307 StubMap &Stubs) { in processBranchRelocation() argument
311 RuntimeDyldMachO::StubMap::const_iterator i = Stubs.find(Value); in processBranchRelocation()
313 if (i != Stubs.end()) { in processBranchRelocation()
318 Stubs[Value] = Section.getStubOffset(); in processBranchRelocation()
DRuntimeDyldMachOAArch64.h276 StubMap &Stubs) override { in processRelocationRef() argument
344 processGOTRelocation(RE, Value, Stubs); in processRelocationRef()
443 RelocationValueRef &Value, StubMap &Stubs) { in processGOTRelocation() argument
448 StubMap::const_iterator i = Stubs.find(Value); in processGOTRelocation()
450 if (i != Stubs.end()) in processGOTRelocation()
461 Stubs[Value] = StubOffset; in processGOTRelocation()
DRuntimeDyldCOFFI386.h41 StubMap &Stubs) override { in processRelocationRef() argument
DRuntimeDyldMachOI386.h37 StubMap &Stubs) override { in processRelocationRef() argument
DRuntimeDyldCOFFThumb.h64 StubMap &Stubs) override { in processRelocationRef() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp1056 StubMap &Stubs) { in resolveAArch64Branch() argument
1064 StubMap::const_iterator i = Stubs.find(Value); in resolveAArch64Branch()
1065 if (i != Stubs.end()) { in resolveAArch64Branch()
1073 Stubs[Value] = Section.getStubOffset(); in resolveAArch64Branch()
1111 ObjSectionToIDMap &ObjSectionToID, StubMap &Stubs) { in processRelocationRef() argument
1207 resolveAArch64Branch(SectionID, Value, RelI, Stubs); in processRelocationRef()
1230 StubMap::const_iterator i = Stubs.find(Value); in processRelocationRef()
1231 if (i != Stubs.end()) { in processRelocationRef()
1240 Stubs[Value] = Section.getStubOffset(); in processRelocationRef()
1285 StubMap::const_iterator i = Stubs.find(Value); in processRelocationRef()
[all …]
DRuntimeDyldELF.h46 relocation_iterator RelI, StubMap &Stubs);
180 StubMap &Stubs) override;
DRuntimeDyld.cpp350 StubMap Stubs; in loadObjectImpl() local
377 if (auto IOrErr = processRelocationRef(SectionID, I, Obj, LocalSections, Stubs)) in loadObjectImpl()
387 for (auto &KV : Stubs) { in loadObjectImpl()
DRuntimeDyldImpl.h425 StubMap &Stubs) = 0;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DLazyReexports.cpp184 SymbolMap Stubs; in materialize() local
186 Stubs[Alias.first] = ISManager.findStub(*Alias.first, false); in materialize()
189 cantFail(R.notifyResolved(Stubs)); in materialize()
/third_party/skia/third_party/externals/libpng/scripts/
Dmakefile.acorn36 @.pngtest: @.o.pngtest @.libpng-lib C:o.Stubs Zlib:zlib_lib
37 Link $(Linkflags) @.o.pngtest @.libpng-lib C:o.Stubs Zlib:zlib_lib
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86AsmPrinter.cpp684 MachineModuleInfoMachO::SymbolListTy Stubs; in emitNonLazyStubs() local
687 Stubs = MMIMacho.GetGVStubList(); in emitNonLazyStubs()
688 if (!Stubs.empty()) { in emitNonLazyStubs()
693 for (auto &Stub : Stubs) in emitNonLazyStubs()
696 Stubs.clear(); in emitNonLazyStubs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMAsmPrinter.cpp524 MachineModuleInfoMachO::SymbolListTy Stubs = MMIMacho.GetGVStubList(); in EmitEndOfAsmFile() local
526 if (!Stubs.empty()) { in EmitEndOfAsmFile()
531 for (auto &Stub : Stubs) in EmitEndOfAsmFile()
534 Stubs.clear(); in EmitEndOfAsmFile()
538 Stubs = MMIMacho.GetThreadLocalGVStubList(); in EmitEndOfAsmFile()
539 if (!Stubs.empty()) { in EmitEndOfAsmFile()
544 for (auto &Stub : Stubs) in EmitEndOfAsmFile()
547 Stubs.clear(); in EmitEndOfAsmFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1460 MachineModuleInfoELF::SymbolListTy Stubs = MMIELF.GetGVStubList(); in doFinalization() local
1461 if (!Stubs.empty()) { in doFinalization()
1466 for (const auto &Stub : Stubs) { in doFinalization()
1479 MachineModuleInfoCOFF::SymbolListTy Stubs = MMICOFF.GetGVStubList(); in doFinalization() local
1480 if (!Stubs.empty()) { in doFinalization()
1483 for (const auto &Stub : Stubs) { in doFinalization()
/third_party/mesa3d/docs/
Ddispatch.rst160 3.3. Assembly Language Dispatch Stubs
239 3.4. Fixed-Length Dispatch Stubs
/third_party/skia/
Dpublic.bzl942 # Stubs, pending SkUnicode fission