Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Disassemble (0.15 sec)

  1. src/cmd/objdump/main.go

    		log.Fatal(err)
    	}
    	defer f.Close()
    
    	dis, err := f.Disasm()
    	if err != nil {
    		log.Fatalf("disassemble %s: %v", flag.Arg(0), err)
    	}
    
    	switch flag.NArg() {
    	default:
    		usage()
    	case 1:
    		// disassembly of entire object
    		dis.Print(os.Stdout, symRE, 0, ^uint64(0), *printCode, *gnuAsm)
    
    	case 3:
    		// disassembly of PC range
    		start, err := strconv.ParseUint(strings.TrimPrefix(flag.Arg(1), "0x"), 16, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/header.html

          <a title="{{.Help.peek}}" href="./peek" id="peek">Peek</a>
          <a title="{{.Help.list}}" href="./source" id="list">Source</a>
          <a title="{{.Help.disasm}}" href="./disasm" id="disasm">Disassemble</a>
        </div>
      </div>
    
      {{$sampleLen := len .SampleTypes}}
      {{if gt $sampleLen 1}}
      <div id="sample" class="menu-item">
        <div class="menu-name">
          Sample
          <i class="downArrow"></i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/objdump/objdump_test.go

    	for _, s := range need {
    		if !strings.Contains(text, s) {
    			t.Errorf("disassembly missing '%s'", s)
    			ok = false
    		}
    	}
    	if goarch == "386" {
    		if strings.Contains(text, "(IP)") {
    			t.Errorf("disassembly contains PC-Relative addressing on 386")
    			ok = false
    		}
    	}
    
    	if !ok || testing.Verbose() {
    		t.Logf("full disassembly:\n%s", text)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/source.html

                    <span class=unimportant>{{.FileBase}}:{{.Line}}</span>{{"\n" -}}
                  {{end -}}
    
                  {{if not .Synthetic -}}
                    {{/* disassembled instruction */ -}}
                    {{printf " %8s %10s %10s %8x: %s " "" .Flat .Cumulative .Address .Disasm -}}
                    <span class=unimportant>{{.FileLine}}</span>{{"\n" -}}
                  {{end -}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    	Open(file string, start, limit, offset uint64, relocationSymbol string) (ObjFile, error)
    
    	// Disasm disassembles the named object file, starting at
    	// the start address and stopping at (before) the end address.
    	Disasm(file string, start, end uint64, intelSyntax bool) ([]Inst, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    	Open(file string, start, limit, offset uint64, relocationSymbol string) (ObjFile, error)
    
    	// Disasm disassembles the named object file, starting at
    	// the start address and stopping at (before) the end address.
    	Disasm(file string, start, end uint64, intelSyntax bool) ([]Inst, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top