Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/asm/internal/asm/parse.go

    	case lex.LSH:
    		op = 0
    	case lex.RSH:
    		op = 1
    	case lex.ARR:
    		op = 2
    	case lex.ROT:
    		// following instructions on ARM64 support rotate right
    		// AND, ANDS, TST, BIC, BICS, EON, EOR, ORR, MVN, ORN
    		op = 3
    	}
    	tok := p.next()
    	str := tok.String()
    	var count int16
    	switch tok.ScanToken {
    	case scanner.Ident:
    		if p.arch.Family == sys.ARM64 {
    			p.errorf("rhs of shift must be integer: %s", str)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/riscv64.s

    	MAXU	X28, X29, X30				// 33ffce0b
    	MAXU	X28, X29				// b3fece0b
    	MIN	X29, X30, X5				// b342df0b
    	MIN	X29, X30				// 334fdf0b
    	MINU	X30, X5, X6				// 33d3e20b
    	MINU	X30, X5					// b3d2e20b
    	ORN	X6, X7, X8				// 33e46340
    	ORN	X6, X7					// b3e36340
    	SEXTB	X16, X17				// 93184860
    	SEXTH	X17, X18				// 13995860
    	XNOR	X18, X19, X20				// 33ca2941
    	XNOR	X18, X19				// b3c92941
    	ZEXTH	X19, X20				// 3bca0908
    
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	NGCSW R10, R5                              // e5030a7a
    	NGCS R24, R16                              // f00318fa
    	NOOP                                        // 1f2003d5
    	ORNW R4@>11, R16, R3                       // 032ee42a
    	ORN R22@>19, R3, R3                        // 634cf6aa
    	ORRW $4294443071, R15, R24                 // f8490d32
    	ORR $-3458764513820540929, R12, R22        // 96f542b2
    	ORRW R13<<4, R8, R26                       // 1a110d2a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
Back to top