Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(11)

Delta Between Two Patch Sets: src/cmd/link/prog.go

Issue 48870044: code review 48870044: cmd/link: intial skeleton of linker written in Go (Closed)
Left Patch Set: diff -r 65a1b6a436af https://code.google.com/p/go/ Created 11 years, 2 months ago
Right Patch Set: diff -r e4b3e3c1edda https://code.google.com/p/go/ Created 11 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
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
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b