Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp736 bool IsDirect = Func != nullptr; in selectCall() local
737 if (!IsDirect && isa<ConstantExpr>(Call->getCalledValue())) in selectCall()
745 Opc = IsDirect ? WebAssembly::CALL_VOID : WebAssembly::PCALL_INDIRECT_VOID; in selectCall()
756 Opc = IsDirect ? WebAssembly::CALL_I32 : WebAssembly::PCALL_INDIRECT_I32; in selectCall()
760 Opc = IsDirect ? WebAssembly::CALL_I64 : WebAssembly::PCALL_INDIRECT_I64; in selectCall()
764 Opc = IsDirect ? WebAssembly::CALL_F32 : WebAssembly::PCALL_INDIRECT_F32; in selectCall()
768 Opc = IsDirect ? WebAssembly::CALL_F64 : WebAssembly::PCALL_INDIRECT_F64; in selectCall()
773 IsDirect ? WebAssembly::CALL_v16i8 : WebAssembly::PCALL_INDIRECT_v16i8; in selectCall()
778 IsDirect ? WebAssembly::CALL_v8i16 : WebAssembly::PCALL_INDIRECT_v8i16; in selectCall()
783 IsDirect ? WebAssembly::CALL_v4i32 : WebAssembly::PCALL_INDIRECT_v4i32; in selectCall()
[all …]
/external/v8/src/ic/
Daccessor-assembler.h339 if (IsDirect()) { in ReturnCallRuntime()
348 if (IsDirect()) { in ReturnCallStub()
358 if (IsDirect()) { in ReturnCallStub()
367 if (IsDirect()) { in Return()
374 bool IsDirect() const { return !indirect_return_handler_; } in IsDirect() function
/external/grpc-grpc/src/objective-c/GRPCClient/private/
DGRPCReachabilityFlagNames.xmacro.h54 GRPC_XMACRO_ITEM(isDirect, IsDirect)
/external/llvm/lib/Target/WebAssembly/
DWebAssemblyFastISel.cpp636 bool IsDirect = Func != nullptr; in selectCall() local
640 Opc = IsDirect ? WebAssembly::CALL_VOID : WebAssembly::CALL_INDIRECT_VOID; in selectCall()
648 Opc = IsDirect ? WebAssembly::CALL_I32 : WebAssembly::CALL_INDIRECT_I32; in selectCall()
652 Opc = IsDirect ? WebAssembly::CALL_I64 : WebAssembly::CALL_INDIRECT_I64; in selectCall()
656 Opc = IsDirect ? WebAssembly::CALL_F32 : WebAssembly::CALL_INDIRECT_F32; in selectCall()
660 Opc = IsDirect ? WebAssembly::CALL_F64 : WebAssembly::CALL_INDIRECT_F64; in selectCall()
703 if (IsDirect) in selectCall()
/external/mesa3d/src/mesa/drivers/x11/
Dglxapi.h72 Bool (*IsDirect)(Display *dpy, GLXContext ctx); member
Dglxapi.c256 return t->IsDirect(dpy, ctx); in glXIsDirect()
Dfakeglx.c2869 glx.IsDirect = Fake_glXIsDirect; in _mesa_GetGLXDispatchTable()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARC/
DARCISelLowering.cpp324 bool IsDirect = true; in LowerCall() local
330 IsDirect = false; in LowerCall()
354 Chain = DAG.getNode(IsDirect ? ARCISD::BL : ARCISD::JL, dl, NodeTys, Ops); in LowerCall()