Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for frame_0 (0.38 sec)

  1. src/internal/trace/raw/textreader.go

    				return Event{}, fmt.Errorf("unexpected EOF while reading stack: args=%v", args)
    			}
    			if err != nil {
    				return Event{}, err
    			}
    			frame, err := readArgs(line, frameFields)
    			if err != nil {
    				return Event{}, err
    			}
    			args = append(args, frame...)
    		}
    	}
    	var data []byte
    	if spec.HasData {
    		line, err := r.nextLine()
    		if err == io.EOF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/runtime/stubs_amd64.go

    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/defs_windows_386.go

    func (c *context) lr() uintptr      { return 0 }
    func (c *context) set_lr(x uintptr) {}
    
    func (c *context) set_ip(x uintptr) { c.eip = uint32(x) }
    func (c *context) set_sp(x uintptr) { c.esp = uint32(x) }
    
    // 386 does not have frame pointer register.
    func (c *context) set_fp(x uintptr) {}
    
    func prepareContextForSigResume(c *context) {
    	c.edx = c.esp
    	c.ecx = c.eip
    }
    
    func dumpregs(r *context) {
    	print("eax     ", hex(r.eax), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/sys_windows_amd64.s

    	// the "frame" to cgocallback and on to callbackWrap.
    	SUBQ	$(24+callbackArgs__size), SP
    	MOVQ	AX, (24+callbackArgs_index)(SP) 	// callback index
    	MOVQ	R8, (24+callbackArgs_args)(SP)  	// address of args vector
    	MOVQ	$0, (24+callbackArgs_result)(SP)	// result
    	LEAQ	24(SP), AX
    	// Call cgocallback, which will call callbackWrap(frame).
    	MOVQ	$0, 16(SP)	// context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter
    
        suspend fun write(value: Any?)
    
        fun writeClass(type: Class<*>)
    }
    
    
    interface Tracer {
    
        fun open(frame: String)
    
        fun close(frame: String)
    }
    
    
    interface ReadContext : IsolateContext, MutableIsolateContext, Decoder {
    
        val sharedIdentities: ReadIdentities
    
        override val isolate: ReadIsolate
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. doc/next/5-toolchain.md

    In Go 1.23, overhead should be in the single digit percentages.
    
    <!-- https://go.dev/issue/62737 , https://golang.org/cl/576681,  https://golang.org/cl/577615 -->
    The compiler in Go 1.23 can now overlap the stack frame slots of local variables
    accessed in disjoint regions of a function, which reduces stack usage
    for Go applications.
    
    <!-- https://go.dev/cl/577935 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/ws/WebSocketWriterTest.kt

          payload.writeByte('0'.code)
        }
        serverWriter.writeMessageFrame(OPCODE_BINARY, payload.snapshot())
    
        // Write directly to the unbuffered sink. This ensures it will become single frame.
        assertData("827e") // 'e' == 4-byte follow-up length.
        assertData(format("%04X", payload.completeSegmentByteCount()))
        assertData(payload.readByteString())
      }
    
      @Test fun serverMessageLengthLong() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/seh.go

    		s.SetType(kind)
    		s.SetAlign(4)
    		return s
    	}
    	pdata := mkSecSym(".pdata", sym.SSEHSECT)
    	xdata := mkSecSym(".xdata", sym.SSEHSECT)
    	// The .xdata entries have very low cardinality
    	// as it only contains frame pointer operations,
    	// which are very similar across functions.
    	// These are referenced by .pdata entries using
    	// an RVA, so it is possible, and binary-size wise,
    	// to deduplicate .xdata entries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// containing that address.
    	Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
    
    	// Close closes the file, releasing associated resources.
    	Close() error
    }
    
    // A Frame describes a location in a single line in a source file.
    type Frame struct {
    	Func   string // name of function
    	File   string // source file name
    	Line   int    // line in file
    	Column int    // column in line (if available)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. src/runtime/crash_unix_test.go

    	sysFunc := "blockOnSystemStackInternal"
    	nUser := bytes.Count(tb, []byte(userFunc))
    	nSys := bytes.Count(tb, []byte(sysFunc))
    	if nUser != 2 || nSys != 2 {
    		t.Fatalf("want %d user stack frames in %s and %d system stack frames in %s, got %d and %d:\n%s", 2, userFunc, 2, sysFunc, nUser, nSys, string(tb))
    	}
    
    	// Traceback should not contain "unexpected SPWRITE" when
    	// unwinding the system stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top