Lines Matching refs:IsDirect
745 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()
765 Opc = IsDirect ? WebAssembly::CALL_I32 : WebAssembly::PCALL_INDIRECT_I32; in selectCall()
769 Opc = IsDirect ? WebAssembly::CALL_I64 : WebAssembly::PCALL_INDIRECT_I64; in selectCall()
773 Opc = IsDirect ? WebAssembly::CALL_F32 : WebAssembly::PCALL_INDIRECT_F32; in selectCall()
777 Opc = IsDirect ? WebAssembly::CALL_F64 : WebAssembly::PCALL_INDIRECT_F64; 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()
855 if (IsDirect) in selectCall()