17 references to CorInfoWasmType
ILCompiler.Compiler (4)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Target_Wasm\WasmTypes.cs (4)
48public static WasmValueType FromCorInfoType(CorInfoWasmType ty) 200public static WasmFuncType FromCorInfoSignature(CorInfoWasmType[] types) 212CorInfoWasmType.CORINFO_WASM_TYPE_VOID => new WasmResultType(Array.Empty<WasmValueType>()), 222foreach (CorInfoWasmType paramType in types.AsSpan().Slice(1))
ILCompiler.RyuJit (13)
JitInterface\CorInfoImpl.RyuJit.cs (1)
2508private CORINFO_WASM_TYPE_SYMBOL_STRUCT_* getWasmTypeSymbol(CorInfoWasmType* types, nuint typesSize)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl_generated.cs (4)
335public delegate* unmanaged<IntPtr, IntPtr*, CORINFO_CLASS_STRUCT_*, CorInfoWasmType> getWasmLowering; 387public delegate* unmanaged<IntPtr, IntPtr*, CorInfoWasmType*, nuint, CORINFO_WASM_TYPE_SYMBOL_STRUCT_*> getWasmTypeSymbol; 2285private static CorInfoWasmType _getWasmLowering(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* structHnd) 3045private static CORINFO_WASM_TYPE_SYMBOL_STRUCT_* _getWasmTypeSymbol(IntPtr thisHandle, IntPtr* ppException, CorInfoWasmType* types, nuint typesSize)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (8)
3871private CorInfoWasmType getWasmLowering(CORINFO_CLASS_STRUCT_* structHnd) 3895return CorInfoWasmType.CORINFO_WASM_TYPE_VOID; 3903return CorInfoWasmType.CORINFO_WASM_TYPE_I32; 3905return CorInfoWasmType.CORINFO_WASM_TYPE_I64; 3907return CorInfoWasmType.CORINFO_WASM_TYPE_F32; 3909return CorInfoWasmType.CORINFO_WASM_TYPE_F64; 3911return CorInfoWasmType.CORINFO_WASM_TYPE_V128; 3914return CorInfoWasmType.CORINFO_WASM_TYPE_I32; // unreachable