Home | History | Annotate | Download | only in objfile

Lines Matching refs:macho

11 	"debug/macho"
20 macho *macho.File
24 f, err := macho.NewFile(r)
32 if f.macho.Symtab == nil {
39 for _, s := range f.macho.Symtab.Syms {
48 for _, s := range f.macho.Symtab.Syms {
60 } else if int(s.Sect) <= len(f.macho.Sections) {
61 sect := f.macho.Sections[s.Sect-1]
82 if sect := f.macho.Section("__text"); sect != nil {
85 if sect := f.macho.Section("__gosymtab"); sect != nil {
90 if sect := f.macho.Section("__gopclntab"); sect != nil {
99 sect := f.macho.Section("__text")
109 switch f.macho.Cpu {
110 case macho.Cpu386:
112 case macho.CpuAmd64:
114 case macho.CpuArm:
116 case macho.CpuPpc64:
133 return f.macho.DWARF()