Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IntelSyntax (0.11 sec)

  1. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    		ps := plugin.Sym(*s)
    		pluginSyms = append(pluginSyms, &ps)
    	}
    	return pluginSyms, nil
    }
    
    func (o *internalObjTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]plugin.Inst, error) {
    	insts, err := o.ObjTool.Disasm(file, start, end, intelSyntax)
    	if err != nil {
    		return nil, err
    	}
    	var pluginInst []plugin.Inst
    	for _, inst := range insts {
    		pluginInst = append(pluginInst, plugin.Inst(inst))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/pprof/pprof.go

    	// No C++, nothing to demangle.
    	return make(map[string]string), nil
    }
    
    func (t *objTool) Disasm(file string, start, end uint64, intelSyntax bool) ([]driver.Inst, error) {
    	if intelSyntax {
    		return nil, fmt.Errorf("printing assembly in Intel syntax is not supported")
    	}
    	d, err := t.cachedDisasm(file)
    	if err != nil {
    		return nil, err
    	}
    	var asm []driver.Inst
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// 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)
    }
    
    // An Inst is a single instruction in an assembly listing.
    type Inst struct {
    	Addr     uint64 // virtual address of instruction
    	Text     string // instruction text
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top