Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ORshiftRLreg (0.13 sec)

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

    (OR x (SLLconst [c] y)) => (ORshiftLL x y [c])
    (OR x (SRLconst [c] y)) => (ORshiftRL x y [c])
    (OR x (SRAconst [c] y)) => (ORshiftRA x y [c])
    (OR x (SLL y z)) => (ORshiftLLreg x y z)
    (OR x (SRL y z)) => (ORshiftRLreg x y z)
    (OR x (SRA y z)) => (ORshiftRAreg x y z)
    (XOR x (SLLconst [c] y)) => (XORshiftLL x y [c])
    (XOR x (SRLconst [c] y)) => (XORshiftRL x y [c])
    (XOR x (SRAconst [c] y)) => (XORshiftRA x y [c])
    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/_gen/ARMOps.go

    		{name: "ANDshiftRAreg", argLength: 3, reg: gp31, asm: "AND"}, // arg0 & (arg1>>arg2), signed shift
    		{name: "ORshiftLLreg", argLength: 3, reg: gp31, asm: "ORR"},  // arg0 | arg1<<arg2
    		{name: "ORshiftRLreg", argLength: 3, reg: gp31, asm: "ORR"},  // arg0 | arg1>>arg2, unsigned shift
    		{name: "ORshiftRAreg", argLength: 3, reg: gp31, asm: "ORR"},  // arg0 | arg1>>arg2, signed shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteARM.go

    			}
    			z := v_1.Args[1]
    			y := v_1.Args[0]
    			v.reset(OpARMORshiftLLreg)
    			v.AddArg3(x, y, z)
    			return true
    		}
    		break
    	}
    	// match: (OR x (SRL y z))
    	// result: (ORshiftRLreg x y z)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMSRL {
    				continue
    			}
    			z := v_1.Args[1]
    			y := v_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/opGen.go

    				{2, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    			outputs: []outputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    			},
    		},
    	},
    	{
    		name:   "ORshiftRLreg",
    		argLen: 3,
    		asm:    arm.AORR,
    		reg: regInfo{
    			inputs: []inputInfo{
    				{0, 21503}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R12 R14
    				{1, 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