[dev.cc] liblink: more docs on Prog and Addr fields

LGTM=rsc
R=rsc, dave
CC=golang-codereviews
https://golang.org/cl/174530043
This commit is contained in:
Austin Clements 2014-11-21 15:58:29 -05:00
parent ee853dacf5
commit cabc555326
1 changed files with 2 additions and 1 deletions

View File

@ -62,7 +62,7 @@ struct Addr
short type;
uint8 index;
int8 scale;
int8 reg; // for 5l, 9l
int8 reg; // for 5l, 9l; GPRs and FPRs both start at 0
int8 name; // for 5l, 9l
int8 class; // for 5l, 9l
uint8 etype; // for 5g, 6g, 8g
@ -94,6 +94,7 @@ struct Prog
// operands
Addr from;
uchar reg; // arm, power64 only (e.g., ADD from, reg, to);
// starts at 0 for both GPRs and FPRs;
// also used for ADATA width on arm, power64
Addr from3; // power64 only (e.g., RLWM/FMADD from, reg, from3, to)
Addr to;