2015-01-19 14:34:58 -05:00
|
|
|
// Derived from Inferno utils/6l/l.h and related files.
|
|
|
|
|
// http://code.google.com/p/inferno-os/source/browse/utils/6l/l.h
|
|
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
// Portions Copyright © 2009 The Go Authors. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
// 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 "encoding/binary"
|
|
|
|
|
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
// An Addr is an argument to an instruction.
|
|
|
|
|
// The general forms and their encodings are:
|
|
|
|
|
//
|
|
|
|
|
// sym±offset(symkind)(reg)(index*scale)
|
|
|
|
|
// Memory reference at address &sym(symkind) + offset + reg + index*scale.
|
|
|
|
|
// Any of sym(symkind), ±offset, (reg), (index*scale), and *scale can be omitted.
|
|
|
|
|
// If (reg) and *scale are both omitted, the resulting expression (index) is parsed as (reg).
|
|
|
|
|
// To force a parsing as index*scale, write (index*1).
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_MEM
|
|
|
|
|
// name = symkind (NAME_AUTO, ...) or 0 (NAME_NONE)
|
|
|
|
|
// sym = sym
|
|
|
|
|
// offset = ±offset
|
|
|
|
|
// reg = reg (REG_*)
|
|
|
|
|
// index = index (REG_*)
|
|
|
|
|
// scale = scale (1, 2, 4, 8)
|
|
|
|
|
//
|
|
|
|
|
// $<mem>
|
|
|
|
|
// Effective address of memory reference <mem>, defined above.
|
|
|
|
|
// Encoding: same as memory reference, but type = TYPE_ADDR.
|
|
|
|
|
//
|
|
|
|
|
// $<±integer value>
|
|
|
|
|
// This is a special case of $<mem>, in which only ±offset is present.
|
|
|
|
|
// It has a separate type for easy recognition.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_CONST
|
|
|
|
|
// offset = ±integer value
|
|
|
|
|
//
|
|
|
|
|
// *<mem>
|
|
|
|
|
// Indirect reference through memory reference <mem>, defined above.
|
|
|
|
|
// Only used on x86 for CALL/JMP *sym(SB), which calls/jumps to a function
|
|
|
|
|
// pointer stored in the data word sym(SB), not a function named sym(SB).
|
|
|
|
|
// Encoding: same as above, but type = TYPE_INDIR.
|
|
|
|
|
//
|
|
|
|
|
// $*$<mem>
|
|
|
|
|
// No longer used.
|
|
|
|
|
// On machines with actual SB registers, $*$<mem> forced the
|
|
|
|
|
// instruction encoding to use a full 32-bit constant, never a
|
|
|
|
|
// reference relative to SB.
|
|
|
|
|
//
|
|
|
|
|
// $<floating point literal>
|
|
|
|
|
// Floating point constant value.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_FCONST
|
2015-03-16 15:54:44 -04:00
|
|
|
// val = floating point value
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
//
|
|
|
|
|
// $<string literal, up to 8 chars>
|
|
|
|
|
// String literal value (raw bytes used for DATA instruction).
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_SCONST
|
2015-03-16 15:54:44 -04:00
|
|
|
// val = string
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
//
|
|
|
|
|
// <register name>
|
|
|
|
|
// Any register: integer, floating point, control, segment, and so on.
|
|
|
|
|
// If looking for specific register kind, must check type and reg value range.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_REG
|
|
|
|
|
// reg = reg (REG_*)
|
|
|
|
|
//
|
|
|
|
|
// x(PC)
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_BRANCH
|
2015-03-16 15:54:44 -04:00
|
|
|
// val = Prog* reference OR ELSE offset = target pc (branch takes priority)
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
//
|
|
|
|
|
// $±x-±y
|
|
|
|
|
// Final argument to TEXT, specifying local frame size x and argument size y.
|
|
|
|
|
// In this form, x and y are integer literals only, not arbitrary expressions.
|
|
|
|
|
// This avoids parsing ambiguities due to the use of - as a separator.
|
|
|
|
|
// The ± are optional.
|
|
|
|
|
// If the final argument to TEXT omits the -±y, the encoding should still
|
|
|
|
|
// use TYPE_TEXTSIZE (not TYPE_CONST), with u.argsize = ArgsSizeUnknown.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_TEXTSIZE
|
|
|
|
|
// offset = x
|
2015-03-16 15:54:44 -04:00
|
|
|
// val = int32(y)
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
//
|
|
|
|
|
// reg<<shift, reg>>shift, reg->shift, reg@>shift
|
|
|
|
|
// Shifted register value, for ARM.
|
|
|
|
|
// In this form, reg must be a register and shift can be a register or an integer constant.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_SHIFT
|
|
|
|
|
// offset = (reg&15) | shifttype<<5 | count
|
|
|
|
|
// shifttype = 0, 1, 2, 3 for <<, >>, ->, @>
|
|
|
|
|
// count = (reg&15)<<8 | 1<<4 for a register shift count, (n&31)<<7 for an integer constant.
|
|
|
|
|
//
|
|
|
|
|
// (reg, reg)
|
|
|
|
|
// A destination register pair. When used as the last argument of an instruction,
|
|
|
|
|
// this form makes clear that both registers are destinations.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_REGREG
|
|
|
|
|
// reg = first register
|
|
|
|
|
// offset = second register
|
|
|
|
|
//
|
2015-02-27 13:50:26 -08:00
|
|
|
// [reg, reg, reg-reg]
|
|
|
|
|
// Register list for ARM.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_REGLIST
|
|
|
|
|
// offset = bit mask of registers in list; R0 is low bit.
|
|
|
|
|
//
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
// reg, reg
|
2015-03-05 10:39:23 -08:00
|
|
|
// Register pair for ARM.
|
|
|
|
|
// TYPE_REGREG2
|
|
|
|
|
//
|
|
|
|
|
// (reg+reg)
|
|
|
|
|
// Register pair for PPC64.
|
|
|
|
|
// Encoding:
|
|
|
|
|
// type = TYPE_MEM
|
|
|
|
|
// reg = first register
|
|
|
|
|
// index = second register
|
|
|
|
|
// scale = 1
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
//
|
2015-03-16 15:31:32 -04:00
|
|
|
type Addr struct {
|
|
|
|
|
Type int16
|
|
|
|
|
Reg int16
|
|
|
|
|
Index int16
|
|
|
|
|
Scale int16 // Sometimes holds a register.
|
|
|
|
|
Name int8
|
|
|
|
|
Class int8
|
|
|
|
|
Etype uint8
|
2015-03-16 15:54:44 -04:00
|
|
|
Offset int64
|
2015-03-16 15:31:32 -04:00
|
|
|
Width int64
|
2015-03-16 15:54:44 -04:00
|
|
|
Sym *LSym
|
|
|
|
|
Gotype *LSym
|
|
|
|
|
|
|
|
|
|
// argument value:
|
|
|
|
|
// for TYPE_SCONST, a string
|
|
|
|
|
// for TYPE_FCONST, a float64
|
|
|
|
|
// for TYPE_BRANCH, a *Prog (optional)
|
|
|
|
|
// for TYPE_TEXTSIZE, an int32 (optional)
|
|
|
|
|
Val interface{}
|
|
|
|
|
|
|
|
|
|
Node interface{} // for use by compiler
|
2015-03-16 15:31:32 -04:00
|
|
|
}
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
NAME_NONE = 0 + iota
|
|
|
|
|
NAME_EXTERN
|
|
|
|
|
NAME_STATIC
|
|
|
|
|
NAME_AUTO
|
|
|
|
|
NAME_PARAM
|
2015-03-30 00:49:25 +00:00
|
|
|
// A reference to name@GOT(SB) is a reference to the entry in the global offset
|
|
|
|
|
// table for 'name'.
|
|
|
|
|
NAME_GOTREF
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
2015-03-05 14:04:12 -05:00
|
|
|
TYPE_NONE = 0
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
TYPE_BRANCH = 5 + iota
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
TYPE_TEXTSIZE
|
|
|
|
|
TYPE_MEM
|
|
|
|
|
TYPE_CONST
|
|
|
|
|
TYPE_FCONST
|
|
|
|
|
TYPE_SCONST
|
|
|
|
|
TYPE_REG
|
|
|
|
|
TYPE_ADDR
|
|
|
|
|
TYPE_SHIFT
|
|
|
|
|
TYPE_REGREG
|
|
|
|
|
TYPE_REGREG2
|
|
|
|
|
TYPE_INDIR
|
2015-02-27 13:50:26 -08:00
|
|
|
TYPE_REGLIST
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// TODO(rsc): Describe prog.
|
|
|
|
|
// TODO(rsc): Describe TEXT/GLOBL flag in from3, DATA width in from3.
|
2015-03-16 15:31:32 -04:00
|
|
|
type Prog struct {
|
2015-05-29 10:37:11 -07:00
|
|
|
Ctxt *Link
|
|
|
|
|
Link *Prog
|
|
|
|
|
From Addr
|
|
|
|
|
From3 *Addr // optional
|
|
|
|
|
To Addr
|
|
|
|
|
Opt interface{}
|
|
|
|
|
Forwd *Prog
|
|
|
|
|
Pcond *Prog
|
|
|
|
|
Rel *Prog // Source of forward jumps on x86; pcrel on arm
|
|
|
|
|
Pc int64
|
|
|
|
|
Lineno int32
|
|
|
|
|
Spadj int32
|
|
|
|
|
As int16
|
|
|
|
|
Reg int16
|
|
|
|
|
RegTo2 int16 // 2nd register output operand
|
|
|
|
|
Mark uint16
|
|
|
|
|
Optab uint16
|
|
|
|
|
Scond uint8
|
|
|
|
|
Back uint8
|
|
|
|
|
Ft uint8
|
|
|
|
|
Tt uint8
|
|
|
|
|
Isize uint8
|
|
|
|
|
Mode int8
|
2015-03-16 16:46:25 -04:00
|
|
|
|
|
|
|
|
Info ProgInfo
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-27 15:01:44 -04:00
|
|
|
// From3Type returns From3.Type, or TYPE_NONE when From3 is nil.
|
|
|
|
|
func (p *Prog) From3Type() int16 {
|
|
|
|
|
if p.From3 == nil {
|
|
|
|
|
return TYPE_NONE
|
|
|
|
|
}
|
|
|
|
|
return p.From3.Type
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-29 10:00:45 -07:00
|
|
|
// From3Offset returns From3.Offset, or 0 when From3 is nil.
|
|
|
|
|
func (p *Prog) From3Offset() int64 {
|
|
|
|
|
if p.From3 == nil {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
return p.From3.Offset
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-16 16:46:25 -04:00
|
|
|
// ProgInfo holds information about the instruction for use
|
|
|
|
|
// by clients such as the compiler. The exact meaning of this
|
|
|
|
|
// data is up to the client and is not interpreted by the cmd/internal/obj/... packages.
|
|
|
|
|
type ProgInfo struct {
|
2015-10-08 20:24:17 -04:00
|
|
|
_ struct{} // to prevent unkeyed literals. Trailing zero-sized field will take space.
|
|
|
|
|
Flags uint32 // flag bits
|
2015-05-30 15:08:46 -07:00
|
|
|
Reguse uint64 // registers implicitly used by this instruction
|
|
|
|
|
Regset uint64 // registers implicitly set by this instruction
|
|
|
|
|
Regindex uint64 // registers used by addressing mode
|
2015-03-16 15:31:32 -04:00
|
|
|
}
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
|
|
|
|
|
// Prog.as opcodes.
|
|
|
|
|
// These are the portable opcodes, common to all architectures.
|
|
|
|
|
// Each architecture defines many more arch-specific opcodes,
|
|
|
|
|
// with values starting at A_ARCHSPECIFIC.
|
2015-03-02 20:17:20 -08:00
|
|
|
// Each architecture adds an offset to this so each machine has
|
|
|
|
|
// distinct space for its instructions. The offset is a power of
|
|
|
|
|
// two so it can be masked to return to origin zero.
|
|
|
|
|
// See the definitions of ABase386 etc.
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
const (
|
|
|
|
|
AXXX = 0 + iota
|
|
|
|
|
ACALL
|
|
|
|
|
ACHECKNIL
|
|
|
|
|
ADATA
|
|
|
|
|
ADUFFCOPY
|
|
|
|
|
ADUFFZERO
|
|
|
|
|
AEND
|
|
|
|
|
AFUNCDATA
|
|
|
|
|
AGLOBL
|
|
|
|
|
AJMP
|
|
|
|
|
ANOP
|
|
|
|
|
APCDATA
|
|
|
|
|
ARET
|
|
|
|
|
ATEXT
|
|
|
|
|
ATYPE
|
|
|
|
|
AUNDEF
|
|
|
|
|
AUSEFIELD
|
|
|
|
|
AVARDEF
|
|
|
|
|
AVARKILL
|
|
|
|
|
A_ARCHSPECIFIC
|
|
|
|
|
)
|
2015-01-19 14:34:58 -05:00
|
|
|
|
2015-04-18 08:14:08 +12:00
|
|
|
// An LSym is the sort of symbol that is written to an object file.
|
2015-03-16 15:31:32 -04:00
|
|
|
type LSym struct {
|
2015-03-17 16:28:30 +13:00
|
|
|
Name string
|
|
|
|
|
Type int16
|
|
|
|
|
Version int16
|
|
|
|
|
Dupok uint8
|
|
|
|
|
Cfunc uint8
|
|
|
|
|
Nosplit uint8
|
|
|
|
|
Leaf uint8
|
|
|
|
|
Seenglobl uint8
|
|
|
|
|
Onlist uint8
|
2015-04-18 08:14:08 +12:00
|
|
|
// Local means make the symbol local even when compiling Go code to reference Go
|
|
|
|
|
// symbols in other shared libraries, as in this mode symbols are global by
|
|
|
|
|
// default. "local" here means in the sense of the dynamic linker, i.e. not
|
|
|
|
|
// visible outside of the module (shared library or executable) that contains its
|
|
|
|
|
// definition. (When not compiling to support Go shared libraries, all symbols are
|
|
|
|
|
// local in this sense unless there is a cgo_export_* directive).
|
|
|
|
|
Local bool
|
|
|
|
|
Args int32
|
|
|
|
|
Locals int32
|
|
|
|
|
Value int64
|
|
|
|
|
Size int64
|
|
|
|
|
Next *LSym
|
|
|
|
|
Gotype *LSym
|
|
|
|
|
Autom *Auto
|
|
|
|
|
Text *Prog
|
|
|
|
|
Etext *Prog
|
|
|
|
|
Pcln *Pcln
|
|
|
|
|
P []byte
|
|
|
|
|
R []Reloc
|
2015-03-16 15:31:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Pcln struct {
|
|
|
|
|
Pcsp Pcdata
|
|
|
|
|
Pcfile Pcdata
|
|
|
|
|
Pcline Pcdata
|
|
|
|
|
Pcdata []Pcdata
|
|
|
|
|
Funcdata []*LSym
|
|
|
|
|
Funcdataoff []int64
|
|
|
|
|
File []*LSym
|
|
|
|
|
Lastfile *LSym
|
|
|
|
|
Lastindex int
|
|
|
|
|
}
|
2015-01-19 14:34:58 -05:00
|
|
|
|
|
|
|
|
// LSym.type
|
|
|
|
|
const (
|
|
|
|
|
Sxxx = iota
|
|
|
|
|
STEXT
|
|
|
|
|
SELFRXSECT
|
2015-05-21 13:07:19 +12:00
|
|
|
|
2015-01-19 14:34:58 -05:00
|
|
|
STYPE
|
|
|
|
|
SSTRING
|
|
|
|
|
SGOSTRING
|
|
|
|
|
SGOFUNC
|
2015-07-22 14:59:56 -04:00
|
|
|
SGCBITS
|
2015-01-19 14:34:58 -05:00
|
|
|
SRODATA
|
|
|
|
|
SFUNCTAB
|
2015-05-21 13:07:19 +12:00
|
|
|
|
|
|
|
|
// Types STYPE-SFUNCTAB above are written to the .rodata section by default.
|
|
|
|
|
// When linking a shared object, some conceptually "read only" types need to
|
|
|
|
|
// be written to by relocations and putting them in a section called
|
|
|
|
|
// ".rodata" interacts poorly with the system linkers. The GNU linkers
|
|
|
|
|
// support this situation by arranging for sections of the name
|
|
|
|
|
// ".data.rel.ro.XXX" to be mprotected read only by the dynamic linker after
|
|
|
|
|
// relocations have applied, so when the Go linker is creating a shared
|
|
|
|
|
// object it checks all objects of the above types and bumps any object that
|
|
|
|
|
// has a relocation to it to the corresponding type below, which are then
|
|
|
|
|
// written to sections with appropriate magic names.
|
|
|
|
|
STYPERELRO
|
|
|
|
|
SSTRINGRELRO
|
|
|
|
|
SGOSTRINGRELRO
|
|
|
|
|
SGOFUNCRELRO
|
|
|
|
|
SGCBITSRELRO
|
|
|
|
|
SRODATARELRO
|
|
|
|
|
SFUNCTABRELRO
|
|
|
|
|
|
2015-01-19 14:34:58 -05:00
|
|
|
STYPELINK
|
|
|
|
|
SSYMTAB
|
|
|
|
|
SPCLNTAB
|
|
|
|
|
SELFROSECT
|
|
|
|
|
SMACHOPLT
|
|
|
|
|
SELFSECT
|
|
|
|
|
SMACHO
|
|
|
|
|
SMACHOGOT
|
|
|
|
|
SWINDOWS
|
|
|
|
|
SELFGOT
|
|
|
|
|
SNOPTRDATA
|
|
|
|
|
SINITARR
|
|
|
|
|
SDATA
|
|
|
|
|
SBSS
|
|
|
|
|
SNOPTRBSS
|
|
|
|
|
STLSBSS
|
|
|
|
|
SXREF
|
|
|
|
|
SMACHOSYMSTR
|
|
|
|
|
SMACHOSYMTAB
|
|
|
|
|
SMACHOINDIRECTPLT
|
|
|
|
|
SMACHOINDIRECTGOT
|
|
|
|
|
SFILE
|
|
|
|
|
SFILEPATH
|
|
|
|
|
SCONST
|
|
|
|
|
SDYNIMPORT
|
|
|
|
|
SHOSTOBJ
|
2015-06-27 12:57:06 -07:00
|
|
|
SSUB = 1 << 8
|
|
|
|
|
SMASK = SSUB - 1
|
|
|
|
|
SHIDDEN = 1 << 9
|
|
|
|
|
SCONTAINER = 1 << 10 // has a sub-symbol
|
2015-01-19 14:34:58 -05:00
|
|
|
)
|
|
|
|
|
|
2015-03-16 15:31:32 -04:00
|
|
|
type Reloc struct {
|
2015-03-17 16:28:30 +13:00
|
|
|
Off int32
|
|
|
|
|
Siz uint8
|
|
|
|
|
Type int32
|
|
|
|
|
Add int64
|
|
|
|
|
Sym *LSym
|
2015-03-16 15:31:32 -04:00
|
|
|
}
|
|
|
|
|
|
2015-01-19 14:34:58 -05:00
|
|
|
// Reloc.type
|
|
|
|
|
const (
|
|
|
|
|
R_ADDR = 1 + iota
|
|
|
|
|
R_ADDRPOWER
|
2015-04-03 04:37:18 -04:00
|
|
|
R_ADDRARM64
|
2015-01-19 14:34:58 -05:00
|
|
|
R_SIZE
|
|
|
|
|
R_CALL
|
|
|
|
|
R_CALLARM
|
cmd/internal/obj, cmd/internal/obj/arm64: add support for GOARCH=arm64
ARM64 (ARMv8) has 32 general purpose, 64-bit integer registers
(R0-R31), 32 64-bit scalar floating point registers (F0-F31), and
32 128-bit vector registers (unused, V0-V31).
R31 is either the stack pointer (RSP), or the zero register (ZR),
depending on the instruction. Note the distinction between the
hardware stack pointer, RSP, and the virtual stack pointer SP.
The (hardware) stack pointer must be 16-byte aligned at all times;
the RSP register itself must be aligned, offset(RSP) only has to
have natural alignment.
Instructions are fixed-width, and are 32-bit wide. ARM64 supports
ARMv7 too (32-bit ARM), but not in the same process. In general,
there is not much in common between 32-bit ARM and ARM64, it's a
new architecture.
All implementations have floating point instructions.
This change adds a Prog.To3 field analogous to Prog.To. It is used
by exclusive load/store instructions such as STLXR which read from
one register, and write to both a register and a memory address.
STLXRW R1, (R0), R3
This will store the word contained in R1 to the memory address
pointed by R0. R3 will be updated with the status result of the
store. It is used to implement atomic operations.
No other changes are made to the portable Prog and Addr structures.
Change-Id: Ie839029aa5265bbad35769d9689eca11e1c48c47
Reviewed-on: https://go-review.googlesource.com/7046
Reviewed-by: Russ Cox <rsc@golang.org>
2015-03-08 13:58:16 +01:00
|
|
|
R_CALLARM64
|
2015-01-19 14:34:58 -05:00
|
|
|
R_CALLIND
|
|
|
|
|
R_CALLPOWER
|
|
|
|
|
R_CONST
|
|
|
|
|
R_PCREL
|
2015-09-02 11:23:15 +12:00
|
|
|
// R_TLS_LE, used on 386, amd64, and ARM, resolves to the offset of the
|
|
|
|
|
// thread-local symbol from the thread local base and is used to implement the
|
|
|
|
|
// "local exec" model for tls access (r.Sym is not set on intel platforms but is
|
|
|
|
|
// set to a TLS symbol -- runtime.tlsg -- in the linker when externally linking).
|
2015-01-19 14:34:58 -05:00
|
|
|
R_TLS_LE
|
2015-09-02 11:23:15 +12:00
|
|
|
// R_TLS_IE, used 386, amd64, and ARM resolves to the PC-relative offset to a GOT
|
|
|
|
|
// slot containing the offset from the thread-local symbol from the thread local
|
|
|
|
|
// base and is used to implemented the "initial exec" model for tls access (r.Sym
|
|
|
|
|
// is not set on intel platforms but is set to a TLS symbol -- runtime.tlsg -- in
|
|
|
|
|
// the linker when externally linking).
|
2015-01-19 14:34:58 -05:00
|
|
|
R_TLS_IE
|
|
|
|
|
R_GOTOFF
|
|
|
|
|
R_PLT0
|
|
|
|
|
R_PLT1
|
|
|
|
|
R_PLT2
|
|
|
|
|
R_USEFIELD
|
|
|
|
|
R_POWER_TOC
|
2015-03-30 00:49:25 +00:00
|
|
|
R_GOTPCREL
|
2015-01-19 14:34:58 -05:00
|
|
|
)
|
|
|
|
|
|
2015-03-16 15:31:32 -04:00
|
|
|
type Auto struct {
|
|
|
|
|
Asym *LSym
|
|
|
|
|
Link *Auto
|
|
|
|
|
Aoffset int32
|
|
|
|
|
Name int16
|
|
|
|
|
Gotype *LSym
|
|
|
|
|
}
|
|
|
|
|
|
[dev.cc] cmd/internal/obj: reconvert from liblink
cmd/internal/obj reconverted using rsc.io/c2go rev 2a95256.
- Brings in new, more regular Prog, Addr definitions
- Add Prog* argument to oclass in liblink/asm[68].c, for c2go conversion.
- Update objwriter for change in TEXT size encoding.
- Merge 5a, 6a, 8a, 9a changes into new5a, new6a, new8a, new9a (by hand).
- Add +build ignore to cmd/asm/internal/{addr,arch,asm}, cmd/asm.
They need to be updated for the changes.
- Reenable verifyAsm in cmd/go.
- Reenable GOOBJ=2 mode by default in liblink.
All architectures build successfully again.
Change-Id: I2c845c5d365aa484b570476898171bee657b626d
Reviewed-on: https://go-review.googlesource.com/3963
Reviewed-by: Rob Pike <r@golang.org>
2015-02-05 03:57:44 -05:00
|
|
|
// Auto.name
|
2015-01-19 14:34:58 -05:00
|
|
|
const (
|
|
|
|
|
A_AUTO = 1 + iota
|
|
|
|
|
A_PARAM
|
|
|
|
|
)
|
|
|
|
|
|
2015-03-16 15:31:32 -04:00
|
|
|
type Pcdata struct {
|
|
|
|
|
P []byte
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-19 14:34:58 -05:00
|
|
|
// Pcdata iterator.
|
2015-03-17 16:28:30 +13:00
|
|
|
// for(pciterinit(ctxt, &it, &pcd); !it.done; pciternext(&it)) { it.value holds in [it.pc, it.nextpc) }
|
2015-03-16 15:31:32 -04:00
|
|
|
type Pciter struct {
|
|
|
|
|
d Pcdata
|
|
|
|
|
p []byte
|
|
|
|
|
pc uint32
|
|
|
|
|
nextpc uint32
|
|
|
|
|
pcscale uint32
|
|
|
|
|
value int32
|
|
|
|
|
start int
|
|
|
|
|
done int
|
|
|
|
|
}
|
2015-01-19 14:34:58 -05:00
|
|
|
|
|
|
|
|
// symbol version, incremented each time a file is loaded.
|
|
|
|
|
// version==1 is reserved for savehist.
|
|
|
|
|
const (
|
|
|
|
|
HistVersion = 1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Link holds the context for writing object code from a compiler
|
|
|
|
|
// to be linker input or for reading that input into the linker.
|
2015-03-16 15:31:32 -04:00
|
|
|
type Link struct {
|
|
|
|
|
Goarm int32
|
|
|
|
|
Headtype int
|
|
|
|
|
Arch *LinkArch
|
|
|
|
|
Debugasm int32
|
|
|
|
|
Debugvlog int32
|
|
|
|
|
Debugdivmod int32
|
|
|
|
|
Debugpcln int32
|
|
|
|
|
Flag_shared int32
|
2015-03-30 00:49:25 +00:00
|
|
|
Flag_dynlink bool
|
2015-03-16 15:31:32 -04:00
|
|
|
Bso *Biobuf
|
|
|
|
|
Pathname string
|
|
|
|
|
Windows int32
|
|
|
|
|
Goroot string
|
|
|
|
|
Goroot_final string
|
|
|
|
|
Enforce_data_order int32
|
|
|
|
|
Hash map[SymVer]*LSym
|
|
|
|
|
LineHist LineHist
|
|
|
|
|
Imports []string
|
|
|
|
|
Plist *Plist
|
|
|
|
|
Plast *Plist
|
|
|
|
|
Sym_div *LSym
|
|
|
|
|
Sym_divu *LSym
|
|
|
|
|
Sym_mod *LSym
|
|
|
|
|
Sym_modu *LSym
|
|
|
|
|
Plan9privates *LSym
|
|
|
|
|
Curp *Prog
|
|
|
|
|
Printp *Prog
|
|
|
|
|
Blitrl *Prog
|
|
|
|
|
Elitrl *Prog
|
|
|
|
|
Rexflag int
|
2015-09-01 14:56:37 +03:00
|
|
|
Vexflag int
|
2015-03-16 15:31:32 -04:00
|
|
|
Rep int
|
|
|
|
|
Repn int
|
|
|
|
|
Lock int
|
|
|
|
|
Asmode int
|
|
|
|
|
Andptr []byte
|
|
|
|
|
And [100]uint8
|
|
|
|
|
Instoffset int64
|
|
|
|
|
Autosize int32
|
|
|
|
|
Armsize int32
|
|
|
|
|
Pc int64
|
|
|
|
|
Diag func(string, ...interface{})
|
|
|
|
|
Mode int
|
|
|
|
|
Cursym *LSym
|
|
|
|
|
Version int
|
|
|
|
|
Textp *LSym
|
|
|
|
|
Etextp *LSym
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SymVer struct {
|
|
|
|
|
Name string
|
2015-04-19 21:00:48 -07:00
|
|
|
Version int // TODO: make int16 to match LSym.Version?
|
2015-03-16 15:31:32 -04:00
|
|
|
}
|
|
|
|
|
|
2015-01-19 14:34:58 -05:00
|
|
|
// LinkArch is the definition of a single architecture.
|
2015-03-16 15:31:32 -04:00
|
|
|
type LinkArch struct {
|
|
|
|
|
ByteOrder binary.ByteOrder
|
|
|
|
|
Name string
|
|
|
|
|
Thechar int
|
|
|
|
|
Preprocess func(*Link, *LSym)
|
|
|
|
|
Assemble func(*Link, *LSym)
|
|
|
|
|
Follow func(*Link, *LSym)
|
|
|
|
|
Progedit func(*Link, *Prog)
|
|
|
|
|
UnaryDst map[int]bool // Instruction takes one operand, a destination.
|
|
|
|
|
Minlc int
|
|
|
|
|
Ptrsize int
|
|
|
|
|
Regsize int
|
|
|
|
|
}
|
2015-01-19 14:34:58 -05:00
|
|
|
|
|
|
|
|
/* executable header types */
|
|
|
|
|
const (
|
|
|
|
|
Hunknown = 0 + iota
|
|
|
|
|
Hdarwin
|
|
|
|
|
Hdragonfly
|
|
|
|
|
Helf
|
|
|
|
|
Hfreebsd
|
|
|
|
|
Hlinux
|
|
|
|
|
Hnacl
|
|
|
|
|
Hnetbsd
|
|
|
|
|
Hopenbsd
|
|
|
|
|
Hplan9
|
|
|
|
|
Hsolaris
|
|
|
|
|
Hwindows
|
|
|
|
|
)
|
|
|
|
|
|
2015-03-16 15:31:32 -04:00
|
|
|
type Plist struct {
|
|
|
|
|
Name *LSym
|
|
|
|
|
Firstpc *Prog
|
|
|
|
|
Recur int
|
|
|
|
|
Link *Plist
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-08 22:41:48 -04:00
|
|
|
/*
|
|
|
|
|
* start a new Prog list.
|
|
|
|
|
*/
|
|
|
|
|
func Linknewplist(ctxt *Link) *Plist {
|
|
|
|
|
pl := new(Plist)
|
|
|
|
|
if ctxt.Plist == nil {
|
|
|
|
|
ctxt.Plist = pl
|
|
|
|
|
} else {
|
|
|
|
|
ctxt.Plast.Link = pl
|
|
|
|
|
}
|
|
|
|
|
ctxt.Plast = pl
|
|
|
|
|
return pl
|
|
|
|
|
}
|