Only call "newrelo" when needed.

This commit is contained in:
ceriel 1986-12-08 10:39:13 +00:00
parent 6bf947ee6e
commit a6ecac6f1d
2 changed files with 23 additions and 12 deletions

View file

@ -35,6 +35,7 @@ operation
{ emit1(0x10); emit1($1);
$2.val -= (DOTVAL+2);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($2.typ, RELPC|RELO2|RELBR);
#endif
emit2($2.val);
@ -44,6 +45,7 @@ operation
{ emit1($1);
$2.val -= (DOTVAL+2);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($2.typ, RELPC|RELO2|RELBR);
#endif
emit2($2.val);
@ -52,6 +54,7 @@ operation
IMMED '#' expr
{ emit1($1);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO1);
#endif
emit1($3.val);
@ -64,12 +67,14 @@ operation
case 0x0C:
case 0x0E:
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO2|RELBR);
#endif
emit2($3.val);
break;
default:
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO1);
#endif
emit1($3.val);
@ -83,6 +88,7 @@ operation
else
emit1or2($1 - 0x10);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO1);
#endif
emit1($3.val);
@ -91,6 +97,7 @@ operation
XOP '>' expr
{ emit1or2($1 + 0x10);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO2|RELBR);
#endif
emit2($3.val);
@ -129,6 +136,7 @@ operation
{ emit1or2($1);
emit1(0x9F);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($3.typ, RELO2|RELBR);
#endif
emit2($3.val);
@ -158,6 +166,7 @@ operation
} else {
emit1or2($1 + 0x10);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo($2.typ, RELO2|RELBR);
#endif
emit2($2.val);

View file

@ -35,6 +35,7 @@ expr_t exp;
emit1(opc);
if (sm == 0) {
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo(exp.typ, RELPC|RELO2|RELBR);
#endif
emit2(dist);
@ -93,6 +94,7 @@ expr_t exp;
} else {
emit1(0x89 + reg + ind);
#ifdef RELOCATION
if (rflag != 0 && PASS_RELO)
newrelo(exp.typ, RELO2|RELBR);
#endif
emit2(exp.val);