Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SMSUBL (0.06 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    	case STRH, STURH:
    		op = "MOVH" + suffix
    		args[0], args[1] = args[1], args[0]
    
    	case TBNZ, TBZ:
    		args[0], args[1], args[2] = args[2], args[0], args[1]
    
    	case MADD, MSUB, SMADDL, SMSUBL, UMADDL, UMSUBL:
    		if r, ok := inst.Args[0].(Reg); ok {
    			rno := uint16(r)
    			if rno <= uint16(WZR) {
    				op += "W"
    			}
    		}
    		args[2], args[3] = args[3], args[2]
    	case STLR:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	SDIV R13, R21, R9                          // a90ecd9a
    	SEV                                        // 9f2003d5
    	SEVL                                       // bf2003d5
    	SMADDL R3, R7, R11, R9                     // 691d239b
    	SMSUBL R5, R19, R11, R29                   // 7dcd259b
    	SMNEGL R26, R3, R15                        // 6ffc3a9b
    	SMULH R17, R21, R21                        // b57e519b
    	SMULL R0, R5, R0                           // a07c209b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
Back to top