Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 289 for original (0.2 sec)

  1. src/runtime/string.go

    	}
    	return
    }
    
    // slicebytetostringtmp returns a "string" referring to the actual []byte bytes.
    //
    // Callers need to ensure that the returned string will not be used after
    // the calling goroutine modifies the original slice or synchronizes with
    // another goroutine.
    //
    // The function is only called when instrumenting
    // and otherwise intrinsified by the compiler.
    //
    // Some internal compiler optimizations use this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/looprotate.go

    		after[p.ID] = []*Block{b}
    		for {
    			nextIdx := idToIdx[b.ID] + 1
    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/action.go

    	fmt.Fprintf(h, "input %q\n", b.fileHash(input))
    
    	return h.Sum()
    }
    
    // pgoActor implements the Actor interface for preprocessing PGO profiles.
    type pgoActor struct {
    	// input is the path to the original pprof profile.
    	input string
    }
    
    func (p *pgoActor) Act(b *Builder, ctx context.Context, a *Action) error {
    	if b.useCache(a, b.pgoActionID(p.input), a.Target, !b.IsCmdList) || b.IsCmdList {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/order.go

    }
    
    // safeExpr returns a safe version of n.
    // The definition of safe is that n can appear multiple times
    // without violating the semantics of the original program,
    // and that assigning to the safe version has the same effect
    // as assigning to the original n.
    //
    // The intended use is to apply to x when rewriting x += y into x = x + y.
    func (o *orderState) safeExpr(n ir.Node) ir.Node {
    	switch n.Op() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  5. src/runtime/asm_arm64.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	MOVD	fn+0(FP), R1
    	MOVD	arg+8(FP), R0
    
    	MOVD	RSP, R2		// save original stack pointer
    	CBZ	g, nosave
    	MOVD	g, R4
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. src/internal/trace/oldtrace.go

    // GoSyscallStart+GoSyscallEnd, unless we observe a GoSysBlock, in which case we
    // emit a GoSyscallStart+GoSyscallEndBlocked pair with the correct duration
    // (i.e. starting at the original GoSyscall).
    //
    // The resulting trace treats the old trace as a single, large generation,
    // sharing a single evTable for all events.
    //
    // We use a new (compared to what was used for 'go tool trace' in earlier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/log/slog/value.go

    //
    // Given a value of one of Go's predeclared string, bool, or
    // (non-complex) numeric types, AnyValue returns a Value of kind
    // [KindString], [KindBool], [KindUint64], [KindInt64], or [KindFloat64].
    // The width of the original numeric type is not preserved.
    //
    // Given a [time.Time] or [time.Duration] value, AnyValue returns a Value of kind
    // [KindTime] or [KindDuration]. The monotonic time is not preserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	// R2 = argc; R3 = argv; R11 = temp; R13 = g; R15 = stack pointer
    	// C TLS base pointer in AR0:AR1
    	MOVD	fn+0(FP), R3
    	MOVD	arg+8(FP), R4
    
    	MOVD	R15, R2		// save original stack pointer
    	MOVD	g, R5
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    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. src/cmd/compile/internal/ssagen/abi.go

    		// to create duplicate ABI wrappers.
    		//
    		// However, if it's given a linkname for exporting to
    		// C, then we don't make ABI wrappers because the cgo
    		// tool wants the original definition.
    		hasBody := len(fn.Body) != 0
    		if sym.Linkname != "" && (hasBody || hasDefABI) && len(cgoExport) == 0 {
    			fn.ABIRefs |= obj.ABISetCallable
    		}
    
    		// Double check that cgo-exported symbols don't get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Display options.
    	"relative_percentages": helpText(
    		"Show percentages relative to focused subgraph",
    		"If unset, percentages are relative to full graph before focusing",
    		"to facilitate comparison with original graph."),
    	"unit": helpText(
    		"Measurement units to display",
    		"Scale the sample values to this unit.",
    		"For time-based profiles, use seconds, milliseconds, nanoseconds, etc.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top