Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SETCS (0.04 sec)

  1. test/codegen/memops.go

    	d *= b[i+3]
    	// amd64: `DIVSS\t16\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*4\), X[0-9]+`
    	d /= b[i+4]
    	return c, d
    }
    
    func storeTest(a []bool, v int, i int) {
    	// amd64: `BTL\t\$0,`,`SETCS\t4\([A-Z]+[0-9]*\)`
    	a[4] = v&1 != 0
    	// amd64: `BTL\t\$1,`,`SETCS\t3\([A-Z]+[0-9]*\)\([A-Z]+[0-9]*\*1\)`
    	a[3+i] = v&2 != 0
    }
    
    func bitOps(p *[12]uint64) {
    	// amd64: `ORQ\t\$8, \(AX\)`
    	p[0] |= 8
    	// amd64: `ORQ\t\$1073741824, 8\(AX\)`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top