Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CMOVWHSconst (0.33 sec)

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

    (Lsh32x32 x y) => (CMOVWHSconst (SLL <x.Type> x y) (CMPconst [256] y) [0])
    (Lsh32x16 x y) => (CMOVWHSconst (SLL <x.Type> x (ZeroExt16to32 y)) (CMPconst [256] (ZeroExt16to32 y)) [0])
    (Lsh32x8  x y) => (SLL x (ZeroExt8to32 y))
    
    (Lsh16x32 x y) => (CMOVWHSconst (SLL <x.Type> x y) (CMPconst [256] y) [0])
    (Lsh16x16 x y) => (CMOVWHSconst (SLL <x.Type> x (ZeroExt16to32 y)) (CMPconst [256] (ZeroExt16to32 y)) [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM.go

    		return true
    	}
    	// match: (CMOVWHSconst x (FlagConstant [fc]) [c])
    	// cond: fc.ult()
    	// result: x
    	for {
    		x := v_0
    		if v_1.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_1.AuxInt)
    		if !(fc.ult()) {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (CMOVWHSconst x (InvertFlags flags) [c])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "MOVFD", argLength: 1, reg: fp11, asm: "MOVFD"},  // float32 -> float64
    		{name: "MOVDF", argLength: 1, reg: fp11, asm: "MOVDF"},  // float64 -> float32
    
    		// conditional instructions, for lowering shifts
    		{name: "CMOVWHSconst", argLength: 2, reg: gp1flags1, asm: "MOVW", aux: "Int32", resultInArg0: true}, // replace arg0 w/ const if flags indicates HS, arg1=flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 4294901760}, // F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15
    			},
    		},
    	},
    	{
    		name:         "CMOVWHSconst",
    		auxType:      auxInt32,
    		argLen:       2,
    		resultInArg0: true,
    		asm:          arm.AMOVW,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    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