Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for r29 (0.06 sec)

  1. src/cmd/asm/internal/asm/testdata/arm64.s

    	MOVHU	(R1)(R2<<1), R5                 // 25786278
    	MOVB	(R9)(R3.UXTW), R6               // 2649a338
    	MOVB	(R10)(R6), R15                  // 4f69a638
    	MOVB	(R29)(R30<<0), R14              // ae6bbe38
    	MOVB	(R29)(R30), R14                 // ae6bbe38
    	MOVH	(R5)(R7.SXTX<<1), R19           // b3f8a778
    	MOVH	(R8)(R4<<1), R10                // 0a79a478
    	MOVW	(R9)(R8.SXTW<<2), R19           // 33d9a8b8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    	// On x86, the ABI is to save the frame pointer word at the
    	// top of the stack frame, so we have to back down over it.
    	// On arm64, the frame pointer should be at the bottom of
    	// the stack (with R29 (aka FP) = RSP), in which case we would
    	// not want to do the subtraction here. But we started out without
    	// any frame pointer, and when we wanted to add it, we didn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	"R15",
    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	// R27 = REGTMP not used in regalloc
    	"g",   // aka R28
    	"R29", // frame pointer, not used
    	"R30", // aka REGLINK
    	"SP",  // aka R31
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top