X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2FSDCCopt.c;h=9a88fdf28eaf0d61bbc74d00d232465893b6874b;hb=44c5eae423a3c4503cf2bc5287e13265019e2a35;hp=a7cf5cbbbaf703fc885387d40265ba4826c7271f;hpb=f8dc9d8f924a08b854d4784fdb4b841b7b006081;p=fw%2Fsdcc diff --git a/src/SDCCopt.c b/src/SDCCopt.c index a7cf5cbb..9a88fdf2 100644 --- a/src/SDCCopt.c +++ b/src/SDCCopt.c @@ -68,7 +68,12 @@ cnvToFcall (iCode * ic, eBBlock * ebp) left = IC_LEFT (ic); right = IC_RIGHT (ic); - if(IS_FLOAT(operandType( IC_RIGHT( ic ) ))) { + if (IS_SYMOP (left)) + bitVectUnSetBit (OP_USES (left), ic->key); + if (IS_SYMOP (right)) + bitVectUnSetBit (OP_USES (right), ic->key); + + if (IS_FLOAT (operandType (right))) { switch (ic->op) { case '+': @@ -103,7 +108,7 @@ cnvToFcall (iCode * ic, eBBlock * ebp) break; } } else - if(IS_FIXED16X16 (operandType (IC_RIGHT(ic)))) { + if (IS_FIXED16X16 (operandType (right))) { switch (ic->op) { case '+': @@ -147,31 +152,35 @@ cnvToFcall (iCode * ic, eBBlock * ebp) /* first one */ if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) { - newic = newiCode (SEND, IC_LEFT (ic), NULL); + newic = newiCode (SEND, left, NULL); newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->etype); } else { - newic = newiCode ('=', NULL, IC_LEFT (ic)); + newic = newiCode ('=', NULL, left); IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type)); } addiCodeToeBBlock (ebp, newic, ip); newic->lineno = lineno; + if (IS_SYMOP (left)) + OP_USES (left) = bitVectSetBit (OP_USES (left), newic->key); /* second one */ if (IS_REGPARM (FUNC_ARGS(func->type)->next->etype)) { - newic = newiCode (SEND, IC_RIGHT (ic), NULL); + newic = newiCode (SEND, right, NULL); newic->argreg = SPEC_ARGREG(FUNC_ARGS(func->type)->next->etype); } else { - newic = newiCode ('=', NULL, IC_RIGHT (ic)); + newic = newiCode ('=', NULL, right); IC_RESULT (newic) = operandFromValue (FUNC_ARGS(func->type)->next); } addiCodeToeBBlock (ebp, newic, ip); newic->lineno = lineno; + if (IS_SYMOP (right)) + OP_USES (right) = bitVectSetBit (OP_USES (right), newic->key); } else @@ -187,12 +196,13 @@ cnvToFcall (iCode * ic, eBBlock * ebp) { newic = newiCode (IPUSH, right, NULL); newic->parmPush = 1; - //bytesPushed+=4; bytesPushed += getSize(operandType(right)); } addiCodeToeBBlock (ebp, newic, ip); newic->lineno = lineno; + if (IS_SYMOP (right)) + OP_USES (right) = bitVectSetBit (OP_USES (right), newic->key); /* insert push left */ if (IS_REGPARM (FUNC_ARGS(func->type)->etype)) @@ -204,22 +214,26 @@ cnvToFcall (iCode * ic, eBBlock * ebp) { newic = newiCode (IPUSH, left, NULL); newic->parmPush = 1; - //bytesPushed+=4; bytesPushed += getSize(operandType(left)); } addiCodeToeBBlock (ebp, newic, ip); newic->lineno = lineno; + if (IS_SYMOP (left)) + OP_USES (left) = bitVectSetBit (OP_USES (left), newic->key); + } /* insert the call */ newic = newiCode (CALL, operandFromSymbol (func), NULL); IC_RESULT (newic) = IC_RESULT (ic); + bitVectUnSetBit (OP_DEFS (IC_RESULT (ic)), ic->key); + OP_USES (IC_RESULT (newic)) = bitVectSetBit (OP_USES (IC_RESULT (newic)), newic->key); newic->lineno = lineno; - newic->parmBytes+=bytesPushed; + newic->parmBytes += bytesPushed; ebp->hasFcall = 1; if (currFunc) FUNC_HASFCALL (currFunc->type) = 1; - if(TARGET_IS_PIC16) { + if(TARGET_IS_PIC16 || TARGET_IS_PIC) { /* normally these functions aren't marked external, so we can use their * _extern field to marked as already added to symbol table */ @@ -316,7 +330,7 @@ found: if (currFunc) FUNC_HASFCALL (currFunc->type) = 1; - if(TARGET_IS_PIC16) { + if(TARGET_IS_PIC16 || TARGET_IS_PIC) { /* normally these functions aren't marked external, so we can use their * _extern field to marked as already added to symbol table */ @@ -408,7 +422,7 @@ found: if (currFunc) FUNC_HASFCALL (currFunc->type) = 1; - if(TARGET_IS_PIC16) { + if(TARGET_IS_PIC16 || TARGET_IS_PIC) { /* normally these functions aren't marked external, so we can use their * _extern field to marked as already added to symbol table */ @@ -501,7 +515,7 @@ found: if (currFunc) FUNC_HASFCALL (currFunc->type) = 1; - if(TARGET_IS_PIC16) { + if(TARGET_IS_PIC16 || TARGET_IS_PIC) { /* normally these functions aren't marked external, so we can use their * _extern field to marked as already added to symbol table */ @@ -601,7 +615,7 @@ found: if (currFunc) FUNC_HASFCALL (currFunc->type) = 1; - if(TARGET_IS_PIC16) { + if(TARGET_IS_PIC16 || TARGET_IS_PIC) { /* normally these functions aren't marked external, so we can use their * _extern field to marked as already added to symbol table */ @@ -778,10 +792,9 @@ convertToFcall (eBBlock ** ebbs, int count) converted to function calls */ if ((IS_CONDITIONAL (ic) || IS_ARITHMETIC_OP (ic)) && - (IS_FLOAT (operandType (IC_RIGHT (ic))) - || IS_FIXED( operandType (IC_RIGHT (ic))))) + (IS_FLOAT (operandType (IC_RIGHT (ic))) || + IS_FIXED( operandType (IC_RIGHT (ic))))) { - cnvToFcall (ic, ebbs[i]); } @@ -803,7 +816,7 @@ convertToFcall (eBBlock ** ebbs, int count) if (ic->op == '%' && isOperandLiteral(IC_RIGHT(ic)) && IS_UNSIGNED(operandType(IC_LEFT(ic)))) { - unsigned litVal = fabs(operandLitValue(IC_RIGHT(ic))); + unsigned litVal = abs((unsigned)operandLitValue(IC_RIGHT(ic))); /* modulo by 1: no remainder */ if (litVal == 1) @@ -1554,11 +1567,11 @@ eBBlockFromiCode (iCode * ic) /* convert operations with support routines written in C to function calls : I am doing this at this point since I want all the - operations to be as they are for optimzations */ + operations to be as they are for optimizations */ convertToFcall (ebbi->bbOrder, ebbi->count); /* compute the live ranges */ - computeLiveRanges (ebbi->bbOrder, ebbi->count); + computeLiveRanges (ebbi->bbOrder, ebbi->count, TRUE); if (options.dump_range) dumpEbbsToFileExt (DUMP_RANGE, ebbi);