Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for Disassemble (0.33 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	SampleType        string
    	SampleUnit        string // Unit for the sample data from the profile.
    
    	OutputUnit string // Units for data formatting in report.
    
    	Symbol     *regexp.Regexp // Symbols to include on disassembly report.
    	SourcePath string         // Search path for source files.
    	TrimPath   string         // Paths to trim from source file paths.
    
    	IntelSyntax bool // Whether or not to print assembly in Intel syntax.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    		nodes = append(nodes, item.Name)
    	}
    
    	ui.render(w, req, "top", rpt, errList, legend, webArgs{
    		Top:   top,
    		Nodes: nodes,
    	})
    }
    
    // disasm generates a web page containing disassembly.
    func (ui *webInterface) disasm(w http.ResponseWriter, req *http.Request) {
    	args := []string{"disasm", req.URL.Query().Get("f")}
    	rpt, errList := ui.makeReport(w, req, args, nil)
    	if rpt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    different sets of packages. If a package matches patterns given in
    multiple flags, the latest match on the command line wins.
    For example, 'go build -gcflags=-S fmt' prints the disassembly
    only for package fmt, while 'go build -gcflags=all=-S fmt'
    prints the disassembly for fmt and all its dependencies.
    
    For more about specifying packages, see 'go help packages'.
    For more about where packages and binaries are installed,
    run 'go help gopath'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. doc/go_spec.html

    returns a received value along with an indication of whether the channel is closed.
    </p>
    
    
    <h3 id="Complex_numbers">Manipulating complex numbers</h3>
    
    <p>
    Three functions assemble and disassemble complex numbers.
    The built-in function <code>complex</code> constructs a complex
    value from a floating-point real and imaginary part, while
    <code>real</code> and <code>imag</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. src/cmd/go/alldocs.go

    // different sets of packages. If a package matches patterns given in
    // multiple flags, the latest match on the command line wins.
    // For example, 'go build -gcflags=-S fmt' prints the disassembly
    // only for package fmt, while 'go build -gcflags=all=-S fmt'
    // prints the disassembly for fmt and all its dependencies.
    //
    // For more about specifying packages, see 'go help packages'.
    // For more about where packages and binaries are installed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		return strings.HasPrefix(s.Name, "libc_")
    	}
    	return ctxt.Arch.Family == sys.I386 && !ctxt.Flag_shared
    }
    
    // single-instruction no-ops of various lengths.
    // constructed by hand and disassembled with gdb to verify.
    // see http://www.agner.org/optimize/optimizing_assembly.pdf for discussion.
    var nop = [][16]uint8{
    	{0x90},
    	{0x66, 0x90},
    	{0x0F, 0x1F, 0x00},
    	{0x0F, 0x1F, 0x40, 0x00},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/asm7.go

    	case 45: /* sxt/uxt[bhw] R,R; movT R,R -> sxtT R,R */
    		as := p.As
    		rt, rf := p.To.Reg, p.From.Reg
    		if rf == REGZERO {
    			as = AMOVWU /* clearer in disassembly */
    		}
    		switch as {
    		case AMOVB, ASXTB:
    			o1 = c.opbfm(p, ASBFM, 0, 7, rf, rt)
    
    		case AMOVH, ASXTH:
    			o1 = c.opbfm(p, ASBFM, 0, 15, rf, rt)
    
    		case AMOVW, ASXTW:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top