Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for osAction (0.56 sec)

  1. src/cmd/compile/internal/ssa/_gen/README

    // license that can be found in the LICENSE file.
    
    This command generates Go code (in the parent directory) for all
    the architecture-specific opcodes, blocks, and rewrites. See the
    "Hacking on SSA" section in the parent directory's README.md for
    more information.
    
    To regenerate everything, run "go generate" on the ssa package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 462 bytes
    - Viewed (0)
  2. src/cmd/go/help_test.go

    	// calling help.Help directly because it may be sensitive to
    	// init-time configuration
    	cmd := testenv.Command(t, testGo, "help", "documentation")
    	// Unset GO111MODULE so that the 'go get' section matches
    	// the default 'go get' implementation.
    	cmd.Env = append(cmd.Environ(), "GO111MODULE=")
    	cmd.Stderr = new(strings.Builder)
    	out, err := cmd.Output()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 15:45:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/cshared_test.go

    		t.Fatalf("build failure: %s\n%s\n", err, string(out))
    	}
    
    	f, err := pe.Open(objfile)
    	if err != nil {
    		t.Fatalf("pe.Open failed: %v", err)
    	}
    	defer f.Close()
    	section := f.Section(".edata")
    	if section == nil {
    		t.Skip(".edata section is not present")
    	}
    
    	// TODO: deduplicate this struct from cmd/link/internal/ld/pe.go
    	type IMAGE_EXPORT_DIRECTORY struct {
    		_                 [2]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/action.go

    	traceSpan    *trace.Span
    }
    
    // BuildActionID returns the action ID section of a's build ID.
    func (a *Action) BuildActionID() string { return actionID(a.buildID) }
    
    // BuildContentID returns the content ID section of a's build ID.
    func (a *Action) BuildContentID() string { return contentID(a.buildID) }
    
    // BuildID returns a's build ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    						break
    					}
    				}
    			}
    
    			for i := range symtab {
    				s := &symtab[i]
    				switch {
    				case isDebugInts(s.Name):
    					// Found it. Now find data section.
    					if i := int(s.Section); 0 <= i && i < len(f.Sections) {
    						sect := f.Sections[i]
    						val := removeTag(s.Value)
    						if sect.Addr <= val && val < sect.Addr+sect.Size {
    							if sdat, err := sect.Data(); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    returns. Each difficult statement sets #next and then returns false to
    stop f.
    
    A plain "return" rewrites to {#next = -1; return false}.
    The return false breaks the loop. Then when f returns, the "check
    #next" section includes
    
    	if #next == -1 { return }
    
    which causes the return we want.
    
    Return with arguments is more involved, and has to deal with
    corner cases involving panic, defer, and recover.  The results
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    // readDump reads in the contents of a dump file produced
    // by the "-d=dumpinlfuncprops=..." command line flag by the Go
    // compiler. It breaks the dump down into separate sections
    // by function, then deserializes each func section into a
    // fnInlHeur object and returns a slice of those objects.
    func readDump(t *testing.T, path string) ([]fnInlHeur, []encodedCallSiteTab, error) {
    	content, err := os.ReadFile(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. doc/go_spec.html

    <pre class="ebnf">
    MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
    Receiver   = Parameters .
    </pre>
    
    <p>
    The receiver is specified via an extra parameter section preceding the method
    name. That parameter section must declare a single non-variadic parameter, the receiver.
    Its type must be a <a href="#Type_definitions">defined</a> type <code>T</code> or a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    func walkCompLit(n ir.Node, init *ir.Nodes) ir.Node {
    	if isStaticCompositeLiteral(n) && !ssa.CanSSA(n.Type()) {
    		n := n.(*ir.CompLitExpr) // not OPTRLIT
    		// n can be directly represented in the read-only data section.
    		// Make direct reference to the static data. See issue 12841.
    		vstat := readonlystaticname(n.Type())
    		fixedlit(inInitFunction, initKindStatic, n, vstat, init)
    		return typecheck.Expr(vstat)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. doc/asm.html

    </p>
    
    <p>
    Global data symbols are defined by a sequence of initializing
    <code>DATA</code> directives followed by a <code>GLOBL</code> directive.
    Each <code>DATA</code> directive initializes a section of the
    corresponding memory.
    The memory not explicitly initialized is zeroed.
    The general form of the <code>DATA</code> directive is
    
    <pre>
    DATA	symbol+offset(SB)/width, value
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
Back to top