Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,409 for Malley (0.12 sec)

  1. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    	selectA := func(gotI int) Adder {
    		if gotI != selectI {
    			panic(fmt.Sprintf("selectA not called once per iteration; got i %d want %d", gotI, selectI))
    		}
    		selectI++
    
    		if gotI%10 == 0 {
    			return a2
    		}
    		return a1
    	}
    	oneI := 0
    	one := func(gotI int) int {
    		if gotI != oneI {
    			panic(fmt.Sprintf("one not called once per iteration; got i %d want %d", gotI, oneI))
    		}
    		oneI++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/runtime/sys_darwin_arm64.s

    // Note: called with the C calling convention.
    TEXT runtime·mstart_stub(SB),NOSPLIT,$160
    	// R0 points to the m.
    	// We are already on m's g0 stack.
    
    	// Save callee-save registers.
    	SAVE_R19_TO_R28(8)
    	SAVE_F8_TO_F15(88)
    
    	MOVD	m_g0(R0), g
    	BL	·save_g(SB)
    
    	BL	runtime·mstart(SB)
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_ppc64x.s

    #else
    // ppc64le doesn't need function descriptors
    // Save callee-save registers in the case of signal forwarding.
    // Same as on ARM64 https://golang.org/issue/31827 .
    //
    // Note, it is assumed this is always called indirectly (e.g via
    // a function pointer) as R2 may not be preserved when calling this
    // function. In those cases, the caller preserves their R2.
    TEXT runtime·sigtramp(SB),NOSPLIT|NOFRAME,$0
    #endif
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops_pass.cc

      // cluster ops.
      while (!function_worklist.empty()) {
        func::FuncOp caller = function_worklist.front();
        function_worklist.pop();
        for (auto callee : caller_callee_map[caller]) {
          if (reachable_functions.insert(callee).second)
            function_worklist.push(callee);
        }
      }
    }
    
    // Applies patterns locally on ops within `cluster` until convergence or
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 08 20:01:13 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

      // called function's arguments.
      auto propagate_operands_to_callee_arguments =
          [&](Operation* caller, Operation::operand_range caller_operands,
              ArrayRef<func::FuncOp> callees, const PerFunctionResult& caller_res) {
            for (func::FuncOp callee : callees) {
              assert(callee);
              auto& callee_res = per_function_results.find(callee)->getSecond();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/scoring.go

    	callee := cs.Callee
    	csflags := cs.Flags
    	call := cs.Call
    
    	// Start with the size-based score for the callee.
    	score := int(callee.Inl.Cost)
    	var tmask scoreAdjustTyp
    
    	if debugTrace&debugTraceScoring != 0 {
    		fmt.Fprintf(os.Stderr, "=-= scoring call to %s at %s , initial=%d\n",
    			callee.Sym().Name, fmtFullPos(call.Pos()), score)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    	MOVD	$setg_gcc<>(SB), R4 	// arg 1: setg
    	MOVD	g, R3			// arg 0: G
    	// C functions expect 32 (48 for AIX) bytes of space on caller
    	// stack frame and a 16-byte aligned R1
    	MOVD	R1, R14			// save current stack
    	SUB	$cgoCalleeStackSize, R1	// reserve the callee area
    	RLDCR	$0, R1, $~15, R1	// 16-byte align
    	BL	(CTR)			// may clobber R0, R3-R12
    	MOVD	R14, R1			// restore stack
    #ifndef GOOS_aix
    	MOVD	24(R1), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. src/runtime/sys_openbsd_amd64.s

    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVQ	fn+0(FP),    AX
    	MOVL	sig+8(FP),   DI
    	MOVQ	info+16(FP), SI
    	MOVQ	ctx+24(FP),  DX
    	MOVQ	SP, BX		// callee-saved
    	ANDQ	$~15, SP	// alignment for x86_64 ABI
    	CALL	AX
    	MOVQ	BX, SP
    	RET
    
    // Called using C ABI.
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME|NOFRAME,$0
    	// Transition from C ABI to Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_386.s

    	MOVL	DX, 8(SP)
    	MOVL	SI, 12(SP)	// save SI: handler might be a Go function
    	CALL	AX
    	MOVL	12(SP), AX
    	MOVL	AX, SP
    	RET
    
    // Called by OS using C ABI.
    TEXT runtime·sigtramp(SB),NOSPLIT|TOPFRAME,$28
    	NOP	SP	// tell vet SP changed - stop checking offsets
    	// Save callee-saved C registers, since the caller may be a C signal handler.
    	MOVL	BX, bx-4(SP)
    	MOVL	BP, bp-8(SP)
    	MOVL	SI, si-12(SP)
    	MOVL	DI, di-16(SP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. src/runtime/stubs.go

    // run other goroutines.
    //
    // mcall can only be called from g stacks (not g0, not gsignal).
    //
    // This must NOT be go:noescape: if fn is a stack-allocated closure,
    // fn puts g on a run queue, and g executes before fn returns, the
    // closure will be invalidated while it is still executing.
    func mcall(fn func(*g))
    
    // systemstack runs fn on a system stack.
    // If systemstack is called from the per-OS-thread (g0) stack, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top