mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
all: fix problematic comments
Change-Id: If092ae7c72b66f172ae32fa6c7294a7ac250362e Reviewed-on: https://go-review.googlesource.com/c/go/+/463995 Reviewed-by: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
4373c6f576
commit
dbfdc446fe
10 changed files with 13 additions and 13 deletions
|
|
@ -85,7 +85,7 @@ func (ctxt *Link) LookupABI(name string, abi ABI) *LSym {
|
||||||
return ctxt.LookupABIInit(name, abi, nil)
|
return ctxt.LookupABIInit(name, abi, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LookupABI looks up a symbol with the given ABI.
|
// LookupABIInit looks up a symbol with the given ABI.
|
||||||
// If it does not exist, it creates it and
|
// If it does not exist, it creates it and
|
||||||
// passes it to init for one-time initialization.
|
// passes it to init for one-time initialization.
|
||||||
func (ctxt *Link) LookupABIInit(name string, abi ABI, init func(s *LSym)) *LSym {
|
func (ctxt *Link) LookupABIInit(name string, abi ABI, init func(s *LSym)) *LSym {
|
||||||
|
|
|
||||||
|
|
@ -434,7 +434,7 @@ func (x lico) withIsStmt() lico {
|
||||||
return x.withStmt(PosIsStmt)
|
return x.withStmt(PosIsStmt)
|
||||||
}
|
}
|
||||||
|
|
||||||
// withLogue attaches a prologue/epilogue attribute to a lico
|
// withXlogue attaches a prologue/epilogue attribute to a lico
|
||||||
func (x lico) withXlogue(xlogue PosXlogue) lico {
|
func (x lico) withXlogue(xlogue PosXlogue) lico {
|
||||||
if x == 0 {
|
if x == 0 {
|
||||||
if xlogue == 0 {
|
if xlogue == 0 {
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ func (m *Metrics) Report(w io.Writer) {
|
||||||
fmt.Fprintf(w, "%s 1 %d ns/op\n", makeBenchString("total time"+gcString), totTime.Nanoseconds())
|
fmt.Fprintf(w, "%s 1 %d ns/op\n", makeBenchString("total time"+gcString), totTime.Nanoseconds())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Starts marks the beginning of a new measurement phase.
|
// Start marks the beginning of a new measurement phase.
|
||||||
// Once a metric is started, it continues until either a Report is issued, or another Start is called.
|
// Once a metric is started, it continues until either a Report is issued, or another Start is called.
|
||||||
func (m *Metrics) Start(name string) {
|
func (m *Metrics) Start(name string) {
|
||||||
if m == nil {
|
if m == nil {
|
||||||
|
|
|
||||||
|
|
@ -127,7 +127,7 @@ func (ctxt *Link) mkArchSym(name string, ver int, ls *loader.Sym) {
|
||||||
ctxt.loader.SetAttrReachable(*ls, true)
|
ctxt.loader.SetAttrReachable(*ls, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
// mkArchVecSym is similar to setArchSyms, but operates on elements within
|
// mkArchSymVec is similar to setArchSyms, but operates on elements within
|
||||||
// a slice, where each element corresponds to some symbol version.
|
// a slice, where each element corresponds to some symbol version.
|
||||||
func (ctxt *Link) mkArchSymVec(name string, ver int, ls []loader.Sym) {
|
func (ctxt *Link) mkArchSymVec(name string, ver int, ls []loader.Sym) {
|
||||||
ls[ver] = ctxt.loader.LookupOrCreateSym(name, ver)
|
ls[ver] = ctxt.loader.LookupOrCreateSym(name, ver)
|
||||||
|
|
|
||||||
|
|
@ -1281,7 +1281,7 @@ func (l *Loader) SetSymAlign(i Sym, align int32) {
|
||||||
l.align[i] = uint8(bits.Len32(uint32(align)))
|
l.align[i] = uint8(bits.Len32(uint32(align)))
|
||||||
}
|
}
|
||||||
|
|
||||||
// SymValue returns the section of the i-th symbol. i is global index.
|
// SymSect returns the section of the i-th symbol. i is global index.
|
||||||
func (l *Loader) SymSect(i Sym) *sym.Section {
|
func (l *Loader) SymSect(i Sym) *sym.Section {
|
||||||
if int(i) >= len(l.symSects) {
|
if int(i) >= len(l.symSects) {
|
||||||
// symSects is extended lazily -- it the sym in question is
|
// symSects is extended lazily -- it the sym in question is
|
||||||
|
|
@ -1320,7 +1320,7 @@ func (l *Loader) NewSection() *sym.Section {
|
||||||
return sect
|
return sect
|
||||||
}
|
}
|
||||||
|
|
||||||
// SymDynImplib returns the "dynimplib" attribute for the specified
|
// SymDynimplib returns the "dynimplib" attribute for the specified
|
||||||
// symbol, making up a portion of the info for a symbol specified
|
// symbol, making up a portion of the info for a symbol specified
|
||||||
// on a "cgo_import_dynamic" compiler directive.
|
// on a "cgo_import_dynamic" compiler directive.
|
||||||
func (l *Loader) SymDynimplib(i Sym) string {
|
func (l *Loader) SymDynimplib(i Sym) string {
|
||||||
|
|
@ -1503,7 +1503,7 @@ func (l *Loader) SetSymDynid(i Sym, val int32) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// DynIdSyms returns the set of symbols for which dynID is set to an
|
// DynidSyms returns the set of symbols for which dynID is set to an
|
||||||
// interesting (non-default) value. This is expected to be a fairly
|
// interesting (non-default) value. This is expected to be a fairly
|
||||||
// small set.
|
// small set.
|
||||||
func (l *Loader) DynidSyms() []Sym {
|
func (l *Loader) DynidSyms() []Sym {
|
||||||
|
|
@ -1836,7 +1836,7 @@ func (l *Loader) Relocs(i Sym) Relocs {
|
||||||
return l.relocs(r, li)
|
return l.relocs(r, li)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Relocs returns a Relocs object given a local sym index and reader.
|
// relocs returns a Relocs object given a local sym index and reader.
|
||||||
func (l *Loader) relocs(r *oReader, li uint32) Relocs {
|
func (l *Loader) relocs(r *oReader, li uint32) Relocs {
|
||||||
var rs []goobj.Reloc
|
var rs []goobj.Reloc
|
||||||
if l.isExtReader(r) {
|
if l.isExtReader(r) {
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ func newReadlineUI() driver.UI {
|
||||||
return &readlineUI{term: term.NewTerminal(rw, "")}
|
return &readlineUI{term: term.NewTerminal(rw, "")}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Read returns a line of text (a command) read from the user.
|
// ReadLine returns a line of text (a command) read from the user.
|
||||||
// prompt is printed before reading the command.
|
// prompt is printed before reading the command.
|
||||||
func (r *readlineUI) ReadLine(prompt string) (string, error) {
|
func (r *readlineUI) ReadLine(prompt string) (string, error) {
|
||||||
r.term.SetPrompt(prompt)
|
r.term.SetPrompt(prompt)
|
||||||
|
|
|
||||||
|
|
@ -245,7 +245,7 @@ func feSquareGeneric(v, a *Element) {
|
||||||
v.carryPropagate()
|
v.carryPropagate()
|
||||||
}
|
}
|
||||||
|
|
||||||
// carryPropagate brings the limbs below 52 bits by applying the reduction
|
// carryPropagateGeneric brings the limbs below 52 bits by applying the reduction
|
||||||
// identity (a * 2²⁵⁵ + b = a * 19 + b) to the l4 carry.
|
// identity (a * 2²⁵⁵ + b = a * 19 + b) to the l4 carry.
|
||||||
func (v *Element) carryPropagateGeneric() *Element {
|
func (v *Element) carryPropagateGeneric() *Element {
|
||||||
c0 := v.l0 >> 51
|
c0 := v.l0 >> 51
|
||||||
|
|
|
||||||
|
|
@ -811,7 +811,7 @@ func (c *Conn) readFromUntil(r io.Reader, n int) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// sendAlert sends a TLS alert message.
|
// sendAlertLocked sends a TLS alert message.
|
||||||
func (c *Conn) sendAlertLocked(err alert) error {
|
func (c *Conn) sendAlertLocked(err alert) error {
|
||||||
switch err {
|
switch err {
|
||||||
case alertNoRenegotiation, alertCloseNotify:
|
case alertNoRenegotiation, alertCloseNotify:
|
||||||
|
|
|
||||||
|
|
@ -465,7 +465,7 @@ func isZero(val reflect.Value) bool {
|
||||||
panic("unknown type in isZero " + val.Type().String())
|
panic("unknown type in isZero " + val.Type().String())
|
||||||
}
|
}
|
||||||
|
|
||||||
// encGobEncoder encodes a value that implements the GobEncoder interface.
|
// encodeGobEncoder encodes a value that implements the GobEncoder interface.
|
||||||
// The data is sent as a byte array.
|
// The data is sent as a byte array.
|
||||||
func (enc *Encoder) encodeGobEncoder(b *encBuffer, ut *userTypeInfo, v reflect.Value) {
|
func (enc *Encoder) encodeGobEncoder(b *encBuffer, ut *userTypeInfo, v reflect.Value) {
|
||||||
// TODO: should we catch panics from the called method?
|
// TODO: should we catch panics from the called method?
|
||||||
|
|
|
||||||
|
|
@ -803,7 +803,7 @@ func (s *ss) convertFloat(str string, n int) float64 {
|
||||||
return f
|
return f
|
||||||
}
|
}
|
||||||
|
|
||||||
// convertComplex converts the next token to a complex128 value.
|
// scanComplex converts the next token to a complex128 value.
|
||||||
// The atof argument is a type-specific reader for the underlying type.
|
// The atof argument is a type-specific reader for the underlying type.
|
||||||
// If we're reading complex64, atof will parse float32s and convert them
|
// If we're reading complex64, atof will parse float32s and convert them
|
||||||
// to float64's to avoid reproducing this code for each complex type.
|
// to float64's to avoid reproducing this code for each complex type.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue