Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for I64Eq (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Leq(64|32)F ...) => (F(64|32)Le ...)
    
    (Eq64  ...) => (I64Eq ...)
    (Eq32  x y) => (I64Eq (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Eq16  x y) => (I64Eq (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Eq8   x y) => (I64Eq (ZeroExt8to64  x) (ZeroExt8to64  y))
    (EqB   ...) => (I64Eq ...)
    (EqPtr ...) => (I64Eq ...)
    (Eq(64|32)F ...) => (F(64|32)Eq ...)
    
    (Neq64  ...) => (I64Ne ...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/runtime/asm_wasm.s

    	MOVD CTXT, g_sched+gobuf_ctxt(g)
    
    	// Cannot grow scheduler stack (m->g0).
    	Get g
    	Get R2
    	I64Eq
    	If
    		CALLNORESUME runtime·badmorestackg0(SB)
    		CALLNORESUME runtime·abort(SB)
    	End
    
    	// Cannot grow signal stack (m->gsignal).
    	Get g
    	I64Load m_gsignal(R1)
    	I64Eq
    	If
    		CALLNORESUME runtime·badmorestackgsignal(SB)
    		CALLNORESUME runtime·abort(SB)
    	End
    
    	// Called from f.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "F64Const", reg: fp64_01, aux: "Float64", rematerializeable: true, typ: "Float64"}, // returns the constant float aux
    
    		{name: "I64Eqz", asm: "I64Eqz", argLength: 1, reg: gp11, typ: "Bool"}, // arg0 == 0
    		{name: "I64Eq", asm: "I64Eq", argLength: 2, reg: gp21, typ: "Bool"},   // arg0 == arg1
    		{name: "I64Ne", asm: "I64Ne", argLength: 2, reg: gp21, typ: "Bool"},   // arg0 != arg1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/wasmobj.go

    		//
    		// MOVD g_panic(g), R0
    		// Get R0
    		// I64Eqz
    		// Not
    		// If
    		//   Get SP
    		//   I64ExtendI32U
    		//   I64Const $framesize+8
    		//   I64Add
    		//   I64Load panic_argp(R0)
    		//   I64Eq
    		//   If
    		//     MOVD SP, panic_argp(R0)
    		//   End
    		// End
    
    		gpanic := obj.Addr{
    			Type:   obj.TYPE_MEM,
    			Reg:    REGG,
    			Offset: 4 * 8, // g_panic
    		}
    
    		panicargp := obj.Addr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top