Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for arm64 (0.17 sec)

  1. src/cmd/asm/internal/arch/arm64.go

    		arm64.ACMNW, arm64.ACMPW, arm64.ATSTW,
    		arm64.AFCMPS, arm64.AFCMPD,
    		arm64.AFCMPES, arm64.AFCMPED:
    		return true
    	}
    	return false
    }
    
    // IsARM64STLXR reports whether the op (as defined by an arm64.A*
    // constant) is one of the STLXR-like instructions that require special
    // handling.
    func IsARM64STLXR(op obj.As) bool {
    	switch op {
    	case arm64.ASTLXRB, arm64.ASTLXRH, arm64.ASTLXRW, arm64.ASTLXR,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Sep 29 09:04:58 GMT 2022
    - 10.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    eric fang <******@****.***> 1701834073 +0000
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg log/syslog (netbsd-arm64), const LOG_CRIT Priority
    pkg log/syslog (netbsd-arm64), const LOG_CRON = 72
    pkg log/syslog (netbsd-arm64), const LOG_CRON Priority
    pkg log/syslog (netbsd-arm64), const LOG_DAEMON = 24
    pkg log/syslog (netbsd-arm64), const LOG_DAEMON Priority
    pkg log/syslog (netbsd-arm64), const LOG_DEBUG = 7
    pkg log/syslog (netbsd-arm64), const LOG_DEBUG Priority
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg runtime (freebsd-arm64), const GOOS = "freebsd"
    pkg runtime (freebsd-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (freebsd-arm64-cgo), const GOOS = "freebsd"
    pkg strconv (freebsd-arm64), const IntSize = 64
    pkg strconv (freebsd-arm64-cgo), const IntSize = 64
    pkg syscall (freebsd-arm64), const AF_APPLETALK = 16
    pkg syscall (freebsd-arm64), const AF_APPLETALK ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg runtime (darwin-arm64), const GOOS = "darwin"
    pkg runtime (darwin-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (darwin-arm64-cgo), const GOOS = "darwin"
    pkg strconv (darwin-arm64), const IntSize = 64
    pkg strconv (darwin-arm64-cgo), const IntSize = 64
    pkg syscall (darwin-arm64), const AF_APPLETALK = 16
    pkg syscall (darwin-arm64), const AF_APPLETALK ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/arch.go

    	register[obj.Rconv(arm64.REGSP)] = int16(arm64.REGSP)
    	for i := arm64.REG_R0; i <= arm64.REG_R31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	// Rename R18 to R18_PLATFORM to avoid accidental use.
    	register["R18_PLATFORM"] = register["R18"]
    	delete(register, "R18")
    	for i := arm64.REG_F0; i <= arm64.REG_F31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Mar 21 06:51:28 GMT 2023
    - 21.3K bytes
    - Viewed (0)
  7. misc/ios/README

    	export GOIOS_TEAM_ID=ZZZZZZZZ
    
    If you have multiple devices connected, specify the device UDID with the GOIOS_DEVICE_ID
    variable. Use `idevice_id -l` to list all available UDIDs. Then, setting GOARCH to arm64
    will select the device:
    
    	GOOS=ios GOARCH=arm64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
    
    Note that the go_darwin_$GOARCH_exec wrapper uninstalls any existing app identified by
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Dec 29 21:49:26 GMT 2020
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/parse.go

    	// Symbol: sym±offset(SB)
    	tok := p.next()
    	name := tok.String()
    	if tok.ScanToken == scanner.Ident && !p.atStartOfRegister(name) {
    		switch p.arch.Family {
    		case sys.ARM64:
    			// arm64 special operands.
    			if opd := arch.GetARM64SpecialOperand(name); opd != arm64.SPOP_END {
    				a.Type = obj.TYPE_SPECIAL
    				a.Offset = int64(opd)
    				break
    			}
    			fallthrough
    		default:
    			// We have a symbol. Parse $sym±offset(symkind)
    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)
  9. api/go1.9.txt

    pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
    pkg math/bits (netbsd-arm), const UintSize = 32
    pkg math/bits (netbsd-arm-cgo), const UintSize = 32
    pkg math/bits (netbsd-arm64), const UintSize = 64
    pkg math/bits (netbsd-arm64-cgo), const UintSize = 64
    pkg math/bits (openbsd-386), const UintSize = 32
    pkg math/bits (openbsd-386-cgo), const UintSize = 32
    pkg math/bits (openbsd-amd64), const UintSize = 64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  10. api/go1.17.txt

    pkg syscall (netbsd-arm64), const SYS_WAIT6 = 481
    pkg syscall (netbsd-arm64), const SYS_WAIT6 ideal-int
    pkg syscall (netbsd-arm64), const WEXITED = 32
    pkg syscall (netbsd-arm64), const WEXITED ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 = 481
    pkg syscall (netbsd-arm64-cgo), const SYS_WAIT6 ideal-int
    pkg syscall (netbsd-arm64-cgo), const WEXITED = 32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top