Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for RLDICR (0.37 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "RLDICLCC", argLength: 1, reg: gp11, asm: "RLDICLCC", aux: "Int64", typ: "(Int, Flags)"}, // Auxint is encoded similarly to RLWINM, but only MB and SH are valid. ME is always 63. Sets CC.
    		{name: "RLDICR", argLength: 1, reg: gp11, asm: "RLDICR", aux: "Int64"},                          // Likewise, but only ME and SH are valid. MB is always 0.
    
    		{name: "CNTLZD", argLength: 1, reg: gp11, asm: "CNTLZD"},                          // count leading zeros
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    		return OPVCC(30, 9, 0, 1)
    
    	case ARLDICL:
    		return OPVCC(30, 0, 0, 0)
    	case ARLDICLCC:
    		return OPVCC(30, 0, 0, 1)
    	case ARLDICR:
    		return OPMD(30, 1, 0) // rldicr
    	case ARLDICRCC:
    		return OPMD(30, 1, 1) // rldicr.
    
    	case ARLDIC:
    		return OPMD(30, 2, 0) // rldic
    	case ARLDICCC:
    		return OPMD(30, 2, 1) // rldic.
    
    	case ASYSCALL:
    		return OPVCC(17, 1, 0, 0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	RLDCR:          "rldcr",
    	RLDCRCC:        "rldcr.",
    	RLDIC:          "rldic",
    	RLDICCC:        "rldic.",
    	RLDICL:         "rldicl",
    	RLDICLCC:       "rldicl.",
    	RLDICR:         "rldicr",
    	RLDICRCC:       "rldicr.",
    	RLDIMI:         "rldimi",
    	RLDIMICC:       "rldimi.",
    	SC:             "sc",
    	SLBIA:          "slbia",
    	SLBIE:          "slbie",
    	SLD:            "sld",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	RLDCR $0, R4, $-16, R6          // 788606f2
    	RLDCRCC $0, R4, $-16, R6        // 788606f3
    	RLDICL $0, R4, $15, R6          // 788603c0
    	RLDICLCC $0, R4, $15, R6        // 788603c1
    	RLDICR $0, R4, $15, R6          // 788603c4
    	RLDICRCC $0, R4, $15, R6        // 788603c5
    	RLDIC $0, R4, $15, R6           // 788603c8
    	RLDICCC $0, R4, $15, R6         // 788603c9
    	CLRLSLWI $16, R5, $8, R4        // 54a4422e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/opGen.go

    			},
    			outputs: []outputInfo{
    				{0, 1073733624}, // R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R14 R15 R16 R17 R18 R19 R20 R21 R22 R23 R24 R25 R26 R27 R28 R29
    			},
    		},
    	},
    	{
    		name:    "RLDICR",
    		auxType: auxInt64,
    		argLen:  1,
    		asm:     ppc64.ARLDICR,
    		reg: regInfo{
    			inputs: []inputInfo{
    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