Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RORB (0.09 sec)

  1. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	RORB $1, (BX)                           // d00b
    	RORB $1, (R11)                          // 41d00b
    	RORB $1, DL                             // d0ca
    	RORB $1, R11                            // 41d0cb
    	RORB CL, (BX)                           // d20b
    	RORB CL, (R11)                          // 41d20b
    	RORB CL, DL                             // d2ca
    	RORB CL, R11                            // 41d2cb
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 21:38:44 UTC 2021
    - 581.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ROLB x (NEGQ y))
    	// result: (RORB x y)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64NEGQ {
    			break
    		}
    		y := v_1.Args[0]
    		v.reset(OpAMD64RORB)
    		v.AddArg2(x, y)
    		return true
    	}
    	// match: (ROLB x (NEGL y))
    	// result: (RORB x y)
    	for {
    		x := v_0
    		if v_1.Op != OpAMD64NEGL {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
Back to top