Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ADRP (0.01 sec)

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

    	"CBNZ":  true,
    	"CBNZW": true,
    	"JMP":   true,
    	"TBNZ":  true,
    	"TBZ":   true,
    
    	// ADR isn't really a jump, but it takes a PC or label reference,
    	// which needs to patched like a jump.
    	"ADR":  true,
    	"ADRP": true,
    }
    
    func jumpArm64(word string) bool {
    	return arm64Jump[word]
    }
    
    var arm64SpecialOperand map[string]arm64.SpecialOperand
    
    // ARM64SpecialOperand returns the internal representation of a special operand.
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Oct 16 00:35:29 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    next:
    	NOP
    	ADR -2(PC), R10    // 0a000010
    	ADR 2(PC), R16     // 10000010
    	ADR -26(PC), R1    // 01000010
    	ADR 12(PC), R2     // 02000010
    	ADRP -2(PC), R10   // 0a000090
    	ADRP 2(PC), R16    // 10000090
    	ADRP -26(PC), R1   // 01000090
    	ADRP 12(PC), R2    // 02000090
    
    // LDP/STP
    	LDP	(R0), (R0, R1)      // 000440a9
    	LDP	(R0), (R1, R2)      // 010840a9
    	LDP	8(R0), (R1, R2)     // 018840a9
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Mon Nov 10 17:34:13 UTC 2025
    - 96.1K bytes
    - Viewed (0)
Back to top