2015-09-10 11:32:49 -04:00
|
|
|
// Inferno utils/5l/asm.c
|
|
|
|
|
// http://code.google.com/p/inferno-os/source/browse/utils/5l/asm.c
|
|
|
|
|
//
|
|
|
|
|
// 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-09-10 11:32:49 -04: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 mips64
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"cmd/internal/obj"
|
2016-04-06 12:01:40 -07:00
|
|
|
"cmd/internal/sys"
|
2015-09-10 11:32:49 -04:00
|
|
|
"cmd/link/internal/ld"
|
|
|
|
|
"fmt"
|
|
|
|
|
"log"
|
|
|
|
|
)
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func gentext(ctxt *ld.Link) {}
|
2015-09-10 11:32:49 -04:00
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func adddynrel(ctxt *ld.Link, s *ld.Symbol, r *ld.Reloc) {
|
2015-09-10 11:32:49 -04:00
|
|
|
log.Fatalf("adddynrel not implemented")
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func elfreloc1(ctxt *ld.Link, r *ld.Reloc, sectoff int64) int {
|
2016-04-27 22:18:09 -04:00
|
|
|
// mips64 ELF relocation (endian neutral)
|
|
|
|
|
// offset uint64
|
|
|
|
|
// sym uint32
|
|
|
|
|
// ssym uint8
|
|
|
|
|
// type3 uint8
|
|
|
|
|
// type2 uint8
|
|
|
|
|
// type uint8
|
|
|
|
|
// addend int64
|
|
|
|
|
|
|
|
|
|
ld.Thearch.Vput(uint64(sectoff))
|
|
|
|
|
|
|
|
|
|
elfsym := r.Xsym.ElfsymForReloc()
|
|
|
|
|
ld.Thearch.Lput(uint32(elfsym))
|
|
|
|
|
ld.Cput(0)
|
|
|
|
|
ld.Cput(0)
|
|
|
|
|
ld.Cput(0)
|
|
|
|
|
switch r.Type {
|
|
|
|
|
default:
|
|
|
|
|
return -1
|
|
|
|
|
|
|
|
|
|
case obj.R_ADDR:
|
|
|
|
|
switch r.Siz {
|
|
|
|
|
case 4:
|
|
|
|
|
ld.Cput(ld.R_MIPS_32)
|
|
|
|
|
case 8:
|
|
|
|
|
ld.Cput(ld.R_MIPS_64)
|
|
|
|
|
default:
|
|
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case obj.R_ADDRMIPS:
|
|
|
|
|
ld.Cput(ld.R_MIPS_LO16)
|
|
|
|
|
|
|
|
|
|
case obj.R_ADDRMIPSU:
|
|
|
|
|
ld.Cput(ld.R_MIPS_HI16)
|
|
|
|
|
|
2016-04-27 22:18:14 -04:00
|
|
|
case obj.R_ADDRMIPSTLS:
|
|
|
|
|
ld.Cput(ld.R_MIPS_TLS_TPREL_LO16)
|
|
|
|
|
|
2016-04-27 22:18:09 -04:00
|
|
|
case obj.R_CALLMIPS,
|
|
|
|
|
obj.R_JMPMIPS:
|
|
|
|
|
ld.Cput(ld.R_MIPS_26)
|
|
|
|
|
}
|
|
|
|
|
ld.Thearch.Vput(uint64(r.Xadd))
|
|
|
|
|
|
|
|
|
|
return 0
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func elfsetupplt(ctxt *ld.Link) {
|
2015-09-10 11:32:49 -04:00
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func machoreloc1(ctxt *ld.Link, r *ld.Reloc, sectoff int64) int {
|
2015-09-10 11:32:49 -04:00
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func archreloc(ctxt *ld.Link, r *ld.Reloc, s *ld.Symbol, val *int64) int {
|
2015-09-10 11:32:49 -04:00
|
|
|
if ld.Linkmode == ld.LinkExternal {
|
2016-04-27 22:18:09 -04:00
|
|
|
switch r.Type {
|
|
|
|
|
default:
|
|
|
|
|
return -1
|
|
|
|
|
|
|
|
|
|
case obj.R_ADDRMIPS,
|
|
|
|
|
obj.R_ADDRMIPSU:
|
|
|
|
|
r.Done = 0
|
|
|
|
|
|
|
|
|
|
// set up addend for eventual relocation via outer symbol.
|
|
|
|
|
rs := r.Sym
|
|
|
|
|
r.Xadd = r.Add
|
|
|
|
|
for rs.Outer != nil {
|
2016-08-19 22:40:38 -04:00
|
|
|
r.Xadd += ld.Symaddr(ctxt, rs) - ld.Symaddr(ctxt, rs.Outer)
|
2016-04-27 22:18:09 -04:00
|
|
|
rs = rs.Outer
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if rs.Type != obj.SHOSTOBJ && rs.Type != obj.SDYNIMPORT && rs.Sect == nil {
|
2016-08-21 13:52:23 -04:00
|
|
|
ctxt.Diag("missing section for %s", rs.Name)
|
2016-04-27 22:18:09 -04:00
|
|
|
}
|
|
|
|
|
r.Xsym = rs
|
|
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
|
2016-04-27 22:18:14 -04:00
|
|
|
case obj.R_ADDRMIPSTLS,
|
|
|
|
|
obj.R_CALLMIPS,
|
2016-04-27 22:18:09 -04:00
|
|
|
obj.R_JMPMIPS:
|
|
|
|
|
r.Done = 0
|
|
|
|
|
r.Xsym = r.Sym
|
|
|
|
|
r.Xadd = r.Add
|
|
|
|
|
return 0
|
|
|
|
|
}
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch r.Type {
|
|
|
|
|
case obj.R_CONST:
|
|
|
|
|
*val = r.Add
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
case obj.R_GOTOFF:
|
2016-08-21 13:52:23 -04:00
|
|
|
*val = ld.Symaddr(ctxt, r.Sym) + r.Add - ld.Symaddr(ctxt, ld.Linklookup(ctxt, ".got", 0))
|
2015-09-10 11:32:49 -04:00
|
|
|
return 0
|
|
|
|
|
|
2016-04-27 22:18:02 -04:00
|
|
|
case obj.R_ADDRMIPS,
|
|
|
|
|
obj.R_ADDRMIPSU:
|
2016-08-19 22:40:38 -04:00
|
|
|
t := ld.Symaddr(ctxt, r.Sym) + r.Add
|
2016-04-06 12:01:40 -07:00
|
|
|
o1 := ld.SysArch.ByteOrder.Uint32(s.P[r.Off:])
|
2016-04-27 22:18:02 -04:00
|
|
|
if r.Type == obj.R_ADDRMIPS {
|
|
|
|
|
*val = int64(o1&0xffff0000 | uint32(t)&0xffff)
|
2015-09-10 11:32:49 -04:00
|
|
|
} else {
|
2016-04-27 22:18:02 -04:00
|
|
|
*val = int64(o1&0xffff0000 | uint32((t+1<<15)>>16)&0xffff)
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
return 0
|
|
|
|
|
|
2016-04-27 22:18:14 -04:00
|
|
|
case obj.R_ADDRMIPSTLS:
|
|
|
|
|
// thread pointer is at 0x7000 offset from the start of TLS data area
|
2016-08-19 22:40:38 -04:00
|
|
|
t := ld.Symaddr(ctxt, r.Sym) + r.Add - 0x7000
|
2016-04-27 22:18:14 -04:00
|
|
|
if t < -32768 || t >= 32678 {
|
2016-08-21 13:52:23 -04:00
|
|
|
ctxt.Diag("TLS offset out of range %d", t)
|
2016-04-27 22:18:14 -04:00
|
|
|
}
|
|
|
|
|
o1 := ld.SysArch.ByteOrder.Uint32(s.P[r.Off:])
|
|
|
|
|
*val = int64(o1&0xffff0000 | uint32(t)&0xffff)
|
|
|
|
|
return 0
|
|
|
|
|
|
2015-09-10 11:32:49 -04:00
|
|
|
case obj.R_CALLMIPS,
|
|
|
|
|
obj.R_JMPMIPS:
|
|
|
|
|
// Low 26 bits = (S + A) >> 2
|
2016-08-19 22:40:38 -04:00
|
|
|
t := ld.Symaddr(ctxt, r.Sym) + r.Add
|
2016-04-06 12:01:40 -07:00
|
|
|
o1 := ld.SysArch.ByteOrder.Uint32(s.P[r.Off:])
|
2015-09-10 11:32:49 -04:00
|
|
|
*val = int64(o1&0xfc000000 | uint32(t>>2)&^0xfc000000)
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
func archrelocvariant(ctxt *ld.Link, r *ld.Reloc, s *ld.Symbol, t int64) int64 {
|
2015-09-10 11:32:49 -04:00
|
|
|
return -1
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-19 22:40:38 -04:00
|
|
|
func asmb(ctxt *ld.Link) {
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f asmb\n", obj.Cputime())
|
2016-08-24 20:44:09 +10:00
|
|
|
ctxt.Bso.Flush()
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ld.Iself {
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Asmbelfsetup(ctxt)
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sect := ld.Segtext.Sect
|
|
|
|
|
ld.Cseek(int64(sect.Vaddr - ld.Segtext.Vaddr + ld.Segtext.Fileoff))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Codeblk(ctxt, int64(sect.Vaddr), int64(sect.Length))
|
2015-09-10 11:32:49 -04:00
|
|
|
for sect = sect.Next; sect != nil; sect = sect.Next {
|
|
|
|
|
ld.Cseek(int64(sect.Vaddr - ld.Segtext.Vaddr + ld.Segtext.Fileoff))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Datblk(ctxt, int64(sect.Vaddr), int64(sect.Length))
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ld.Segrodata.Filelen > 0 {
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f rodatblk\n", obj.Cputime())
|
2016-08-24 20:44:09 +10:00
|
|
|
ctxt.Bso.Flush()
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ld.Cseek(int64(ld.Segrodata.Fileoff))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Datblk(ctxt, int64(ld.Segrodata.Vaddr), int64(ld.Segrodata.Filelen))
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f datblk\n", obj.Cputime())
|
2016-08-24 20:44:09 +10:00
|
|
|
ctxt.Bso.Flush()
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ld.Cseek(int64(ld.Segdata.Fileoff))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Datblk(ctxt, int64(ld.Segdata.Vaddr), int64(ld.Segdata.Filelen))
|
2015-09-10 11:32:49 -04:00
|
|
|
|
2016-03-14 09:23:04 -07:00
|
|
|
ld.Cseek(int64(ld.Segdwarf.Fileoff))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Dwarfblk(ctxt, int64(ld.Segdwarf.Vaddr), int64(ld.Segdwarf.Filelen))
|
2016-03-14 09:23:04 -07:00
|
|
|
|
2015-09-10 11:32:49 -04:00
|
|
|
/* output symbol table */
|
|
|
|
|
ld.Symsize = 0
|
|
|
|
|
|
|
|
|
|
ld.Lcsize = 0
|
|
|
|
|
symo := uint32(0)
|
2016-08-22 18:53:01 -04:00
|
|
|
if !*ld.FlagS {
|
2015-09-10 11:32:49 -04:00
|
|
|
// TODO: rationalize
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f sym\n", obj.Cputime())
|
2016-08-24 20:44:09 +10:00
|
|
|
ctxt.Bso.Flush()
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
switch ld.HEADTYPE {
|
|
|
|
|
default:
|
|
|
|
|
if ld.Iself {
|
2016-03-14 09:23:04 -07:00
|
|
|
symo = uint32(ld.Segdwarf.Fileoff + ld.Segdwarf.Filelen)
|
2016-08-21 18:34:24 -04:00
|
|
|
symo = uint32(ld.Rnd(int64(symo), int64(*ld.FlagRound)))
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case obj.Hplan9:
|
|
|
|
|
symo = uint32(ld.Segdata.Fileoff + ld.Segdata.Filelen)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ld.Cseek(int64(symo))
|
|
|
|
|
switch ld.HEADTYPE {
|
|
|
|
|
default:
|
|
|
|
|
if ld.Iself {
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f elfsym\n", obj.Cputime())
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Asmelfsym(ctxt)
|
2015-09-10 11:32:49 -04:00
|
|
|
ld.Cflush()
|
|
|
|
|
ld.Cwrite(ld.Elfstrdat)
|
|
|
|
|
|
|
|
|
|
if ld.Linkmode == ld.LinkExternal {
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Elfemitreloc(ctxt)
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case obj.Hplan9:
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Asmplan9sym(ctxt)
|
2015-09-10 11:32:49 -04:00
|
|
|
ld.Cflush()
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
sym := ld.Linklookup(ctxt, "pclntab", 0)
|
2015-09-10 11:32:49 -04:00
|
|
|
if sym != nil {
|
|
|
|
|
ld.Lcsize = int32(len(sym.P))
|
|
|
|
|
for i := 0; int32(i) < ld.Lcsize; i++ {
|
2016-04-14 19:04:45 -07:00
|
|
|
ld.Cput(sym.P[i])
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ld.Cflush()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-21 13:52:23 -04:00
|
|
|
ctxt.Cursym = nil
|
2016-08-21 18:25:28 -04:00
|
|
|
if ctxt.Debugvlog != 0 {
|
2016-08-21 13:52:23 -04:00
|
|
|
fmt.Fprintf(ctxt.Bso, "%5.2f header\n", obj.Cputime())
|
2016-08-24 20:44:09 +10:00
|
|
|
ctxt.Bso.Flush()
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
ld.Cseek(0)
|
|
|
|
|
switch ld.HEADTYPE {
|
|
|
|
|
default:
|
|
|
|
|
case obj.Hplan9: /* plan 9 */
|
|
|
|
|
magic := uint32(4*18*18 + 7)
|
2016-04-06 12:01:40 -07:00
|
|
|
if ld.SysArch == sys.ArchMIPS64LE {
|
2015-09-10 11:32:49 -04:00
|
|
|
magic = uint32(4*26*26 + 7)
|
|
|
|
|
}
|
2016-04-14 19:04:45 -07:00
|
|
|
ld.Thearch.Lput(magic) /* magic */
|
2015-09-10 11:32:49 -04:00
|
|
|
ld.Thearch.Lput(uint32(ld.Segtext.Filelen)) /* sizes */
|
|
|
|
|
ld.Thearch.Lput(uint32(ld.Segdata.Filelen))
|
|
|
|
|
ld.Thearch.Lput(uint32(ld.Segdata.Length - ld.Segdata.Filelen))
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Thearch.Lput(uint32(ld.Symsize)) /* nsyms */
|
|
|
|
|
ld.Thearch.Lput(uint32(ld.Entryvalue(ctxt))) /* va of entry */
|
2015-09-10 11:32:49 -04:00
|
|
|
ld.Thearch.Lput(0)
|
|
|
|
|
ld.Thearch.Lput(uint32(ld.Lcsize))
|
|
|
|
|
|
|
|
|
|
case obj.Hlinux,
|
|
|
|
|
obj.Hfreebsd,
|
|
|
|
|
obj.Hnetbsd,
|
|
|
|
|
obj.Hopenbsd,
|
|
|
|
|
obj.Hnacl:
|
2016-08-19 22:40:38 -04:00
|
|
|
ld.Asmbelf(ctxt, int64(symo))
|
2015-09-10 11:32:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ld.Cflush()
|
2016-08-21 18:34:24 -04:00
|
|
|
if *ld.FlagC {
|
2015-09-10 11:32:49 -04:00
|
|
|
fmt.Printf("textsize=%d\n", ld.Segtext.Filelen)
|
|
|
|
|
fmt.Printf("datsize=%d\n", ld.Segdata.Filelen)
|
|
|
|
|
fmt.Printf("bsssize=%d\n", ld.Segdata.Length-ld.Segdata.Filelen)
|
|
|
|
|
fmt.Printf("symsize=%d\n", ld.Symsize)
|
|
|
|
|
fmt.Printf("lcsize=%d\n", ld.Lcsize)
|
|
|
|
|
fmt.Printf("total=%d\n", ld.Segtext.Filelen+ld.Segdata.Length+uint64(ld.Symsize)+uint64(ld.Lcsize))
|
|
|
|
|
}
|
|
|
|
|
}
|