X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fds390%2Fgen.c;h=aa9a8983a554fb6ebb0bd7ae2dfa1d9252100283;hb=9e98cf002aeb4e50e7681beb84a25c76358d3aa3;hp=870652ece50b9f0f71c0b17447def7de974265e2;hpb=41ff3b55f586efb58903dd992714556f7ab07151;p=fw%2Fsdcc diff --git a/src/ds390/gen.c b/src/ds390/gen.c index 870652ec..aa9a8983 100644 --- a/src/ds390/gen.c +++ b/src/ds390/gen.c @@ -26,7 +26,7 @@ -------------------------------------------------------------------------*/ //#define D(x) -#define D(x) do if (!options.noGenComments) {x;} while(0) +#define D(x) do if (options.verboseAsm) {x;} while(0) #include #include @@ -238,18 +238,19 @@ emitcode (const char *inst, const char *fmt,...) lbp++; } - if (lbp && *lbp) + if (lbp) { lineCurr = (lineCurr ? connectLine (lineCurr, newLineNode (lb)) : (lineHead = newLineNode (lb))); + + lineCurr->isInline = _G.inLine; + lineCurr->isDebug = _G.debugLine; + lineCurr->ic = _G.current_iCode; + lineCurr->aln = ds390newAsmLineNode(_currentDPS); + lineCurr->isComment = (*lbp == ';'); } - lineCurr->isInline = _G.inLine; - lineCurr->isDebug = _G.debugLine; - lineCurr->ic = _G.current_iCode; - lineCurr->aln = ds390newAsmLineNode(_currentDPS); - lineCurr->isComment = (*lbp == ';'); va_end (ap); dbuf_destroy(&dbuf); @@ -5633,7 +5634,7 @@ genDivbits (operand * left, char *l; bool pushedB; - D(emitcode ("; genDivbits","")); + D(emitcode (";", "genDivbits")); pushedB = pushB (); @@ -5663,7 +5664,7 @@ genDivOneByte (operand * left, symbol *lbl; int size, offset; - D(emitcode ("; genDivOneByte","")); + D(emitcode (";", "genDivOneByte")); offset = 1; lUnsigned = SPEC_USIGN (getSpec (operandType (left))); @@ -7142,10 +7143,10 @@ genAnd (iCode * ic, iCode * ifx) } #ifdef DEBUG_TYPE - emitcode ("", "; Type res[%d] = l[%d]&r[%d]", + emitcode (";", "Type res[%d] = l[%d]&r[%d]", AOP_TYPE (result), AOP_TYPE (left), AOP_TYPE (right)); - emitcode ("", "; Size res[%d] = l[%d]&r[%d]", + emitcode (";", "Size res[%d] = l[%d]&r[%d]", AOP_SIZE (result), AOP_SIZE (left), AOP_SIZE (right)); #endif @@ -7577,10 +7578,10 @@ genOr (iCode * ic, iCode * ifx) #ifdef DEBUG_TYPE - emitcode ("", "; Type res[%d] = l[%d]&r[%d]", + emitcode (";", "Type res[%d] = l[%d]&r[%d]", AOP_TYPE (result), AOP_TYPE (left), AOP_TYPE (right)); - emitcode ("", "; Size res[%d] = l[%d]&r[%d]", + emitcode (";", "Size res[%d] = l[%d]&r[%d]", AOP_SIZE (result), AOP_SIZE (left), AOP_SIZE (right)); #endif @@ -7968,10 +7969,10 @@ genXor (iCode * ic, iCode * ifx) } #ifdef DEBUG_TYPE - emitcode ("", "; Type res[%d] = l[%d]&r[%d]", + emitcode (";", "Type res[%d] = l[%d]&r[%d]", AOP_TYPE (result), AOP_TYPE (left), AOP_TYPE (right)); - emitcode ("", "; Size res[%d] = l[%d]&r[%d]", + emitcode (";", "Size res[%d] = l[%d]&r[%d]", AOP_SIZE (result), AOP_SIZE (left), AOP_SIZE (right)); #endif @@ -8479,7 +8480,7 @@ genSwap (iCode * ic) { operand *left, *result; - D(emitcode ("; genSwap","")); + D(emitcode (";", "genSwap")); left = IC_LEFT (ic); result = IC_RESULT (ic); @@ -9867,7 +9868,7 @@ genrshFour (operand * result, operand * left, _startLazyDPSEvaluation(); if (shCount == 1) { - shiftRLong (left, MSB16, result, sign); + shiftRLong (left, MSB16, result, sign); } else if (shCount == 0) { @@ -10363,7 +10364,7 @@ genUnpackBits (operand * result, char *rname, int ptype) int blen; /* bitfield length */ int bstr; /* bitfield starting bit within byte */ - D(emitcode ("; genUnpackBits","")); + D(emitcode (";", "genUnpackBits")); etype = getSpec (operandType (result)); rsize = getSize (operandType (result)); @@ -10997,8 +10998,8 @@ genGenPointerGet (operand * left, // with the implementation of __gptrgetWord // in device/lib/_gptrget.c emitcode ("lcall", "__gptrgetWord"); - aopPut (result, DP2_RESULT_REG, offset++); aopPut (result, "a", offset++); + aopPut (result, DP2_RESULT_REG, offset++); size--; } else @@ -11120,7 +11121,7 @@ genPackBits (sym_link * etype, int litval; /* source literal value (if AOP_LIT) */ unsigned char mask; /* bitmask within current byte */ - D(emitcode ("; genPackBits","")); + D(emitcode (";", "genPackBits")); blen = SPEC_BLEN (etype); bstr = SPEC_BSTR (etype); @@ -14034,7 +14035,7 @@ genCritical (iCode *ic) static void genEndCritical (iCode *ic) { - D(emitcode("; genEndCritical","")); + D(emitcode(";", "genEndCritical")); if (IC_RIGHT (ic)) { @@ -14222,14 +14223,14 @@ gen390Code (iCode * lic) debugFile->writeCLine (ic); } if (!options.noCcodeInAsm) { - emitcode ("", ";\t%s:%d: %s", ic->filename, ic->lineno, + emitcode (";", "%s:%d: %s", ic->filename, ic->lineno, printCLine(ic->filename, ic->lineno)); } cln = ic->lineno; } if (options.iCodeInAsm) { char *iLine = printILine(ic); - emitcode("", ";ic:%d: %s", ic->key, iLine); + emitcode(";", "ic:%d: %s", ic->key, iLine); dbuf_free(iLine); } /* if the result is marked as