Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for I32Store (0.14 sec)

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

    		{name: "F64Load", asm: "F64Load", argLength: 2, reg: fp64load, aux: "Int64", typ: "Float64"}, // read 64-bit float from address arg0+aux, arg1=mem
    		{name: "F32Store", asm: "F32Store", argLength: 3, reg: fp32store, aux: "Int64", typ: "Mem"},  // store 32-bit float arg1 at address arg0+aux, arg2=mem, returns mem
    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

    (Load <t> ptr mem) && t.Size() == 1 &&  t.IsSigned() => (I64Load8S ptr mem)
    
    // Lowering stores
    (Store {t} ptr val mem) && is64BitFloat(t) => (F64Store ptr val mem)
    (Store {t} ptr val mem) && is32BitFloat(t) => (F32Store ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 8 => (I64Store ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 4 => (I64Store32 ptr val mem)
    (Store {t} ptr val mem) && t.Size() == 2 => (I64Store16 ptr val mem)
    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