Home
last modified time | relevance | path

Searched refs:aopIsLitVal (Results 1 – 4 of 4) sorted by relevance

/dports/lang/sdcc/sdcc-4.0.0/src/pdk/
H A Dgen.c2261 wassert (aopIsLitVal (right->aop, 0, 2, 1)); in genMinus()
2412 wassert (!aopIsLitVal (right->aop, 0, 1, 0x00)); in genCmp()
2777 else if (aopIsLitVal (right_aop, i, 1, 0x00)) in genXorByte()
2923 if (aopIsLitVal (right->aop, i, 1, 0x00)) in genOr()
3037 if (!aopIsLitVal (right->aop, i, 1, 0xff)) in genAnd()
3069 if (aopIsLitVal (right->aop, i, 1, 0x00)) in genAnd()
3086 …for(j = i; j + 1 < right->aop->size && (aopIsLitVal (right->aop, j, 1, 0xff) || aopIsLitVal (right… in genAnd()
3088 if (!(aopIsLitVal (right->aop, j, 1, 0xff) || aopIsLitVal (right->aop, j, 1, 0x00))) in genAnd()
3109 if (!aopIsLitVal (right->aop, i, 1, 0xff)) in genAnd()
3140 if (aopIsLitVal (right->aop, i, 1, 0xff)) in genAnd()
[all …]
/dports/lang/sdcc/sdcc-4.0.0/src/stm8/
H A Dgen.c2719 aopIsLitVal (right_aop, i, 2, 0x0000)) in genSub()
4036 aopIsLitVal (rightop, i, 2, 0xffff)) in genPlus()
4046 aopIsLitVal (rightop, i, 2, 0x0001) && aopIsLitVal (rightop, i + 2, size - i, 0) && in genPlus()
4185 if (!aopIsLitVal (rightop, i, 2, 0)) in genPlus()
4243 …else if (!started && i == size - 1 && (aopIsLitVal (rightop, i, 1, 1) || aopIsLitVal (rightop, i, … in genPlus()
5245 (aopIsLitVal (right->aop, i, 2, 0x0001) || aopIsLitVal (right->aop, i, 2, 0xffff))) in genCmpEQorNE()
5276 (aopIsLitVal (right->aop, i, 1, 0x01) || aopIsLitVal (right->aop, i, 1, 0xff))) in genCmpEQorNE()
5411 if (aopIsLitVal (right->aop, i, 1, 0)) in genXor()
5461 if (aopIsLitVal (right->aop, i, 1, 0)) in genXor()
5488 if (aopIsLitVal (right->aop, i, 1, 0xff)) in genXor()
[all …]
/dports/lang/sdcc/sdcc-4.0.0/src/z80/
H A Dgen.c383 aopIsLitVal (const asmop *aop, int offset, int size, unsigned long long int val) in aopIsLitVal() function
3552 if (value_hl < 0 || !aopIsLitVal (source, soffset + i, 2, value_hl)) in genMove_o()
3573 if (!aopIsLitVal (source, soffset + i, 1, 0x00) || !zeroed_a) in genMove_o()
3576 zeroed_a = aopIsLitVal (source, soffset + i, 1, 0x00); in genMove_o()
3581 else if (aopIsLitVal (source, soffset + i, 1, 0x00) && zeroed_a) in genMove_o()
6269 else if (i == size - 2 && started && aopIsLitVal (rightop, i, 2, 0) && ( in genPlus()
6288 else if (i == size - 1 && started && aopIsLitVal (rightop, i, 1, 0) && in genPlus()
6321 if (!started && aopIsLitVal (rightop, i, 1, 0)) in genPlus()
6324 …else if (!started && i == size - 1 && (aopIsLitVal (rightop, i, 1, 1) || aopIsLitVal (rightop, i, … in genPlus()
6326 emit3 (aopIsLitVal (rightop, i, 1, 1) ? A_INC : A_DEC, ASMOP_A, 0); in genPlus()
[all …]
/dports/lang/sdcc/sdcc-4.0.0/
H A DChangeLog10675 * src/stm8/gen.c: Comment for range error check in aopIsLitVal(),