Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 // Copyright 2014 The Go Authors. All rights reserved. | 1 // Copyright 2014 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package main | 5 package main |
6 | 6 |
7 import ( | 7 import ( |
8 "debug/goobj" | 8 "debug/goobj" |
9 "fmt" | 9 "fmt" |
10 "go/build" | 10 "go/build" |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
106 Name string // name of section: "text", "rodata", "noptrbss", and so on | 106 Name string // name of section: "text", "rodata", "noptrbss", and so on |
107 VirtAddr Addr // virtual memory address of section base | 107 VirtAddr Addr // virtual memory address of section base |
108 Size Addr // size of section in memory | 108 Size Addr // size of section in memory |
109 Align Addr // required alignment | 109 Align Addr // required alignment |
110 InFile bool // section has image data in file (like data, unlike b ss) | 110 InFile bool // section has image data in file (like data, unlike b ss) |
111 Syms []*Sym // symbols stored in section | 111 Syms []*Sym // symbols stored in section |
112 Segment *Segment // segment containing section | 112 Segment *Segment // segment containing section |
113 } | 113 } |
114 | 114 |
115 func (p *Prog) errorf(format string, args ...interface{}) { | 115 func (p *Prog) errorf(format string, args ...interface{}) { |
116 » // TODO(rsc): Provide a way to redirect. | 116 » if p.Error != nil { |
iant
2014/01/08 21:14:58
Seems like p.Error is the way to redirect, you jus
rsc
2014/01/09 22:00:50
Done.
| |
117 » fmt.Fprintf(os.Stderr, format+"\n", args...) | 117 » » p.Error(fmt.Sprintf(format, args...)) |
118 » } else { | |
119 » » fmt.Fprintf(os.Stderr, format+"\n", args...) | |
120 » } | |
118 p.NumError++ | 121 p.NumError++ |
119 } | 122 } |
120 | 123 |
121 // link is the one-stop convenience method for running a link. | 124 // link is the one-stop convenience method for running a link. |
122 // It writes to w the object file generated from using mainFile as the main pack age. | 125 // It writes to w the object file generated from using mainFile as the main pack age. |
123 func (p *Prog) link(w io.Writer, mainFile string) { | 126 func (p *Prog) link(w io.Writer, mainFile string) { |
124 p.init() | 127 p.init() |
125 p.scan(mainFile) | 128 p.scan(mainFile) |
126 if p.NumError > 0 { | 129 if p.NumError > 0 { |
127 return | 130 return |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
161 } | 164 } |
162 | 165 |
163 // Derive internal context. | 166 // Derive internal context. |
164 p.formatter = formatters[p.Format] | 167 p.formatter = formatters[p.Format] |
165 if p.formatter == nil { | 168 if p.formatter == nil { |
166 p.errorf("unknown output file format %q", p.Format) | 169 p.errorf("unknown output file format %q", p.Format) |
167 return | 170 return |
168 } | 171 } |
169 } | 172 } |
170 | 173 |
171 // goosFormat records the default format each known GOOS value. | 174 // goosFormat records the default format for each known GOOS value. |
iant
2014/01/08 21:14:58
s/format each/format for each/
rsc
2014/01/09 22:00:50
Done.
| |
172 var goosFormat = map[string]string{ | 175 var goosFormat = map[string]string{ |
173 "darwin": "darwin", | 176 "darwin": "darwin", |
174 } | 177 } |
175 | 178 |
176 // formatters records the format implementation for each known format value. | 179 // formatters records the format implementation for each known format value. |
177 var formatters = map[string]formatter{ | 180 var formatters = map[string]formatter{ |
178 "darwin": machoFormat{}, | 181 "darwin": machoFormat{}, |
179 } | 182 } |
LEFT | RIGHT |