Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp745 bool IsDirect = Func != nullptr; in selectCall() local
746 if (!IsDirect && isa<ConstantExpr>(Call->getCalledValue())) in selectCall()
754 Opc = IsDirect ? WebAssembly::CALL_VOID : WebAssembly::PCALL_INDIRECT_VOID; in selectCall()
781 Opc = IsDirect ? WebAssembly::CALL_v16i8 in selectCall()
786 Opc = IsDirect ? WebAssembly::CALL_v8i16 in selectCall()
791 Opc = IsDirect ? WebAssembly::CALL_v4i32 in selectCall()
796 Opc = IsDirect ? WebAssembly::CALL_v2i64 in selectCall()
801 Opc = IsDirect ? WebAssembly::CALL_v4f32 in selectCall()
806 Opc = IsDirect ? WebAssembly::CALL_v2f64 in selectCall()
811 Opc = IsDirect ? WebAssembly::CALL_EXCEPT_REF in selectCall()
[all …]
/freebsd-12.1/contrib/llvm/lib/Target/ARC/
H A 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()