Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 527 for frame_0 (0.11 sec)

  1. src/cmd/internal/obj/textflag.go

    	TLSBSS = 256
    
    	// Do not insert instructions to allocate a stack frame for this function.
    	// Only valid on functions that declare a frame size of 0.
    	// TODO(mwhudson): only implemented for ppc64x at present.
    	NOFRAME = 512
    
    	// Function can call reflect.Type.Method or reflect.Type.MethodByName.
    	REFLECTMETHOD = 1024
    
    	// Function is the outermost frame of the call stack. Call stack unwinders
    	// should stop at this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/sync/runtime.go

    func runtime_Semacquire(s *uint32)
    
    // Semacquire(RW)Mutex(R) is like Semacquire, but for profiling contended
    // Mutexes and RWMutexes.
    // If lifo is true, queue waiter at the head of wait queue.
    // skipframes is the number of frames to omit during tracing, counting from
    // runtime_SemacquireMutex's caller.
    // The different forms of this function just tell the runtime how to present
    // the reason for waiting in a backtrace, and is used to compute some metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. doc/next/6-stdlib/99-minor/runtime/pprof/43669.md

    The maximum stack depth for alloc, mutex, block, threadcreate and goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 124 bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    		l.IsFolded = false
    		for i, frame := range stack {
    			if frame.Func != "" {
    				m.HasFunctions = true
    			}
    			if frame.File != "" {
    				m.HasFilenames = true
    			}
    			if frame.Line != 0 {
    				m.HasLineNumbers = true
    			}
    			f := addFunction(&profile.Function{
    				Name:       frame.Func,
    				SystemName: frame.Func,
    				Filename:   frame.File,
    			})
    			l.Line[i] = profile.Line{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.h

    // FIXED_FRAME defines the size of the fixed part of a stack frame. A stack
    // frame looks like this:
    //
    // +---------------------+
    // | local variable area |
    // +---------------------+
    // | argument area       |
    // +---------------------+ <- R1+FIXED_FRAME
    // | fixed area          |
    // +---------------------+ <- R1
    //
    // So a function that sets up a stack frame at all uses as least FIXED_FRAME
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate_test.go

    type statusError interface {
    	Status() metav1.Status
    }
    
    type fakeNegotiater struct {
    	serializer, streamSerializer runtime.Serializer
    	framer                       runtime.Framer
    	types, streamTypes           []string
    }
    
    func (n *fakeNegotiater) SupportedMediaTypes() []runtime.SerializerInfo {
    	var out []runtime.SerializerInfo
    	for _, s := range n.types {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9K bytes
    - Viewed (0)
  7. src/runtime/cgo/asm_s390x.s

    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	// Start with standard C stack frame layout and linkage.
    
    	// Save R6-R15 in the register save area of the calling function.
    	STMG	R6, R15, 48(R15)
    
    	// Allocate 96 bytes on the stack.
    	MOVD	$-96(R15), R15
    
    	// Save F8-F15 in our stack frame.
    	FMOVD	F8, 32(R15)
    	FMOVD	F9, 40(R15)
    	FMOVD	F10, 48(R15)
    	FMOVD	F11, 56(R15)
    	FMOVD	F12, 64(R15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    	buckHashSize = 179999
    
    	// maxSkip is to account for deferred inline expansion
    	// when using frame pointer unwinding. We record the stack
    	// with "physical" frame pointers but handle skipping "logical"
    	// frames at some point after collecting the stack. So
    	// we need extra space in order to avoid getting fewer than the
    	// desired maximum number of frames after expansion.
    	// This should be at least as large as the largest skip value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    	Serializer       runtime.Serializer
    	PrettySerializer runtime.Serializer
    	StrictSerializer runtime.Serializer
    
    	AcceptStreamContentTypes []string
    	StreamContentType        string
    
    	Framer           runtime.Framer
    	StreamSerializer runtime.Serializer
    }
    
    func newSerializersForScheme(scheme *runtime.Scheme, mf json.MetaFactory, options CodecFactoryOptions) []serializerType {
    	jsonSerializer := json.NewSerializerWithOptions(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. test/nosplit.go

    #
    # 64-bit systems do not attempt to execute test cases with frame sizes
    # that are only 32-bit aligned.
    
    # Ordinary function should work
    start 0
    
    # Large frame marked nosplit is always wrong.
    # Frame is so large it overflows cmd/link's int16.
    start 100000 nosplit
    REJECT
    
    # Calling a large frame is okay.
    start 0 call big
    big 10000
    
    # But not if the frame is nosplit.
    start 0 call big
    big 10000 nosplit
    REJECT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top