Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for runtime_arg0 (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

                return invocation.callOriginal();
            }
    
            private Optional<Process> tryCallExec(Object runtimeArg, Object commandArg, @Nullable Object envpArg, @Nullable Object fileArg, String consumer) throws Throwable {
                if (runtimeArg instanceof Runtime) {
                    Runtime runtime = (Runtime) runtimeArg;
    
                    if (fileArg == null || fileArg instanceof File) {
                        File file = (File) fileArg;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/runtime/runtime.go

    //go:linkname syscall_Getpagesize syscall.Getpagesize
    func syscall_Getpagesize() int { return int(physPageSize) }
    
    //go:linkname os_runtime_args os.runtime_args
    func os_runtime_args() []string { return append([]string{}, argslice...) }
    
    //go:linkname syscall_Exit syscall.Exit
    //go:nosplit
    func syscall_Exit(code int) {
    	exit(int32(code))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/runtime/asm_loong64.s

    	MOVV	$runtime·m0(SB), R19
    
    	// save m->g0 = g0
    	MOVV	g, m_g0(R19)
    	// save m0 to g0->m
    	MOVV	R19, g_m(g)
    
    	JAL	runtime·check(SB)
    
    	// args are already prepared
    	JAL	runtime·args(SB)
    	JAL	runtime·osinit(SB)
    	JAL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVV	$runtime·mainPC(SB), R19		// entry
    	ADDV	$-16, R3
    	MOVV	R19, 8(R3)
    	MOVV	R0, 0(R3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  4. src/runtime/asm_mipsx.s

    	MOVW	$runtime·m0(SB), R1
    
    	// save m->g0 = g0
    	MOVW	g, m_g0(R1)
    	// save m0 to g0->m
    	MOVW	R1, g_m(g)
    
    	JAL	runtime·check(SB)
    
    	// args are already prepared
    	JAL	runtime·args(SB)
    	JAL	runtime·osinit(SB)
    	JAL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVW	$runtime·mainPC(SB), R1	// entry
    	ADDU	$-8, R29
    	MOVW	R1, 4(R29)
    	MOVW	R0, 0(R29)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 11:46:29 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	MOVD	$runtime·m0(SB), R3
    
    	// save m->g0 = g0
    	MOVD	g, m_g0(R3)
    	// save m0 to g0->m
    	MOVD	R3, g_m(g)
    
    	BL	runtime·check(SB)
    
    	// args are already prepared
    	BL	runtime·args(SB)
    	BL	runtime·osinit(SB)
    	BL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVD	$runtime·mainPC(SB), R3		// entry
    	MOVDU	R3, -8(R1)
    	MOVDU	R0, -8(R1)
    	MOVDU	R0, -8(R1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/runtime/asm_arm64.s

    	MOVD	R0, g_m(g)
    
    	BL	runtime·check(SB)
    
    #ifdef GOOS_windows
    	BL	runtime·wintls(SB)
    #endif
    
    	MOVW	8(RSP), R0	// copy argc
    	MOVW	R0, -8(RSP)
    	MOVD	16(RSP), R0		// copy argv
    	MOVD	R0, 0(RSP)
    	BL	runtime·args(SB)
    	BL	runtime·osinit(SB)
    	BL	runtime·schedinit(SB)
    
    	// create a new goroutine to start program
    	MOVD	$runtime·mainPC(SB), R0		// entry
    	SUB	$16, RSP
    	MOVD	R0, 8(RSP) // arg
    	MOVD	$0, 0(RSP) // dummy LR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top