2015-01-19 14:34:58 -05:00
|
|
|
// Derived from Inferno utils/6l/obj.c and utils/6l/span.c
|
2016-08-28 17:04:46 -07:00
|
|
|
// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/obj.c
|
|
|
|
|
// https://bitbucket.org/inferno-os/inferno-os/src/default/utils/6l/span.c
|
2015-01-19 14:34:58 -05:00
|
|
|
//
|
|
|
|
|
// Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
|
|
|
|
|
// Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
|
|
|
|
|
// Portions Copyright © 1997-1999 Vita Nuova Limited
|
|
|
|
|
// Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
|
|
|
|
|
// Portions Copyright © 2004,2006 Bruce Ellis
|
|
|
|
|
// Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
|
|
|
|
|
// Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
|
2016-04-10 14:32:26 -07:00
|
|
|
// Portions Copyright © 2009 The Go Authors. All rights reserved.
|
2015-01-19 14:34:58 -05:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
|
|
|
|
package obj
|
|
|
|
|
|
|
|
|
|
import (
|
2017-04-18 12:53:25 -07:00
|
|
|
"cmd/internal/objabi"
|
2017-04-06 10:29:29 -07:00
|
|
|
"fmt"
|
2015-01-19 14:34:58 -05:00
|
|
|
"log"
|
2017-04-06 10:29:29 -07:00
|
|
|
"math"
|
2015-01-19 14:34:58 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func Linknew(arch *LinkArch) *Link {
|
2015-02-23 16:07:24 -05:00
|
|
|
ctxt := new(Link)
|
2017-04-14 06:44:30 -07:00
|
|
|
ctxt.hash = make(map[SymVer]*LSym)
|
2015-01-19 14:34:58 -05:00
|
|
|
ctxt.Arch = arch
|
2017-04-18 12:53:25 -07:00
|
|
|
ctxt.Pathname = objabi.WorkingDir()
|
2015-01-19 14:34:58 -05:00
|
|
|
|
2017-04-18 12:53:25 -07:00
|
|
|
ctxt.Headtype.Set(objabi.GOOS)
|
2015-01-19 14:34:58 -05:00
|
|
|
if ctxt.Headtype < 0 {
|
2017-04-18 12:53:25 -07:00
|
|
|
log.Fatalf("unknown goos %s", objabi.GOOS)
|
2015-01-19 14:34:58 -05:00
|
|
|
}
|
|
|
|
|
|
2016-02-23 10:54:36 -08:00
|
|
|
ctxt.Flag_optimize = true
|
2017-04-18 12:53:25 -07:00
|
|
|
ctxt.Framepointer_enabled = objabi.Framepointer_enabled(objabi.GOOS, arch.Name)
|
2015-01-19 14:34:58 -05:00
|
|
|
return ctxt
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-06 11:47:33 -07:00
|
|
|
// Lookup looks up the symbol with name name and version v.
|
|
|
|
|
// If it does not exist, it creates it.
|
2017-03-10 22:09:43 -08:00
|
|
|
func (ctxt *Link) Lookup(name string, v int) *LSym {
|
2017-04-06 11:47:33 -07:00
|
|
|
return ctxt.LookupInit(name, v, nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// LookupInit looks up the symbol with name name and version v.
|
|
|
|
|
// If it does not exist, it creates it and passes it to initfn for one-time initialization.
|
|
|
|
|
func (ctxt *Link) LookupInit(name string, v int, init func(s *LSym)) *LSym {
|
2017-04-14 06:44:30 -07:00
|
|
|
s := ctxt.hash[SymVer{name, v}]
|
2016-03-15 14:02:08 +11:00
|
|
|
if s != nil {
|
2015-03-08 22:45:13 -04:00
|
|
|
return s
|
2015-01-19 14:34:58 -05:00
|
|
|
}
|
|
|
|
|
|
2017-04-06 11:47:33 -07:00
|
|
|
s = &LSym{Name: name, Version: int16(v)}
|
2017-04-14 06:44:30 -07:00
|
|
|
ctxt.hash[SymVer{name, v}] = s
|
2017-04-06 11:47:33 -07:00
|
|
|
if init != nil {
|
|
|
|
|
init(s)
|
|
|
|
|
}
|
2015-01-19 14:34:58 -05:00
|
|
|
return s
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-06 10:29:29 -07:00
|
|
|
func (ctxt *Link) Float32Sym(f float32) *LSym {
|
|
|
|
|
i := math.Float32bits(f)
|
|
|
|
|
name := fmt.Sprintf("$f32.%08x", i)
|
2017-04-06 11:47:33 -07:00
|
|
|
return ctxt.LookupInit(name, 0, func(s *LSym) {
|
|
|
|
|
s.Size = 4
|
|
|
|
|
s.Set(AttrLocal, true)
|
|
|
|
|
})
|
2017-04-06 10:29:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ctxt *Link) Float64Sym(f float64) *LSym {
|
|
|
|
|
i := math.Float64bits(f)
|
|
|
|
|
name := fmt.Sprintf("$f64.%016x", i)
|
2017-04-06 11:47:33 -07:00
|
|
|
return ctxt.LookupInit(name, 0, func(s *LSym) {
|
|
|
|
|
s.Size = 8
|
|
|
|
|
s.Set(AttrLocal, true)
|
|
|
|
|
})
|
2017-04-06 10:29:29 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (ctxt *Link) Int64Sym(i int64) *LSym {
|
|
|
|
|
name := fmt.Sprintf("$i64.%016x", uint64(i))
|
2017-04-06 11:47:33 -07:00
|
|
|
return ctxt.LookupInit(name, 0, func(s *LSym) {
|
|
|
|
|
s.Size = 8
|
|
|
|
|
s.Set(AttrLocal, true)
|
|
|
|
|
})
|
2017-04-06 10:29:29 -07:00
|
|
|
}
|