pkg/config: add disassemble-flavor option for config

Allow user to specify output syntax flavor of assembly in the
disassemble command.

Close #415
This commit is contained in:
chainhelen
2020-03-29 16:51:01 +08:00
committed by Derek Parker
parent 9c24b56f62
commit 37bee98a88
4 changed files with 25 additions and 3 deletions

View File

@ -45,6 +45,9 @@ type Config struct {
// MaxVariableRecurse is output evaluation depth of nested struct members, array and // MaxVariableRecurse is output evaluation depth of nested struct members, array and
// slice items and dereference pointers // slice items and dereference pointers
MaxVariableRecurse *int `yaml:"max-variable-recurse,omitempty"` MaxVariableRecurse *int `yaml:"max-variable-recurse,omitempty"`
// DisassembleFlavor allow user to specify output syntax flavor of assembly, one of
// this list "intel"(default), "gnu", "go"
DisassembleFlavor *string `yaml:"disassemble-flavor,omitempty"`
// If ShowLocationExpr is true whatis will print the DWARF location // If ShowLocationExpr is true whatis will print the DWARF location
// expression for its argument. // expression for its argument.
@ -225,6 +228,9 @@ substitute-path:
# Uncomment the following line to make the whatis command also print the DWARF location expression of its argument. # Uncomment the following line to make the whatis command also print the DWARF location expression of its argument.
# show-location-expr: true # show-location-expr: true
# Allow user to specify output syntax flavor of assembly, one of this list "intel"(default), "gnu", "go".
# disassemble-flavor: intel
# List of directories to use when searching for separate debug info files. # List of directories to use when searching for separate debug info files.
debug-info-directories: ["/usr/lib/debug/.build-id"] debug-info-directories: ["/usr/lib/debug/.build-id"]
`) `)

View File

@ -1914,6 +1914,18 @@ func disassCommand(t *Term, ctx callContext, args string) error {
rest = argv[1] rest = argv[1]
} }
flavor := api.IntelFlavour
if t.conf != nil && t.conf.DisassembleFlavor != nil {
switch *t.conf.DisassembleFlavor {
case "go":
flavor = api.GoFlavour
case "gnu":
flavor = api.GNUFlavour
default:
flavor = api.IntelFlavour
}
}
var disasm api.AsmInstructions var disasm api.AsmInstructions
var disasmErr error var disasmErr error
@ -1923,7 +1935,7 @@ func disassCommand(t *Term, ctx callContext, args string) error {
if err != nil { if err != nil {
return err return err
} }
disasm, disasmErr = t.client.DisassemblePC(ctx.Scope, locs[0].PC, api.IntelFlavour) disasm, disasmErr = t.client.DisassemblePC(ctx.Scope, locs[0].PC, flavor)
case "-a": case "-a":
v := split2PartsBySpace(rest) v := split2PartsBySpace(rest)
if len(v) != 2 { if len(v) != 2 {
@ -1937,7 +1949,7 @@ func disassCommand(t *Term, ctx callContext, args string) error {
if err != nil { if err != nil {
return fmt.Errorf("wrong argument: %q is not a number", v[1]) return fmt.Errorf("wrong argument: %q is not a number", v[1])
} }
disasm, disasmErr = t.client.DisassembleRange(ctx.Scope, uint64(startpc), uint64(endpc), api.IntelFlavour) disasm, disasmErr = t.client.DisassembleRange(ctx.Scope, uint64(startpc), uint64(endpc), flavor)
case "-l": case "-l":
locs, err := t.client.FindLocation(ctx.Scope, rest, true) locs, err := t.client.FindLocation(ctx.Scope, rest, true)
if err != nil { if err != nil {
@ -1946,7 +1958,7 @@ func disassCommand(t *Term, ctx callContext, args string) error {
if len(locs) != 1 { if len(locs) != 1 {
return errors.New("expression specifies multiple locations") return errors.New("expression specifies multiple locations")
} }
disasm, disasmErr = t.client.DisassemblePC(ctx.Scope, locs[0].PC, api.IntelFlavour) disasm, disasmErr = t.client.DisassemblePC(ctx.Scope, locs[0].PC, flavor)
default: default:
return disasmUsageError return disasmUsageError
} }

View File

@ -130,6 +130,8 @@ func configureSet(t *Term, args string) error {
case reflect.Bool: case reflect.Bool:
v := rest == "true" v := rest == "true"
return reflect.ValueOf(&v), nil return reflect.ValueOf(&v), nil
case reflect.String:
return reflect.ValueOf(&rest), nil
default: default:
return reflect.ValueOf(nil), fmt.Errorf("unsupported type for configuration key %q", cfgname) return reflect.ValueOf(nil), fmt.Errorf("unsupported type for configuration key %q", cfgname)
} }

View File

@ -408,6 +408,8 @@ const (
GNUFlavour = AssemblyFlavour(proc.GNUFlavour) GNUFlavour = AssemblyFlavour(proc.GNUFlavour)
// IntelFlavour will disassemble using Intel assembly syntax. // IntelFlavour will disassemble using Intel assembly syntax.
IntelFlavour = AssemblyFlavour(proc.IntelFlavour) IntelFlavour = AssemblyFlavour(proc.IntelFlavour)
// GoFlavour will disassemble using Go assembly syntax.
GoFlavour = AssemblyFlavour(proc.GoFlavour)
) )
// AsmInstruction represents one assembly instruction at some address // AsmInstruction represents one assembly instruction at some address