Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 185 for Prog (0.15 sec)

  1. src/cmd/compile/internal/dwarfgen/dwinl.go

    		// onto the vars list for the correct inlined call.
    		ii := int(dwv.InlIndex) - 1
    		idx, ok := imap[ii]
    		if !ok {
    			// We can occasionally encounter a var produced by the
    			// inliner for which there is no remaining prog; add a new
    			// entry to the call list in this scenario.
    			idx = insertInlCall(&inlcalls, ii, imap)
    		}
    		inlcalls.Calls[idx].InlVars =
    			append(inlcalls.Calls[idx].InlVars, dwv)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	lock mutex
    	data *byte
    }
    
    // progToPointerMask returns the 1-bit pointer mask output by the GC program prog.
    // size the size of the region described by prog, in bytes.
    // The resulting bitvector will have no more than size/goarch.PtrSize bits.
    func progToPointerMask(prog *byte, size uintptr) bitvector {
    	n := (size/goarch.PtrSize + 7) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/a.out.go

    	C_ROFF // register offset (including register extended)
    
    	C_GOK
    	C_TEXTSIZE
    	C_NCLASS // must be last
    )
    
    const (
    	C_XPRE  = 1 << 6 // match arm.C_WBIT, so Prog.String know how to print it
    	C_XPOST = 1 << 5 // match arm.C_PBIT, so Prog.String know how to print it
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p arm64
    
    const (
    	AADC = obj.ABaseARM64 + obj.A_ARCHSPECIFIC + iota
    	AADCS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto_test.go

    	testenv.MustHaveGoRun(t)
    	testenv.MustHaveCGO(t)
    
    	prog := "./testdata/mappingtest/main.go"
    
    	// GoOnly includes only Go symbols that runtime will symbolize.
    	// Go+C includes C symbols that runtime will not symbolize.
    	for _, traceback := range []string{"GoOnly", "Go+C"} {
    		t.Run("traceback"+traceback, func(t *testing.T) {
    			cmd := exec.Command(testenv.GoToolPath(t), "run", prog)
    			if traceback != "GoOnly" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 23:21:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	// TODO: Ideally we could configure the per expression limit at validation time and set it to the remaining overall budget, but we would either need a way to pass in a limit at evaluation time or move program creation to validation time
    	prog, err := ruleEnv.Program(ast,
    		cel.CostLimit(perCallLimit),
    		cel.CostTracking(estimator),
    		cel.InterruptCheckFrequency(celconfig.CheckFrequency),
    	)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    //
    // For example, consider these two program snippets:
    //
    //	path, err := exec.LookPath("prog")
    //	if err != nil {
    //		log.Fatal(err)
    //	}
    //	use(path)
    //
    // and
    //
    //	cmd := exec.Command("prog")
    //	if err := cmd.Run(); err != nil {
    //		log.Fatal(err)
    //	}
    //
    // These will not find and run ./prog or .\prog.exe,
    // no matter how the current path is configured.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    	input         []lex.Token
    	inputPos      int
    	pendingLabels []string // Labels to attach to next instruction.
    	labels        map[string]*obj.Prog
    	toPatch       []Patch
    	addr          []obj.Addr
    	arch          *arch.Arch
    	ctxt          *obj.Link
    	firstProg     *obj.Prog
    	lastProg      *obj.Prog
    	dataAddr      map[string]int64 // Most recent address for DATA for this symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/cpu.go

    	REG_F24: 56,
    	REG_F25: 57,
    	REG_F26: 58,
    	REG_F27: 59,
    	REG_F28: 60,
    	REG_F29: 61,
    	REG_F30: 62,
    	REG_F31: 63,
    }
    
    // Prog.Mark flags.
    const (
    	// USES_REG_TMP indicates that a machine instruction generated from the
    	// corresponding *obj.Prog uses the temporary register.
    	USES_REG_TMP = 1 << iota
    
    	// NEED_JAL_RELOC is set on JAL instructions to indicate that a
    	// R_RISCV_JAL relocation is needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/seh.go

    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.As == APUSHQ && p.From.Type == obj.TYPE_REG && p.From.Reg == REG_BP {
    			pushbp = p
    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testcshared/cshared_test.go

    			0644)
    		if err != nil {
    			return fmt.Errorf("unable to write def file: %v", err)
    		}
    		out, err = exec.Command(cc[0], append(cc[1:], "-print-prog-name=dlltool")...).CombinedOutput()
    		if err != nil {
    			return fmt.Errorf("unable to find dlltool path: %v\n%s\n", err, out)
    		}
    		dlltoolpath := strings.TrimSpace(string(out))
    		if filepath.Ext(dlltoolpath) == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
Back to top