Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 516 for Kappen (0.49 sec)

  1. src/cmd/compile/internal/walk/assign.go

    	clrfn := mkcall(clrname, nil, &clr, hp, hn)
    	clr.Append(clrfn)
    	if hasPointers {
    		// growslice will have cleared the new entries, so only
    		// if growslice isn't called do we need to do the zeroing ourselves.
    		nif.Body = append(nif.Body, clr...)
    	} else {
    		nifnz.Body = append(nifnz.Body, clr...)
    	}
    
    	typecheck.Stmts(nodes)
    	walkStmtList(nodes)
    	init.Append(nodes...)
    	return s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/order.go

    		ir.DumpList(s, fn.Body)
    	}
    	ir.SetPos(fn) // Set reasonable position for instrumenting code. See issue 53688.
    	orderBlock(&fn.Body, map[string][]*ir.Name{})
    }
    
    // append typechecks stmt and appends it to out.
    func (o *orderState) append(stmt ir.Node) {
    	o.out = append(o.out, typecheck.Stmt(stmt))
    }
    
    // newTemp allocates a new temporary with the given type,
    // pushes it onto the temp stack, and returns it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		if err != nil {
    			// This shouldn't happen: we should have already skipped count files that
    			// don't contain valid start or end times.
    			u.logger.Printf("BUG: failed to parse expiry for collected count file: %v", err)
    			continue
    		}
    
    		if end.Before(thisInstant) {
    			expiry := end.Format(dateFormat)
    			countFiles[expiry] = append(countFiles[expiry], f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadcode.go

    			if !live[v.ID] {
    				live[v.ID] = true
    				q = append(q, v)
    				if v.Pos.IsStmt() != src.PosNotStmt {
    					liveOrderStmts = append(liveOrderStmts, v)
    				}
    			}
    		}
    		for _, v := range b.Values {
    			if (opcodeTable[v.Op].call || opcodeTable[v.Op].hasSideEffects || opcodeTable[v.Op].nilCheck) && !live[v.ID] {
    				live[v.ID] = true
    				q = append(q, v)
    				if v.Pos.IsStmt() != src.PosNotStmt {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    		// If this symbol is at the same address as the current group, add it to the group.
    		if symAddr == start {
    			names = append(names, name)
    			continue
    		}
    
    		// Otherwise append the current group to the list of symbols.
    		if match := matchSymbol(names, start, symAddr-1, r, address); match != nil {
    			symbols = append(symbols, &plugin.Sym{Name: match, File: file, Start: start, End: symAddr - 1})
    		}
    
    		// And start a new group.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/scan.go

    		for _, imp := range info.imports {
    			if imp.path == "C" {
    				cgoDirectives = append(cgoDirectives, extractCgoDirectives(imp.doc.Text())...)
    			}
    			rf.imports = append(rf.imports, rawImport{path: imp.path, position: fset.Position(imp.pos)})
    		}
    		rf.cgoDirectives = strings.Join(cgoDirectives, "\n")
    		for _, emb := range info.embeds {
    			rf.embeds = append(rf.embeds, embed{emb.pattern, emb.pos})
    		}
    
    	}
    	return p
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/doc/pkg.go

    	typedValue := make(map[*doc.Value]bool)
    	constructor := make(map[*doc.Func]bool)
    	for _, typ := range docPkg.Types {
    		docPkg.Consts = append(docPkg.Consts, typ.Consts...)
    		docPkg.Vars = append(docPkg.Vars, typ.Vars...)
    		docPkg.Funcs = append(docPkg.Funcs, typ.Funcs...)
    		if isExported(typ.Name) {
    			for _, value := range typ.Consts {
    				typedValue[value] = true
    			}
    			for _, value := range typ.Vars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/nowb.go

    	}
    
    	// Find all systemstack calls and record their targets. In
    	// general, flow analysis can't see into systemstack, but it's
    	// important to handle it for this check, so we model it
    	// directly. This has to happen before transforming closures in walk since
    	// it's a lot harder to work out the argument after.
    	for _, n := range typecheck.Target.Funcs {
    		c.curfn = n
    		if c.curfn.ABIWrapper() {
    			// We only want "real" calls to these
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/stmt.go

    		}
    
    		visit(&call.Fun)
    		visitList(call.Args)
    
    	case ir.OCALLINTER:
    		call := call.(*ir.CallExpr)
    		argps = append(argps, &call.Fun.(*ir.SelectorExpr).X) // must be first for OCHECKNIL; see below
    		visitList(call.Args)
    
    	case ir.OAPPEND, ir.ODELETE, ir.OPRINT, ir.OPRINTLN, ir.ORECOVERFP:
    		call := call.(*ir.CallExpr)
    		visitList(call.Args)
    		visit(&call.RType)
    
    	case ir.OCOPY:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/deadstore.go

    		// is known to be written. We keep track of shadowed addresses in the shadowed map,
    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top