Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,409 for Malley (0.23 sec)

  1. src/runtime/race_s390x.s

    // Arguments are passed in R2...R6, the rest is on stack.
    // Callee-saved registers are: R6...R13, R15.
    // Temporary registers are: R0...R5, R14.
    
    // When calling racecalladdr, R1 is the call target address.
    
    // The race ctx, ThreadState *thr below, is passed in R2 and loaded in racecalladdr.
    
    // func runtime·raceread(addr uintptr)
    // Called from instrumented code.
    TEXT	runtime·raceread(SB), NOSPLIT, $0-8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_arm64.s

    #define TEB_error 0x68
    #define TEB_TlsSlots 0x1480
    #define TEB_ArbitraryPtr 0x28
    
    // Note: R0-R7 are args, R8 is indirect return value address,
    // R9-R15 are caller-save, R19-R29 are callee-save.
    //
    // load_g and save_g (in tls_arm64.s) clobber R27 (REGTMP) and R0.
    
    TEXT runtime·asmstdcall_trampoline<ABIInternal>(SB),NOSPLIT,$0
    	B	runtime·asmstdcall(SB)
    
    // void runtime·asmstdcall(void *c);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_loong64.S

    .file "gcc_loong64.S"
    
    /*
     * void crosscall1(void (*fn)(void), void (*setg_gcc)(void *g), void *g)
     *
     * Calling into the gc tool chain, where all registers are caller save.
     * Called from standard lp64d ABI, where $r1, $r3, $r23-$r30, and $f24-$f31
     * are callee-save, so they must be saved explicitly, along with $r1 (LR).
     */
    .globl crosscall1
    crosscall1:
    	addi.d	$r3, $r3, -160
    	st.d	$r1, $r3, 0
    	st.d	$r23, $r3, 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 18:57:04 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    //
    // The call tree is as follows, starting from TestPPC64Stubs (A C function):
    // TestPPC64Stubs (compiled PIC by default by Go)
    //   notoc_func          [called TOC -> NOTOC (but R2 is preserved)]
    //     toc_func          [called NOTOC -> TOC]
    //       notoc_nor2_func [called TOC -> NOTOC]
    //       random          [dynamic TOC call]
    //     random		 [dynamic NOTOC call]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_386.s

    	JE	2(PC)
    	MOVL	g(AX), AX
    	MOVL	AX, ret+0(FP)
    	RET
    
    // Called by Windows as a Vectored Exception Handler (VEH).
    // AX is pointer to struct containing
    // exception record and context pointers.
    // CX is the kind of sigtramp function.
    // Return value of sigtrampgo is stored in AX.
    TEXT sigtramp<>(SB),NOSPLIT,$0-0
    	SUBL	$40, SP
    
    	// save callee-saved registers
    	MOVL	BX, 28(SP)
    	MOVL	BP, 16(SP)
    	MOVL	SI, 20(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_arm.s

    // It just does some low-level setup and then calls mstart.
    // Note: called with the C calling convention.
    TEXT runtime·mstart_stub(SB),NOSPLIT,$0
    	// R0 points to the m.
    	// We are already on m's g0 stack.
    
    	// Save callee-save registers.
    	MOVM.DB.W [R4-R11], (R13)
    
    	MOVW	m_g0(R0), g
    	BL	runtime·save_g(SB)
    
    	BL	runtime·mstart(SB)
    
    	// Restore callee-save registers.
    	MOVM.IA.W (R13), [R4-R11]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_riscv64.s

    // It just does some low-level setup and then calls mstart.
    // Note: called with the C calling convention.
    TEXT runtime·mstart_stub(SB),NOSPLIT,$200
    	// X10 points to the m.
    	// We are already on m's g0 stack.
    
    	// Save callee-save registers (X8, X9, X18..X27, F8, F9, F18..F27)
    	MOV	X8, (1*8)(X2)
    	MOV	X9, (2*8)(X2)
    	MOV	X18, (3*8)(X2)
    	MOV	X19, (4*8)(X2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	MOVD	0(R12), R3	// code pointer
    	BL	(R3)
    
    	// should never return
    	BL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R3: framesize, R4: argsize, R5: LR
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      // and iteratively descending through called ops.
      SmallPtrSet<Operation*, 16> reachable_functions;
      while (!function_worklist.empty()) {
        func::FuncOp caller = function_worklist.front();
        function_worklist.pop();
        if (reachable_functions.insert(caller).second) {
          for (auto callee : caller_callee_map[caller]) {
            function_worklist.push(callee);
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/dwarfgen/dwinl.go

    	}
    
    	// Callee ranges contained in caller ranges?
    	c, m := rangesContainsAll(parentRanges, calleeRanges)
    	if !c {
    		base.Fatalf("** malformed inlined routine range in %s: caller %s callee %s II=%d %s\n", funcName, caller, callee, idx, m)
    	}
    
    	// Now visit kids
    	for _, k := range ic.Children {
    		checkInlCall(funcName, inlCalls, funcSize, k, idx)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top