Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for r30 (0.09 sec)

  1. src/runtime/mkpreempt.go

    	p(mov + " (R3), R30")              // load PC to REGTMP
    	p(add+" $%d, R3", l.stack+regsize) // pop frame (including the space pushed by sigctxt.pushCall)
    	p("JMP (R30)")
    }
    
    func genPPC64() {
    	// Add integer registers R3-R29
    	// R0 (zero), R1 (SP), R30 (g) are special and not saved here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/opGen.go

    				{1, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    			outputs: []outputInfo{
    				{1, 0},
    				{0, 670826495}, // R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15 R16 R17 R19 R20 R21 R22 R23 R24 R25 R26 R30
    			},
    		},
    	},
    	{
    		name:   "ADCzerocarry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  4. src/runtime/asm_loong64.s

    // of constant-sized-frame functions to encode a few bits of size in the pc.
    // Caution: ugly multiline assembly macros in your future!
    
    #define DISPATCH(NAME,MAXSIZE)		\
    	MOVV	$MAXSIZE, R30;		\
    	SGTU	R19, R30, R30;		\
    	BNE	R30, 3(PC);			\
    	MOVV	$NAME(SB), R4;	\
    	JMP	(R4)
    // Note: can't just "BR NAME(SB)" - bad inlining results.
    
    TEXT ·reflectcall(SB), NOSPLIT|NOFRAME, $0-48
    	MOVWU frameSize+32(FP), R19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/runtime/cgo/abi_loong64.h

    	MOVV	R24, ((offset)+(2*8))(R3)	\
    	MOVV	R25, ((offset)+(3*8))(R3)	\
    	MOVV	R26, ((offset)+(4*8))(R3)	\
    	MOVV	R27, ((offset)+(5*8))(R3)	\
    	MOVV	R28, ((offset)+(6*8))(R3)	\
    	MOVV	R29, ((offset)+(7*8))(R3)	\
    	MOVV	R30, ((offset)+(8*8))(R3)	\
    	MOVV	R31, ((offset)+(9*8))(R3)
    
    #define SAVE_F24_TO_F31(offset)	\
    	MOVD	F24, ((offset)+(0*8))(R3)	\
    	MOVD	F25, ((offset)+(1*8))(R3)	\
    	MOVD	F26, ((offset)+(2*8))(R3)	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 02:34:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_linux_ppc64x.S

    	stdu	%r1, -FRAME_SIZE(%r1)
    	std	%r2, 24(%r1)
    
    	FOR_EACH_GPR std
    	FOR_EACH_FPR stfd
    	FOR_EACH_VR stvx
    
    	// Set up Go ABI constant registers
    	li	%r0, 0
    
    	// Restore g pointer (r30 in Go ABI, which may have been clobbered by C)
    	mr	%r30, %r4
    
    	// Call fn
    	mr	%r12, %r3
    	mtctr	%r3
    	bctrl
    
    	FOR_EACH_GPR ld
    	FOR_EACH_FPR lfd
    	FOR_EACH_VR lvx
    
    	ld	%r2, 24(%r1)
    	addi	%r1, %r1, FRAME_SIZE
    	ld	%r0, 16(%r1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 18:03:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/runtime/signal_loong64.go

    	print("r25  ", hex(c.r25()), "\n")
    	print("r26  ", hex(c.r26()), "\t")
    	print("r27  ", hex(c.r27()), "\n")
    	print("r28  ", hex(c.r28()), "\t")
    	print("r29  ", hex(c.r29()), "\n")
    	print("r30  ", hex(c.r30()), "\t")
    	print("r31  ", hex(c.r31()), "\n")
    	print("pc   ", hex(c.pc()), "\t")
    	print("link ", hex(c.link()), "\n")
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 06:51:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. src/runtime/signal_mipsx.go

    	print("r25  ", hex(c.r25()), "\n")
    	print("r26  ", hex(c.r26()), "\t")
    	print("r27  ", hex(c.r27()), "\n")
    	print("r28  ", hex(c.r28()), "\t")
    	print("r29  ", hex(c.r29()), "\n")
    	print("r30  ", hex(c.r30()), "\t")
    	print("r31  ", hex(c.r31()), "\n")
    	print("pc   ", hex(c.pc()), "\t")
    	print("link ", hex(c.link()), "\n")
    	print("lo   ", hex(c.lo()), "\t")
    	print("hi   ", hex(c.hi()), "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. src/runtime/signal_mips64x.go

    	print("r25  ", hex(c.r25()), "\n")
    	print("r26  ", hex(c.r26()), "\t")
    	print("r27  ", hex(c.r27()), "\n")
    	print("r28  ", hex(c.r28()), "\t")
    	print("r29  ", hex(c.r29()), "\n")
    	print("r30  ", hex(c.r30()), "\t")
    	print("r31  ", hex(c.r31()), "\n")
    	print("pc   ", hex(c.pc()), "\t")
    	print("link ", hex(c.link()), "\n")
    	print("lo   ", hex(c.lo()), "\t")
    	print("hi   ", hex(c.hi()), "\n")
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r30/CustomModelBuildingAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r30;
    
    import org.gradle.integtests.tooling.r16.CustomModel;
    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    
    public class CustomModelBuildingAction implements BuildAction<CustomModel> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top