Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for FmtPos (0.1 sec)

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

    		fn := q.PopLeft().Func
    
    		// Check fn.
    		if fn.WBPos.IsKnown() {
    			var err strings.Builder
    			call := funcs[fn]
    			for call.target != nil {
    				fmt.Fprintf(&err, "\n\t%v: called by %v", base.FmtPos(call.lineno), call.target.Nname)
    				call = funcs[call.target]
    			}
    			// Seeing this error in a failed CI run? It indicates that
    			// a function in the runtime package marked nowritebarrierrec
    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/compile/internal/typecheck/typecheck.go

    }
    
    var traceIndent []byte
    
    func tracePrint(title string, n ir.Node) func(np *ir.Node) {
    	indent := traceIndent
    
    	// guard against nil
    	var pos, op string
    	var tc uint8
    	if n != nil {
    		pos = base.FmtPos(n.Pos())
    		op = n.Op().String()
    		tc = n.Typecheck()
    	}
    
    	types.SkipSizeForTracing = true
    	defer func() { types.SkipSizeForTracing = false }()
    	fmt.Printf("%s: %s%s %p %s %v tc=%d\n", pos, indent, title, n, op, n, tc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/stmt.go

    		s.m = make(map[string]src.XPos)
    	}
    
    	ls := typ.LinkString()
    	if prev, ok := s.m[ls]; ok {
    		base.ErrorfAt(pos, errors.DuplicateCase, "duplicate case %v in type switch\n\tprevious case at %s", typ, base.FmtPos(prev))
    		return
    	}
    	s.m[ls] = pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    		if printed {
    			fmt.Printf("\n")
    		}
    
    		// program listing, with individual effects listed
    
    		if b == lv.f.Entry {
    			live := lv.stackMaps[0]
    			fmt.Printf("(%s) function entry\n", base.FmtPos(lv.fn.Nname.Pos()))
    			fmt.Printf("\tlive=")
    			printed = false
    			for j, n := range lv.vars {
    				if !live.Get(int32(j)) {
    					continue
    				}
    				if printed {
    					fmt.Printf(",")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/func.go

    				// be more specific when the non-function
    				// name matches a predeclared function
    				base.Errorf("cannot call non-function %L, declared at %s",
    					l, base.FmtPos(o.Name().Pos()))
    			} else {
    				base.Errorf("cannot call non-function %L", l)
    			}
    			n.SetType(nil)
    			return n
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/security.go

    	re(`-m(no-)?stack-(.+)`),
    	re(`-mmacosx-(.+)`),
    	re(`-mios-simulator-version-min=(.+)`),
    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mlarge-data-threshold=[0-9]+`),
    	re(`-mtvos-simulator-version-min=(.+)`),
    	re(`-mtvos-version-min=(.+)`),
    	re(`-mwatchos-simulator-version-min=(.+)`),
    	re(`-mwatchos-version-min=(.+)`),
    	re(`-mnop-fun-dllimport`),
    	re(`-m(no-)?sse[0-9.]*`),
    	re(`-m(no-)?ssse3`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    	if err != nil {
    		t.Skip("failed to locate appletvos SDK, skipping")
    	}
    	CC := []string{
    		"clang",
    		"-arch",
    		"arm64",
    		"-isysroot", strings.TrimSpace(string(sdkPath)),
    		"-mtvos-version-min=12.0",
    		"-fembed-bitcode",
    	}
    	CGO_LDFLAGS := []string{"-framework", "CoreFoundation"}
    	lib := filepath.Join("testdata", "testBuildFortvOS", "lib.go")
    	tmpDir := t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top