Home
last modified time | relevance | path

Searched refs:getLazyResolverFunction (Results 1 – 12 of 12) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsJITInfo.h54 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
DMipsJITInfo.cpp144 TargetJITInfo::LazyResolverFn MipsJITInfo::getLazyResolverFunction( in getLazyResolverFunction() function in MipsJITInfo
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCJITInfo.h36 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
DPPCJITInfo.cpp344 PPCJITInfo::getLazyResolverFunction(JITCompilerFn Fn) { in getLazyResolverFunction() function in PPCJITInfo
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86JITInfo.h61 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
DX86JITInfo.cpp420 X86JITInfo::getLazyResolverFunction(JITCompilerFn F) { in getLazyResolverFunction() function in X86JITInfo
/external/swiftshader/third_party/LLVM/include/llvm/Target/
DTargetJITInfo.h99 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn) { in getLazyResolverFunction() function
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMJITInfo.h75 virtual LazyResolverFn getLazyResolverFunction(JITCompilerFn);
DARMJITInfo.cpp136 ARMJITInfo::getLazyResolverFunction(JITCompilerFn F) { in getLazyResolverFunction() function in ARMJITInfo
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DWritingAnLLVMBackend.rst1945 * ``getLazyResolverFunction`` --- Initializes the JIT, gives the target a
1957 ``getLazyResolverFunction`` is generally trivial to implement. It makes the
1960 (in ``AlphaJITInfo.cpp``), the ``getLazyResolverFunction`` implementation is
1965 TargetJITInfo::LazyResolverFn AlphaJITInfo::getLazyResolverFunction(
1971 For the X86 target, the ``getLazyResolverFunction`` implementation is a little
/external/llvm/docs/
DWritingAnLLVMBackend.rst1905 * ``getLazyResolverFunction`` --- Initializes the JIT, gives the target a
1917 ``getLazyResolverFunction`` is generally trivial to implement. It makes the
1920 (in ``AlphaJITInfo.cpp``), the ``getLazyResolverFunction`` implementation is
1925 TargetJITInfo::LazyResolverFn AlphaJITInfo::getLazyResolverFunction(
1931 For the X86 target, the ``getLazyResolverFunction`` implementation is a little
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
DJITEmitter.cpp196 LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn); in JITResolver()