Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for R30 (0.21 sec)

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

    	CCMNW EQ, R20, R6, $6                      // 8602463a
    	CCMN LE, R30, R12, $6                      // c6d34cba
    	CCMPW VS, R29, $15, $7                     // a76b4f7a
    	CCMP LE, R7, $19, $3                       // e3d853fa
    	CCMPW HS, R19, R6, $0                      // 6022467a
    	CCMP LT, R30, R6, $7                       // c7b346fa
    	CCMN  MI, ZR, R1, $4                       // e44341ba
    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)
  2. src/cmd/asm/internal/arch/arch.go

    	register["MSR"] = ppc64.REG_MSR
    	// Pseudo-registers.
    	register["SB"] = RSB
    	register["FP"] = RFP
    	register["PC"] = RPC
    	// Avoid unintentionally clobbering g using R30.
    	delete(register, "R30")
    	register["g"] = ppc64.REG_R30
    	registerPrefix := map[string]bool{
    		"CR":  true,
    		"F":   true,
    		"R":   true,
    		"SPR": true,
    	}
    
    	instructions := make(map[string]obj.As)
    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)
  3. src/cmd/asm/internal/asm/testdata/arm64.s

    	VST1.P	[V4.S4, V5.S4], 32(R1)                          // 24a89f4c
    	VST1	[V0.S4, V1.S4], (R0)                            // 00a8004c
    	VLD1	(R30), [V15.S2, V16.S2]                         // cfab400c
    	VLD1.P	24(R30), [V3.S2,V4.S2,V5.S2]                    // c36bdf0c
    	VLD2	(R29), [V23.H8, V24.H8]                         // b787404c
    	VLD2.P	16(R0), [V18.B8, V19.B8]                        // 1280df0c
    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)
  4. src/cmd/asm/internal/asm/operand_test.go

    	{"$argframe+0(FP)", "$argframe(FP)"},
    	{"$asmcgocall<>(SB)", "$asmcgocall<>(SB)"},
    	{"EQ", "EQ"},
    	{"F29", "F29"},
    	{"F3", "F3"},
    	{"F30", "F30"},
    	{"g", "g"},
    	{"LR", "R30"},
    	{"(LR)", "(R30)"},
    	{"R0", "R0"},
    	{"R10", "R10"},
    	{"R11", "R11"},
    	{"R18_PLATFORM", "R18"},
    	{"$4503601774854144.0", "$(4503601774854144.0)"},
    	{"$runtime·badsystemstack(SB)", "$runtime.badsystemstack(SB)"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  5. doc/asm.html

    To prevent accidental misuse, the register is named <code>R18_PLATFORM</code>.
    <code>R27</code> and <code>R28</code> are reserved by the compiler and linker.
    <code>R29</code> is the frame pointer.
    <code>R30</code> is the link register.
    </p>
    
    <p>
    Instruction modifiers are appended to the instruction following a period.
    The only modifiers are <code>P</code> (postincrement) and <code>W</code>
    (preincrement):
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
Back to top