Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for balk (0.38 sec)

  1. src/cmd/compile/internal/ssagen/nowb.go

    }
    
    func (c *nowritebarrierrecChecker) check() {
    	// We walk the call graph as late as possible so we can
    	// capture all calls created by lowering, but this means we
    	// only get to see the obj.LSyms of calls. symToFunc lets us
    	// get back to the ODCLFUNCs.
    	symToFunc := make(map[*obj.LSym]*ir.Func)
    	// funcs records the back-edges of the BFS call graph walk. It
    	// maps from the ODCLFUNC of each function that must not have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/mvs/mvs.go

    		return nil
    	}
    	for _, m := range list {
    		if err := walk(m); err != nil {
    			return nil, err
    		}
    	}
    
    	// Walk modules in reverse post-order, only adding those not implied already.
    	have := map[module.Version]bool{}
    	walk = func(m module.Version) error {
    		if have[m] {
    			return nil
    		}
    		have[m] = true
    		for _, m1 := range reqCache[m] {
    			walk(m1)
    		}
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. src/cmd/internal/pgo/pprof.go

    func createNamedEdgeMap(g *profile.Graph) (edgeMap NamedEdgeMap, totalWeight int64, err error) {
    	seenStartLine := false
    
    	// Process graph and build various node and edge maps which will
    	// be consumed by AST walk.
    	weight := make(map[NamedCallEdge]int64)
    	for _, n := range g.Nodes {
    		seenStartLine = seenStartLine || n.Info.StartLine != 0
    
    		canonicalName := n.Info.Name
    		// Create the key to the nodeMapKey.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    			for _, s := range spd {
    				hdr.Size += s.Length
    			}
    			copy(blk.V7().Size(), zeroBlock[:]) // Reset field
    			f.formatNumeric(blk.V7().Size(), hdr.Size)
    			f.formatNumeric(blk.GNU().RealSize(), realSize)
    		}
    	*/
    	blk.setFormat(FormatGNU)
    	if err := tw.writeRawHeader(blk, hdr.Size, hdr.Typeflag); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/scan.go

    	root := str.WithFilePathSeparator(modroot)
    	err := fsys.Walk(root, func(path string, info fs.FileInfo, err error) error {
    		if err := moduleWalkErr(root, path, info, err); err != nil {
    			return err
    		}
    
    		if !info.IsDir() {
    			return nil
    		}
    		if !strings.HasPrefix(path, root) {
    			panic(fmt.Errorf("path %v in walk doesn't have modroot %v as prefix", path, modroot))
    		}
    		rel := path[len(root):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/link.go

    	Scond    uint8     // bits that describe instruction suffixes (e.g. ARM conditions, RISCV Rounding Mode)
    	Back     uint8     // for x86 back end: backwards branch state
    	Ft       uint8     // for x86 back end: type index of Prog.From
    	Tt       uint8     // for x86 back end: type index of Prog.To
    	Isize    uint8     // for x86 back end: size of the instruction in bytes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  7. src/archive/tar/writer_test.go

    			t.Errorf("test %d, unexpected Close error: %v", i, err)
    		}
    
    		// The prefix field should never appear in the GNU format.
    		var blk block
    		copy(blk[:], b.Bytes())
    		prefix := string(blk.toUSTAR().prefix())
    		prefix, _, _ = strings.Cut(prefix, "\x00") // Truncate at the NUL terminator
    		if blk.getFormat() == FormatGNU && len(prefix) > 0 && strings.HasPrefix(name, prefix) {
    			t.Errorf("test %d, found prefix in GNU format: %s", i, prefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/temp.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package walk
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    )
    
    // initStackTemp appends statements to init to initialize the given
    // temporary variable to val, and then returns the expression &tmp.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/trace/threadgen.go

    			gs.block(ev.Time(), ev.Stack(), st.Reason, ctx)
    		} else {
    			gs.stop(ev.Time(), ev.Stack(), ctx)
    		}
    	}
    	if !from.Executing() && to.Executing() {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		gs.start(start, ev.Thread(), ctx)
    	}
    
    	if from == trace.GoWaiting {
    		// Goroutine was unblocked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ir/func.go

    // the generated ODCLFUNC, but there is no
    // pointer from the Func back to the OMETHVALUE.
    type Func struct {
    	miniNode
    	Body Nodes
    
    	Nname    *Name        // ONAME node
    	OClosure *ClosureExpr // OCLOSURE node
    
    	// ONAME nodes for all params/locals for this func/closure, does NOT
    	// include closurevars until transforming closures during walk.
    	// Names must be listed PPARAMs, PPARAMOUTs, then PAUTOs,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top