/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | LazyReexports.cpp | 30 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline() local 32 if (!Trampoline) in getCallThroughTrampoline() 33 return Trampoline.takeError(); in getCallThroughTrampoline() 35 Reexports[*Trampoline] = std::make_pair(&SourceJD, std::move(SymbolName)); in getCallThroughTrampoline() 36 Notifiers[*Trampoline] = std::move(NotifyResolved); in getCallThroughTrampoline() 37 return *Trampoline; in getCallThroughTrampoline()
|
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
D | LazyReexports.cpp | 29 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline() local 31 if (!Trampoline) in getCallThroughTrampoline() 32 return Trampoline.takeError(); in getCallThroughTrampoline() 34 Reexports[*Trampoline] = ReexportsEntry{&SourceJD, std::move(SymbolName)}; in getCallThroughTrampoline() 35 Notifiers[*Trampoline] = std::move(NotifyResolved); in getCallThroughTrampoline() 36 return *Trampoline; in getCallThroughTrampoline()
|
/external/llvm-project/compiler-rt/lib/xray/ |
D | xray_AArch64.cpp | 94 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument 95 return patchSled(Enable, FuncId, Sled, Trampoline); in patchFunctionEntry()
|
D | xray_arm.cpp | 131 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument 132 return patchSled(Enable, FuncId, Sled, Trampoline); in patchFunctionEntry()
|
D | xray_x86_64.cpp | 125 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument 148 int64_t TrampolineOffset = reinterpret_cast<int64_t>(Trampoline) - in patchFunctionEntry() 151 Report("XRay Entry trampoline (%p) too far from sled (%p)\n", Trampoline, in patchFunctionEntry()
|
D | xray_mips.cpp | 139 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument 140 return patchSled(Enable, FuncId, Sled, Trampoline); in patchFunctionEntry()
|
D | xray_mips64.cpp | 147 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument 148 return patchSled(Enable, FuncId, Sled, Trampoline); in patchFunctionEntry()
|
D | xray_interface_internal.h | 84 void (*Trampoline)());
|
D | xray_powerpc64.cpp | 54 void (*Trampoline)()) XRAY_NEVER_INSTRUMENT { in patchFunctionEntry() argument
|
/external/llvm-project/llvm/lib/Target/X86/ |
D | X86WinEHState.cpp | 293 Function *Trampoline = generateLSDAInEAXThunk(F); in emitExceptionRegistrationRecord() local 295 linkExceptionRegistration(Builder, Trampoline); in emitExceptionRegistrationRecord() 397 Function *Trampoline = in generateLSDAInEAXThunk() local 403 Trampoline->setComdat(C); in generateLSDAInEAXThunk() 404 BasicBlock *EntryBB = BasicBlock::Create(Context, "entry", Trampoline); in generateLSDAInEAXThunk() 409 auto AI = Trampoline->arg_begin(); in generateLSDAInEAXThunk() 417 return Trampoline; in generateLSDAInEAXThunk()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86WinEHState.cpp | 293 Function *Trampoline = generateLSDAInEAXThunk(F); in emitExceptionRegistrationRecord() local 295 linkExceptionRegistration(Builder, Trampoline); in emitExceptionRegistrationRecord() 397 Function *Trampoline = in generateLSDAInEAXThunk() local 403 Trampoline->setComdat(C); in generateLSDAInEAXThunk() 404 BasicBlock *EntryBB = BasicBlock::Create(Context, "entry", Trampoline); in generateLSDAInEAXThunk() 409 auto AI = Trampoline->arg_begin(); in generateLSDAInEAXThunk() 417 return Trampoline; in generateLSDAInEAXThunk()
|
/external/llvm/lib/Target/X86/ |
D | X86WinEHState.cpp | 298 Function *Trampoline = generateLSDAInEAXThunk(F); in emitExceptionRegistrationRecord() local 300 linkExceptionRegistration(Builder, Trampoline); in emitExceptionRegistrationRecord() 399 Function *Trampoline = in generateLSDAInEAXThunk() local 404 BasicBlock *EntryBB = BasicBlock::Create(Context, "entry", Trampoline); in generateLSDAInEAXThunk() 409 auto AI = Trampoline->arg_begin(); in generateLSDAInEAXThunk() 417 return Trampoline; in generateLSDAInEAXThunk()
|
/external/skia/src/gpu/ |
D | GrThreadSafeCache.cpp | 319 std::tuple<GrSurfaceProxyView, sk_sp<GrThreadSafeCache::Trampoline>> 335 sk_sp<Trampoline> trampoline(new Trampoline); in CreateLazyView()
|
D | GrThreadSafeCache.h | 180 class Trampoline : public SkRefCnt { 185 static std::tuple<GrSurfaceProxyView, sk_sp<Trampoline>> CreateLazyView(GrDirectContext*,
|
D | GrBlurUtils.cpp | 387 sk_sp<GrThreadSafeCache::Trampoline> trampoline; in hw_create_filtered_mask()
|
/external/skia/src/gpu/effects/generated/ |
D | GrRRectBlurEffect.cpp | 55 sk_sp<GrThreadSafeCache::Trampoline> trampoline, in fillin_view_on_gpu()
|
/external/llvm-project/lldb/source/Symbol/ |
D | Symbol.cpp | 351 ENUM_TO_CSTRING(Trampoline); in GetTypeAsString()
|
/external/python/pybind11/docs/advanced/ |
D | classes.rst | 72 /* Trampoline (need one for each virtual function) */ 1114 class Trampoline : public A { 1124 py::class_<A, Trampoline>(m, "A") // <-- `Trampoline` here 1125 .def("foo", &Publicist::foo); // <-- `Publicist` here, not `Trampoline`!
|
D | misc.rst | 57 /* Trampoline (need one for each virtual function) */
|
/external/skia/tests/ |
D | GrThreadSafeCacheTest.cpp | 403 sk_sp<GrThreadSafeCache::Trampoline>); 642 sk_sp<GrThreadSafeCache::Trampoline> trampoline) { in FillInViewOnGpu()
|
/external/skia/src/gpu/effects/ |
D | GrRRectBlurEffect.fp | 78 sk_sp<GrThreadSafeCache::Trampoline> trampoline,
|
/external/llvm/include/llvm/IR/ |
D | Intrinsics.td | 512 //===------------------------ Trampoline Intrinsics -----------------------===//
|
/external/python/pybind11/docs/ |
D | upgrade.rst | 474 py::class_<Derived, Base1, Holder, Base2, Trampoline>("Derived");
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Intrinsics.td | 871 //===------------------------ Trampoline Intrinsics -----------------------===//
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | Intrinsics.td | 974 //===------------------------ Trampoline Intrinsics -----------------------===//
|