Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for pushfw (0.14 sec)

  1. src/runtime/stack_test.go

    	//
    	//  deferring function -> leaf function -> sigpanic
    	//
    	// On LR machines, the leaf function will have the same SP as
    	// the SP pushed for the defer frame.
    	testDeferLeafSigpanic1()
    }
    
    // TestPanicUseStack checks that a chain of Panic structs on the stack are
    // updated correctly if the stack grows during the deferred execution that
    // happens as a result of the panic.
    func TestPanicUseStack(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    // stack switch, runtime.cgocallback saves the current SP as
    // m.g0.sched.sp, so that any use of m.g0's stack during the execution
    // of the callback will be done below the existing stack frames.
    // Before overwriting m.g0.sched.sp, it pushes the old value on the
    // m.g0 stack, so that it can be restored later.
    //
    // runtime.cgocallbackg (below) is now running on a real goroutine
    // stack (not an m.g0 stack).  First it calls runtime.exitsyscall, which will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/runtime/asm_mips64x.s

    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVV	m_curg(R3), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	// ones. White and grey objects may depend on white and black objects.
    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/runtime/asm_riscv64.s

    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOV	m_curg(X5), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  6. src/runtime/asm_s390x.s

    	// We can restore m->curg->sched.sp easily, because calling
    	// runtime.cgocallbackg leaves SP unchanged upon return.
    	// To save m->curg->sched.pc, we push it onto the curg stack and
    	// open a frame the same size as cgocallback's g0 frame.
    	// Once we switch to the curg stack, the pushed PC will appear
    	// to be the return PC of cgocallback, so that the traceback
    	// will seamlessly trace back into the earlier calls.
    	MOVD	m_curg(R8), g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. pkg/adsc/adsc.go

    // returned. We avoid rejecting all other types to avoid race conditions. For
    // example, a test asserting an incremental update of EDS may fail if a previous
    // push's RDS response comes in later. Instead, we can reject events coming
    // before (ie CDS). The only real alternative is to wait which introduces its own
    // issues.
    func (a *ADSC) WaitSingle(to time.Duration, want string, reject string) error {
    	t := time.NewTimer(to)
    	for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    // At the time of fill/spill, the offset must be adjusted by the architecture-dependent
    // adjustment to hardware SP that occurs in a call instruction.  E.g., for AMD64,
    // at Offset+8 because the return address was pushed.
    type RegSpill struct {
    	Addr           Addr
    	Reg            int16
    	Spill, Unspill As
    }
    
    // A Func represents a Go function. If non-nil, it must be a *ir.Func.
    type Func interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    	if pc == nil {
    		return
    	}
    	push.AuthorizationPolicies = pc.AuthzPolicies
    	if pc.NetworkManager() != nil {
    		push.NetworkGateways = pc.NetworkManager().AllGateways()
    		push.UnresolvedGateways = pc.NetworkManager().Unresolved.AllGateways()
    	}
    
    	writeJSON(w, push, req)
    }
    
    // Debug lists all the supported debug endpoints.
    func (s *DiscoveryServer) Debug(w http.ResponseWriter, req *http.Request) {
    	type debugEndpoint struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // A helper class for creating scoped traces in user programs.
    class GTEST_API_ ScopedTrace {
     public:
      // The c'tor pushes the given source file location and message onto
      // a trace stack maintained by Google Test.
      ScopedTrace(const char* file, int line, const Message& message);
    
      // The d'tor pops the info pushed by the c'tor.
      //
      // Note that the d'tor is not virtual in order to be efficient.
      // Don't inherit from ScopedTrace!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top