Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for globAbs (0.1 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    			// hide it from escape analysis). Mark as non-hidden here.
    			// so that it will participated in escape analysis.
    			r.Func.SetIsHiddenClosure(false)
    			// Closures with no captured variables are globals,
    			// so the assignment can be done at link time.
    			// TODO if roff != 0 { panic }
    			staticdata.InitAddr(l, loff, staticdata.FuncLinksym(r.Func.Nname))
    			return true
    		}
    		ir.ClosureDebugRuntimeCheck(r)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    	} else {
    		err = funcOutput(profile, *output)
    	}
    
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "cover: %v\n", err)
    		os.Exit(2)
    	}
    }
    
    // parseFlags sets the profile and counterStmt globals and performs validations.
    func parseFlags() error {
    	profile = *htmlOut
    	if *funcOut != "" {
    		if profile != "" {
    			return fmt.Errorf("too many options")
    		}
    		profile = *funcOut
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "SP", zeroWidth: true},                                       // stack pointer
    	{name: "SB", typ: "Uintptr", zeroWidth: true},                       // static base pointer (a.k.a. globals pointer)
    	{name: "Invalid"},                                                   // unused value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6.go

    		return true
    	}
    	return false
    }
    
    func errorCheck(ctxt *obj.Link, s *obj.LSym) {
    	// When dynamic linking, R15 is used to access globals. Reject code that
    	// uses R15 after a global variable access.
    	if !ctxt.Flag_dynlink {
    		return
    	}
    
    	// Flood fill all the instructions where R15's value is junk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  5. doc/asm.html

    </li>
    
    </ul>
    
    <p>
    All user-defined symbols are written as offsets to the pseudo-registers
    <code>FP</code> (arguments and locals) and <code>SB</code> (globals).
    </p>
    
    <p>
    The <code>SB</code> pseudo-register can be thought of as the origin of memory, so the symbol <code>foo(SB)</code>
    is the name <code>foo</code> as an address in memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top