Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CMPEQB (0.15 sec)

  1. src/cmd/internal/obj/ppc64/anames.go

    	"AND",
    	"ANDCC",
    	"ANDN",
    	"ANDNCC",
    	"ANDISCC",
    	"BC",
    	"BCL",
    	"BEQ",
    	"BGE",
    	"BGT",
    	"BLE",
    	"BLT",
    	"BNE",
    	"BVC",
    	"BVS",
    	"BDNZ",
    	"BDZ",
    	"CMP",
    	"CMPU",
    	"CMPEQB",
    	"CNTLZW",
    	"CNTLZWCC",
    	"CRAND",
    	"CRANDN",
    	"CREQV",
    	"CRNAND",
    	"CRNOR",
    	"CROR",
    	"CRORN",
    	"CRXOR",
    	"DIVW",
    	"DIVWCC",
    	"DIVWVCC",
    	"DIVWV",
    	"DIVWU",
    	"DIVWUCC",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/ppc64.s

    	CMPW R3, $-32768, CR2           // CMPW R3,CR2,$-32768  // 2d038000
    	CMPWU R3, $0, CR3               // CMPWU R3,CR3,$0      // 29830000
    	CMPWU R3, $0x8008, CR3          // CMPWU R3,CR3,$32776  // 29838008
    
    	CMPEQB R3,R4,CR6                // 7f0321c0
    	CMPB R3,R4,R4                   // 7c6423f8
    
    	ADD R3, R4                      // 7c841a14
    	ADD R3, R4, R5                  // 7ca41a14
    	ADDC R3, R4                     // 7c841814
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    		if bits.OnesCount32(v) == 1 {
    			v |= 1 << 8
    		}
    
    		o1 = AOP_RRR(OP_MTCRF, uint32(p.From.Reg), 0, 0) | uint32(v)<<12
    
    	case 70: /* cmp* r,r,cr or cmp*i r,i,cr or fcmp f,f,cr or cmpeqb r,r */
    		r := uint32(p.Reg&7) << 2
    		if p.To.Type == obj.TYPE_CONST {
    			o1 = AOP_IRR(c.opirr(p.As), r, uint32(p.From.Reg), uint32(uint16(p.To.Offset)))
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top