Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for I64LtU (0.15 sec)

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

    (Less16  x y) => (I64LtS (SignExt16to64 x) (SignExt16to64 y))
    (Less8   x y) => (I64LtS (SignExt8to64  x) (SignExt8to64  y))
    (Less64U ...) => (I64LtU ...)
    (Less32U x y) => (I64LtU (ZeroExt32to64 x) (ZeroExt32to64 y))
    (Less16U x y) => (I64LtU (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Less8U  x y) => (I64LtU (ZeroExt8to64  x) (ZeroExt8to64  y))
    (Less(64|32)F ...) => (F(64|32)Lt ...)
    
    (Leq64  ...) => (I64LeS ...)
    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. test/codegen/comparisons.go

    	}
    	return 0
    }
    
    func CmpToZeroU_ex1(a uint8, b uint16, c uint32, d uint64) int {
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < a {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < b {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < c {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if 0 < d {
    		return 1
    	}
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/WasmOps.go

    		{name: "I64Ne", asm: "I64Ne", argLength: 2, reg: gp21, typ: "Bool"},   // arg0 != arg1
    		{name: "I64LtS", asm: "I64LtS", argLength: 2, reg: gp21, typ: "Bool"}, // arg0 < arg1 (signed)
    		{name: "I64LtU", asm: "I64LtU", argLength: 2, reg: gp21, typ: "Bool"}, // arg0 < arg1 (unsigned)
    		{name: "I64GtS", asm: "I64GtS", argLength: 2, reg: gp21, typ: "Bool"}, // arg0 > arg1 (signed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.7K bytes
    - Viewed (0)
Back to top