Home
last modified time | relevance | path

Searched refs:bigreturn (Results 1 – 3 of 3) sorted by relevance

/dports/lang/sdcc/sdcc-4.0.0/src/z80/
H A Dgen.c4747 if (SomethingReturned && !bigreturn) in genCall()
4750 if (bigreturn) in genCall()
4942 if ((ic->parmBytes || bigreturn) && (IFFUNC_ISNORETURN (ftype) || z88dk_callee)) in genCall()
4946 _G.stack.pushed -= (ic->parmBytes + bigreturn * 2); in genCall()
4950 else if ((ic->parmBytes || bigreturn)) in genCall()
4952 …adjustStack (ic->parmBytes + bigreturn * 2, !IS_TLCS90, TRUE, !SomethingReturned || bigreturn, !IY… in genCall()
4955 _G.stack.pushed += ic->parmBytes + bigreturn * 2; in genCall()
4959 if (SomethingReturned && !bigreturn) in genCall()
5007 bool bigreturn; in genFunction() local
5135 bigreturn = (getSize (ftype->next) > 4); in genFunction()
[all …]
/dports/lang/sdcc/sdcc-4.0.0/src/pdk/
H A Dgen.c1656 const bool bigreturn = (getSize (ftype->next) > 2) || IS_STRUCT (ftype->next); in genCall() local
1664 if (SomethingReturned && !bigreturn) in genCall()
1667 if (bigreturn) in genCall()
1790 if (!SomethingReturned || bigreturn) in genCall()
1791 adjustStack (-ic->parmBytes - bigreturn * 2, true, true); in genCall()
/dports/lang/sdcc/sdcc-4.0.0/src/stm8/
H A Dgen.c3222 …const bool bigreturn = (getSize (ftype->next) > 4) || IS_STRUCT (ftype->next); // Return value o… in genCall() local
3228 if (SomethingReturned && !bigreturn) in genCall()
3231 if (bigreturn) in genCall()
3300 const bool jump = tailjump || !ic->parmBytes && !bigreturn && IFFUNC_ISNORETURN (ftype); in genCall()
3414 if (ic->parmBytes || bigreturn) in genCall()
3415 …adjustStack (ic->parmBytes + bigreturn * 2, !(SomethingReturned && getSize (ftype->next) == 1), !(… in genCall()
3471 if (SomethingReturned && !bigreturn) in genCall()
3558 bool bigreturn; in genFunction() local
3615 bigreturn = (getSize (ftype->next) > 4); in genFunction()
3616 G.stack.param_offset += bigreturn * 2; in genFunction()