Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SETEQF (0.47 sec)

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

    (NE (TESTB (SETGEF cmp) (SETGEF cmp)) yes no) => (UGE  cmp yes no)
    (NE (TESTB (SETEQF cmp) (SETEQF cmp)) yes no) => (EQF  cmp yes no)
    (NE (TESTB (SETNEF cmp) (SETNEF cmp)) yes no) => (NEF  cmp yes no)
    
    // Disabled because it interferes with the pattern match above and makes worse code.
    // (SETNEF x) => (ORQ (SETNE <typ.Int8> x) (SETNAN <typ.Int8> x))
    // (SETEQF x) => (ANDQ (SETEQ <typ.Int8> x) (SETORD <typ.Int8> x))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		// Need different opcodes for floating point conditions because
    		// any comparison involving a NaN is always FALSE and thus
    		// the patterns for inverting conditions cannot be used.
    		{name: "SETEQF", argLength: 1, reg: flagsgpax, asm: "SETEQ", clobberFlags: true}, // extract == condition from arg0
    		{name: "SETNEF", argLength: 1, reg: flagsgpax, asm: "SETNE", clobberFlags: true}, // extract != condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewrite386.go

    			v_0_1 := v_0.Args[1]
    			if v_0_1.Op != Op386SETGEF || cmp != v_0_1.Args[0] {
    				break
    			}
    			b.resetWithControl(Block386UGE, cmp)
    			return true
    		}
    		// match: (NE (TESTB (SETEQF cmp) (SETEQF cmp)) yes no)
    		// result: (EQF cmp yes no)
    		for b.Controls[0].Op == Op386TESTB {
    			v_0 := b.Controls[0]
    			_ = v_0.Args[1]
    			v_0_0 := v_0.Args[0]
    			if v_0_0.Op != Op386SETEQF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteAMD64.go

    			v_0_1 := v_0.Args[1]
    			if v_0_1.Op != OpAMD64SETGEF || cmp != v_0_1.Args[0] {
    				break
    			}
    			b.resetWithControl(BlockAMD64UGE, cmp)
    			return true
    		}
    		// match: (NE (TESTB (SETEQF cmp) (SETEQF cmp)) yes no)
    		// result: (EQF cmp yes no)
    		for b.Controls[0].Op == OpAMD64TESTB {
    			v_0 := b.Controls[0]
    			_ = v_0.Args[1]
    			v_0_0 := v_0.Args[0]
    			if v_0_0.Op != OpAMD64SETEQF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Need different opcodes for floating point conditions because
    		// any comparison involving a NaN is always FALSE and thus
    		// the patterns for inverting conditions cannot be used.
    		{name: "SETEQF", argLength: 1, reg: flagsgp, asm: "SETEQ", clobberFlags: true, needIntTemp: true}, // extract == condition from arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  6. src/cmd/compile/internal/ssa/opGen.go

    	},
    	{
    		name:   "SETO",
    		argLen: 1,
    		asm:    x86.ASETOS,
    		reg: regInfo{
    			outputs: []outputInfo{
    				{0, 239}, // AX CX DX BX BP SI DI
    			},
    		},
    	},
    	{
    		name:         "SETEQF",
    		argLen:       1,
    		clobberFlags: true,
    		asm:          x86.ASETEQ,
    		reg: regInfo{
    			clobbers: 1, // AX
    			outputs: []outputInfo{
    				{0, 238}, // CX DX BX BP SI DI
    			},
    		},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
Back to top