Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for F64PromoteF32 (0.11 sec)

  1. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "F32DemoteF64", asm: "F32DemoteF64", argLength: 1, reg: regInfo{inputs: []regMask{fp64}, outputs: []regMask{fp32}}, typ: "Float32"},
    		{name: "F64PromoteF32", asm: "F64PromoteF32", argLength: 1, reg: regInfo{inputs: []regMask{fp32}, outputs: []regMask{fp64}}, typ: "Float64"},
    
    		{name: "I64Extend8S", asm: "I64Extend8S", argLength: 1, reg: gp11, typ: "Int64"},   // sign-extend arg0 from 8 to 64 bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Cvt32Fto32U ...) => (I64TruncSatF32U ...)
    (Cvt32Fto64U ...) => (I64TruncSatF32U ...)
    (Cvt64Fto32U ...) => (I64TruncSatF64U ...)
    (Cvt64Fto64U ...) => (I64TruncSatF64U ...)
    
    (Cvt32Fto64F ...) => (F64PromoteF32 ...)
    (Cvt64Fto32F ...) => (F32DemoteF64 ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    (Round32F ...) => (Copy ...)
    (Round64F ...) => (Copy ...)
    
    // Lowering shifts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top