2 * Copyright 2001-2006 Adrian Thurston <thurston@cs.queensu.ca>
3 * 2004 Erich Ocean <eric.ocean@ampede.com>
4 * 2005 Alan West <alan@alanz.com>
7 /* This file is part of Ragel.
9 * Ragel is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * Ragel is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with Ragel; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "rlgen-csharp.h"
25 #include "tabcodegen.h"
29 /* Determine if we should use indicies or not. */
30 void CSharpTabCodeGen::calcIndexSize()
32 int sizeWithInds = 0, sizeWithoutInds = 0;
34 /* Calculate cost of using with indicies. */
35 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
36 int totalIndex = st->outSingle.length() + st->outRange.length() +
37 (st->defTrans == 0 ? 0 : 1);
38 sizeWithInds += arrayTypeSize(redFsm->maxIndex) * totalIndex;
40 sizeWithInds += arrayTypeSize(redFsm->maxState) * redFsm->transSet.length();
41 if ( redFsm->anyActions() )
42 sizeWithInds += arrayTypeSize(redFsm->maxActionLoc) * redFsm->transSet.length();
44 /* Calculate the cost of not using indicies. */
45 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
46 int totalIndex = st->outSingle.length() + st->outRange.length() +
47 (st->defTrans == 0 ? 0 : 1);
48 sizeWithoutInds += arrayTypeSize(redFsm->maxState) * totalIndex;
49 if ( redFsm->anyActions() )
50 sizeWithoutInds += arrayTypeSize(redFsm->maxActionLoc) * totalIndex;
53 /* If using indicies reduces the size, use them. */
54 useIndicies = sizeWithInds < sizeWithoutInds;
57 std::ostream &CSharpTabCodeGen::TO_STATE_ACTION( RedStateAp *state )
60 if ( state->toStateAction != 0 )
61 act = state->toStateAction->location+1;
66 std::ostream &CSharpTabCodeGen::FROM_STATE_ACTION( RedStateAp *state )
69 if ( state->fromStateAction != 0 )
70 act = state->fromStateAction->location+1;
75 std::ostream &CSharpTabCodeGen::EOF_ACTION( RedStateAp *state )
78 if ( state->eofAction != 0 )
79 act = state->eofAction->location+1;
85 std::ostream &CSharpTabCodeGen::TRANS_ACTION( RedTransAp *trans )
87 /* If there are actions, emit them. Otherwise emit zero. */
89 if ( trans->action != 0 )
90 act = trans->action->location+1;
95 std::ostream &CSharpTabCodeGen::TO_STATE_ACTION_SWITCH()
97 /* Walk the list of functions, printing the cases. */
98 for ( ActionList::Iter act = actionList; act.lte(); act++ ) {
99 /* Write out referenced actions. */
100 if ( act->numToStateRefs > 0 ) {
101 /* Write the case label, the action and the case break. */
102 out << "\tcase " << act->actionId << ":\n";
103 ACTION( out, act, 0, false );
108 genLineDirective( out );
112 std::ostream &CSharpTabCodeGen::FROM_STATE_ACTION_SWITCH()
114 /* Walk the list of functions, printing the cases. */
115 for ( ActionList::Iter act = actionList; act.lte(); act++ ) {
116 /* Write out referenced actions. */
117 if ( act->numFromStateRefs > 0 ) {
118 /* Write the case label, the action and the case break. */
119 out << "\tcase " << act->actionId << ":\n";
120 ACTION( out, act, 0, false );
125 genLineDirective( out );
129 std::ostream &CSharpTabCodeGen::EOF_ACTION_SWITCH()
131 /* Walk the list of functions, printing the cases. */
132 for ( ActionList::Iter act = actionList; act.lte(); act++ ) {
133 /* Write out referenced actions. */
134 if ( act->numEofRefs > 0 ) {
135 /* Write the case label, the action and the case break. */
136 out << "\tcase " << act->actionId << ":\n";
137 ACTION( out, act, 0, true );
142 genLineDirective( out );
147 std::ostream &CSharpTabCodeGen::ACTION_SWITCH()
149 /* Walk the list of functions, printing the cases. */
150 for ( ActionList::Iter act = actionList; act.lte(); act++ ) {
151 /* Write out referenced actions. */
152 if ( act->numTransRefs > 0 ) {
153 /* Write the case label, the action and the case break. */
154 out << "\tcase " << act->actionId << ":\n";
155 ACTION( out, act, 0, false );
160 genLineDirective( out );
164 std::ostream &CSharpTabCodeGen::COND_OFFSETS()
167 int totalStateNum = 0, curKeyOffset = 0;
168 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
169 /* Write the key offset. */
173 if ( ++totalStateNum % IALL == 0 )
177 /* Move the key offset ahead. */
178 curKeyOffset += st->stateCondList.length();
184 std::ostream &CSharpTabCodeGen::KEY_OFFSETS()
187 int totalStateNum = 0, curKeyOffset = 0;
188 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
189 /* Write the key offset. */
193 if ( ++totalStateNum % IALL == 0 )
197 /* Move the key offset ahead. */
198 curKeyOffset += st->outSingle.length() + st->outRange.length()*2;
205 std::ostream &CSharpTabCodeGen::INDEX_OFFSETS()
208 int totalStateNum = 0, curIndOffset = 0;
209 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
210 /* Write the index offset. */
214 if ( ++totalStateNum % IALL == 0 )
218 /* Move the index offset ahead. */
219 curIndOffset += st->outSingle.length() + st->outRange.length();
220 if ( st->defTrans != 0 )
227 std::ostream &CSharpTabCodeGen::COND_LENS()
230 int totalStateNum = 0;
231 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
232 /* Write singles length. */
233 out << st->stateCondList.length();
236 if ( ++totalStateNum % IALL == 0 )
245 std::ostream &CSharpTabCodeGen::SINGLE_LENS()
248 int totalStateNum = 0;
249 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
250 /* Write singles length. */
251 out << st->outSingle.length();
254 if ( ++totalStateNum % IALL == 0 )
262 std::ostream &CSharpTabCodeGen::RANGE_LENS()
265 int totalStateNum = 0;
266 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
267 /* Emit length of range index. */
268 out << st->outRange.length();
271 if ( ++totalStateNum % IALL == 0 )
279 std::ostream &CSharpTabCodeGen::TO_STATE_ACTIONS()
282 int totalStateNum = 0;
283 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
284 /* Write any eof action. */
288 if ( ++totalStateNum % IALL == 0 )
296 std::ostream &CSharpTabCodeGen::FROM_STATE_ACTIONS()
299 int totalStateNum = 0;
300 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
301 /* Write any eof action. */
302 FROM_STATE_ACTION(st);
305 if ( ++totalStateNum % IALL == 0 )
313 std::ostream &CSharpTabCodeGen::EOF_ACTIONS()
316 int totalStateNum = 0;
317 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
318 /* Write any eof action. */
322 if ( ++totalStateNum % IALL == 0 )
330 std::ostream &CSharpTabCodeGen::EOF_TRANS()
333 int totalStateNum = 0;
334 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
335 /* Write any eof action. */
337 if ( st->eofTrans != 0 ) {
338 assert( st->eofTrans->pos >= 0 );
339 trans = st->eofTrans->pos+1;
345 if ( ++totalStateNum % IALL == 0 )
354 std::ostream &CSharpTabCodeGen::COND_KEYS()
358 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
359 /* Loop the state's transitions. */
360 for ( StateCondList::Iter sc = st->stateCondList; sc.lte(); sc++ ) {
362 out << ALPHA_KEY( sc->lowKey ) << ", ";
363 if ( ++totalTrans % IALL == 0 )
367 out << ALPHA_KEY( sc->highKey ) << ", ";
368 if ( ++totalTrans % IALL == 0 )
373 /* Output one last number so we don't have to figure out when the last
374 * entry is and avoid writing a comma. */
379 std::ostream &CSharpTabCodeGen::COND_SPACES()
383 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
384 /* Loop the state's transitions. */
385 for ( StateCondList::Iter sc = st->stateCondList; sc.lte(); sc++ ) {
387 out << sc->condSpace->condSpaceId << ", ";
388 if ( ++totalTrans % IALL == 0 )
393 /* Output one last number so we don't have to figure out when the last
394 * entry is and avoid writing a comma. */
399 std::ostream &CSharpTabCodeGen::KEYS()
403 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
404 /* Loop the singles. */
405 for ( RedTransList::Iter stel = st->outSingle; stel.lte(); stel++ ) {
406 out << ALPHA_KEY( stel->lowKey ) << ", ";
407 if ( ++totalTrans % IALL == 0 )
411 /* Loop the state's transitions. */
412 for ( RedTransList::Iter rtel = st->outRange; rtel.lte(); rtel++ ) {
414 out << ALPHA_KEY( rtel->lowKey ) << ", ";
415 if ( ++totalTrans % IALL == 0 )
419 out << ALPHA_KEY( rtel->highKey ) << ", ";
420 if ( ++totalTrans % IALL == 0 )
425 /* Output one last number so we don't have to figure out when the last
426 * entry is and avoid writing a comma. */
427 out << "(char) " << 0 << "\n";
431 std::ostream &CSharpTabCodeGen::INDICIES()
435 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
436 /* Walk the singles. */
437 for ( RedTransList::Iter stel = st->outSingle; stel.lte(); stel++ ) {
438 out << stel->value->id << ", ";
439 if ( ++totalTrans % IALL == 0 )
443 /* Walk the ranges. */
444 for ( RedTransList::Iter rtel = st->outRange; rtel.lte(); rtel++ ) {
445 out << rtel->value->id << ", ";
446 if ( ++totalTrans % IALL == 0 )
450 /* The state's default index goes next. */
451 if ( st->defTrans != 0 ) {
452 out << st->defTrans->id << ", ";
453 if ( ++totalTrans % IALL == 0 )
458 /* Output one last number so we don't have to figure out when the last
459 * entry is and avoid writing a comma. */
464 std::ostream &CSharpTabCodeGen::TRANS_TARGS()
468 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
469 /* Walk the singles. */
470 for ( RedTransList::Iter stel = st->outSingle; stel.lte(); stel++ ) {
471 RedTransAp *trans = stel->value;
472 out << trans->targ->id << ", ";
473 if ( ++totalTrans % IALL == 0 )
477 /* Walk the ranges. */
478 for ( RedTransList::Iter rtel = st->outRange; rtel.lte(); rtel++ ) {
479 RedTransAp *trans = rtel->value;
480 out << trans->targ->id << ", ";
481 if ( ++totalTrans % IALL == 0 )
485 /* The state's default target state. */
486 if ( st->defTrans != 0 ) {
487 RedTransAp *trans = st->defTrans;
488 out << trans->targ->id << ", ";
489 if ( ++totalTrans % IALL == 0 )
494 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
495 if ( st->eofTrans != 0 ) {
496 RedTransAp *trans = st->eofTrans;
497 trans->pos = totalTrans;
498 out << trans->targ->id << ", ";
499 if ( ++totalTrans % IALL == 0 )
505 /* Output one last number so we don't have to figure out when the last
506 * entry is and avoid writing a comma. */
512 std::ostream &CSharpTabCodeGen::TRANS_ACTIONS()
516 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
517 /* Walk the singles. */
518 for ( RedTransList::Iter stel = st->outSingle; stel.lte(); stel++ ) {
519 RedTransAp *trans = stel->value;
520 TRANS_ACTION( trans ) << ", ";
521 if ( ++totalTrans % IALL == 0 )
525 /* Walk the ranges. */
526 for ( RedTransList::Iter rtel = st->outRange; rtel.lte(); rtel++ ) {
527 RedTransAp *trans = rtel->value;
528 TRANS_ACTION( trans ) << ", ";
529 if ( ++totalTrans % IALL == 0 )
533 /* The state's default index goes next. */
534 if ( st->defTrans != 0 ) {
535 RedTransAp *trans = st->defTrans;
536 TRANS_ACTION( trans ) << ", ";
537 if ( ++totalTrans % IALL == 0 )
542 for ( RedStateList::Iter st = redFsm->stateList; st.lte(); st++ ) {
543 if ( st->eofTrans != 0 ) {
544 RedTransAp *trans = st->eofTrans;
545 TRANS_ACTION( trans ) << ", ";
546 if ( ++totalTrans % IALL == 0 )
551 /* Output one last number so we don't have to figure out when the last
552 * entry is and avoid writing a comma. */
557 std::ostream &CSharpTabCodeGen::TRANS_TARGS_WI()
559 /* Transitions must be written ordered by their id. */
560 RedTransAp **transPtrs = new RedTransAp*[redFsm->transSet.length()];
561 for ( TransApSet::Iter trans = redFsm->transSet; trans.lte(); trans++ )
562 transPtrs[trans->id] = trans;
564 /* Keep a count of the num of items in the array written. */
567 for ( int t = 0; t < redFsm->transSet.length(); t++ ) {
568 /* Record the position, need this for eofTrans. */
569 RedTransAp *trans = transPtrs[t];
572 /* Write out the target state. */
573 out << trans->targ->id;
574 if ( t < redFsm->transSet.length()-1 ) {
576 if ( ++totalStates % IALL == 0 )
586 std::ostream &CSharpTabCodeGen::TRANS_ACTIONS_WI()
588 /* Transitions must be written ordered by their id. */
589 RedTransAp **transPtrs = new RedTransAp*[redFsm->transSet.length()];
590 for ( TransApSet::Iter trans = redFsm->transSet; trans.lte(); trans++ )
591 transPtrs[trans->id] = trans;
593 /* Keep a count of the num of items in the array written. */
596 for ( int t = 0; t < redFsm->transSet.length(); t++ ) {
597 /* Write the function for the transition. */
598 RedTransAp *trans = transPtrs[t];
599 TRANS_ACTION( trans );
600 if ( t < redFsm->transSet.length()-1 ) {
602 if ( ++totalAct % IALL == 0 )
611 void CSharpTabCodeGen::GOTO( ostream &ret, int gotoDest, bool inFinish )
613 ret << "{" << CS() << " = " << gotoDest << "; " <<
614 CTRL_FLOW() << "goto _again;}";
617 void CSharpTabCodeGen::GOTO_EXPR( ostream &ret, GenInlineItem *ilItem, bool inFinish )
619 ret << "{" << CS() << " = (";
620 INLINE_LIST( ret, ilItem->children, 0, inFinish );
621 ret << "); " << CTRL_FLOW() << "goto _again;}";
624 void CSharpTabCodeGen::CURS( ostream &ret, bool inFinish )
629 void CSharpTabCodeGen::TARGS( ostream &ret, bool inFinish, int targState )
631 ret << "(" << CS() << ")";
634 void CSharpTabCodeGen::NEXT( ostream &ret, int nextDest, bool inFinish )
636 ret << CS() << " = " << nextDest << ";";
639 void CSharpTabCodeGen::NEXT_EXPR( ostream &ret, GenInlineItem *ilItem, bool inFinish )
641 ret << CS() << " = (";
642 INLINE_LIST( ret, ilItem->children, 0, inFinish );
646 void CSharpTabCodeGen::CALL( ostream &ret, int callDest, int targState, bool inFinish )
648 if ( prePushExpr != 0 ) {
650 INLINE_LIST( ret, prePushExpr, 0, false );
653 ret << "{" << STACK() << "[" << TOP() << "++] = " << CS() << "; " << CS() << " = " <<
654 callDest << "; " << CTRL_FLOW() << "goto _again;}";
656 if ( prePushExpr != 0 )
660 void CSharpTabCodeGen::CALL_EXPR( ostream &ret, GenInlineItem *ilItem, int targState, bool inFinish )
662 if ( prePushExpr != 0 ) {
664 INLINE_LIST( ret, prePushExpr, 0, false );
667 ret << "{" << STACK() << "[" << TOP() << "++] = " << CS() << "; " << CS() << " = (";
668 INLINE_LIST( ret, ilItem->children, targState, inFinish );
669 ret << "); " << CTRL_FLOW() << "goto _again;}";
671 if ( prePushExpr != 0 )
675 void CSharpTabCodeGen::RET( ostream &ret, bool inFinish )
677 ret << "{" << CS() << " = " << STACK() << "[--" <<
680 if ( postPopExpr != 0 ) {
682 INLINE_LIST( ret, postPopExpr, 0, false );
686 ret << CTRL_FLOW() << "goto _again;}";
689 void CSharpTabCodeGen::BREAK( ostream &ret, int targState )
692 ret << "{" << P() << "++; " << CTRL_FLOW() << "goto _out; }";
695 void CSharpTabCodeGen::writeData()
697 /* If there are any transtion functions then output the array. If there
698 * are none, don't bother emitting an empty array that won't be used. */
699 if ( redFsm->anyActions() ) {
700 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActArrItem), A() );
706 if ( redFsm->anyConditions() ) {
707 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxCondOffset), CO() );
712 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxCondLen), CL() );
717 OPEN_ARRAY( WIDE_ALPH_TYPE(), CK() );
722 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxCondSpaceId), C() );
728 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxKeyOffset), KO() );
733 OPEN_ARRAY( WIDE_ALPH_TYPE(), K() );
738 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxSingleLen), SL() );
743 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxRangeLen), RL() );
748 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxIndexOffset), IO() );
754 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxIndex), I() );
759 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxState), TT() );
764 if ( redFsm->anyActions() ) {
765 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActionLoc), TA() );
772 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxState), TT() );
777 if ( redFsm->anyActions() ) {
778 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActionLoc), TA() );
785 if ( redFsm->anyToStateActions() ) {
786 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActionLoc), TSA() );
792 if ( redFsm->anyFromStateActions() ) {
793 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActionLoc), FSA() );
794 FROM_STATE_ACTIONS();
799 if ( redFsm->anyEofActions() ) {
800 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxActionLoc), EA() );
806 if ( redFsm->anyEofTrans() ) {
807 OPEN_ARRAY( ARRAY_TYPE(redFsm->maxIndexOffset+1), ET() );
816 void CSharpTabCodeGen::LOCATE_TRANS()
819 " _keys = " << KO() + "[" + CS() + "]" << ";\n"
820 " _trans = " << CAST(transType) << IO() << "[" << CS() << "];\n"
822 " _klen = " << SL() << "[" << CS() << "];\n"
823 " if ( _klen > 0 ) {\n"
824 " " << signedKeysType << " _lower = _keys;\n"
825 " " << signedKeysType << " _mid;\n"
826 " " << signedKeysType << " _upper = " << CAST(signedKeysType) <<
827 " (_keys + _klen - 1);\n"
829 " if ( _upper < _lower )\n"
832 " _mid = " << CAST(signedKeysType) <<
833 " (_lower + ((_upper-_lower) >> 1));\n"
834 " if ( " << GET_WIDE_KEY() << " < " << K() << "[_mid] )\n"
835 " _upper = " << CAST(signedKeysType) << " (_mid - 1);\n"
836 " else if ( " << GET_WIDE_KEY() << " > " << K() << "[_mid] )\n"
837 " _lower = " << CAST(signedKeysType) << " (_mid + 1);\n"
839 " _trans += " << CAST(transType) << " (_mid - _keys);\n"
843 " _keys += " << CAST(keysType) << " _klen;\n"
844 " _trans += " << CAST(transType) << " _klen;\n"
847 " _klen = " << RL() << "[" << CS() << "];\n"
848 " if ( _klen > 0 ) {\n"
849 " " << signedKeysType << " _lower = _keys;\n"
850 " " << signedKeysType << " _mid;\n"
851 " " << signedKeysType << " _upper = " << CAST(signedKeysType) <<
852 " (_keys + (_klen<<1) - 2);\n"
854 " if ( _upper < _lower )\n"
857 " _mid = " << CAST(signedKeysType) <<
858 " (_lower + (((_upper-_lower) >> 1) & ~1));\n"
859 " if ( " << GET_WIDE_KEY() << " < " << K() << "[_mid] )\n"
860 " _upper = " << CAST(signedKeysType) << " (_mid - 2);\n"
861 " else if ( " << GET_WIDE_KEY() << " > " << K() << "[_mid+1] )\n"
862 " _lower = " << CAST(signedKeysType) << " (_mid + 2);\n"
864 " _trans += " << CAST(transType) << "((_mid - _keys)>>1);\n"
868 " _trans += " << CAST(transType) << " _klen;\n"
873 void CSharpTabCodeGen::COND_TRANSLATE()
876 " _widec = " << GET_KEY() << ";\n"
877 " _klen = " << CL() << "[" << CS() << "];\n"
878 " _keys = " << CAST(keysType) << " ("<< CO() << "[" << CS() << "]*2);\n"
879 " if ( _klen > 0 ) {\n"
880 " " << signedKeysType << " _lower = _keys;\n"
881 " " << signedKeysType << " _mid;\n"
882 " " << signedKeysType << " _upper = " << CAST(signedKeysType) <<
883 " (_keys + (_klen<<1) - 2);\n"
885 " if ( _upper < _lower )\n"
888 " _mid = " << CAST(signedKeysType) <<
889 " (_lower + (((_upper-_lower) >> 1) & ~1));\n"
890 " if ( " << GET_WIDE_KEY() << " < " << CK() << "[_mid] )\n"
891 " _upper = " << CAST(signedKeysType) << " (_mid - 2);\n"
892 " else if ( " << GET_WIDE_KEY() << " > " << CK() << "[_mid+1] )\n"
893 " _lower = " << CAST(signedKeysType) << " (_mid + 2);\n"
895 " switch ( " << C() << "[" << CO() << "[" << CS() << "]"
896 " + ((_mid - _keys)>>1)] ) {\n";
898 for ( CondSpaceList::Iter csi = condSpaceList; csi.lte(); csi++ ) {
899 CondSpace *condSpace = csi;
900 out << " case " << condSpace->condSpaceId << ": {\n";
901 out << TABS(2) << "_widec = " << CAST(WIDE_ALPH_TYPE()) << "(" <<
902 KEY(condSpace->baseKey) << " + (" << GET_KEY() <<
903 " - " << KEY(keyOps->minKey) << "));\n";
905 for ( CondSet::Iter csi = condSpace->condSet; csi.lte(); csi++ ) {
906 out << TABS(2) << "if ( ";
907 CONDITION( out, *csi );
908 Size condValOffset = ((1 << csi.pos()) * keyOps->alphSize());
909 out << " ) _widec += " << condValOffset << ";\n";
928 void CSharpTabCodeGen::writeExec()
931 outLabelUsed = false;
936 " " << klenType << " _klen";
938 if ( redFsm->anyRegCurStateRef() )
943 " " << transType << " _trans;\n";
945 if ( redFsm->anyConditions() )
946 out << " " << WIDE_ALPH_TYPE() << " _widec;\n";
948 if ( redFsm->anyToStateActions() || redFsm->anyRegActions()
949 || redFsm->anyFromStateActions() )
952 " " << actsType << " _acts;\n"
953 " " << nactsType << " _nacts;\n";
957 " " << keysType << " _keys;\n"
959 // " " << PTR_CONST() << WIDE_ALPH_TYPE() << POINTER() << "_keys;\n"
964 " if ( " << P() << " == " << PE() << " )\n"
965 " goto _test_eof;\n";
968 if ( redFsm->errState != 0 ) {
971 " if ( " << CS() << " == " << redFsm->errState->id << " )\n"
977 if ( redFsm->anyFromStateActions() ) {
979 " _acts = " << FSA() << "[" + CS() + "]" << ";\n"
980 " _nacts = " << A() << "[_acts++];\n"
981 " while ( _nacts-- > 0 ) {\n"
982 " switch ( " << A() << "[_acts++] ) {\n";
983 FROM_STATE_ACTION_SWITCH();
990 if ( redFsm->anyConditions() )
998 out << " _trans = " << CAST(transType) << I() << "[_trans];\n";
1000 if ( redFsm->anyEofTrans() )
1001 out << "_eof_trans:\n";
1003 if ( redFsm->anyRegCurStateRef() )
1004 out << " _ps = " << CS() << ";\n";
1007 " " << CS() << " = " << TT() << "[_trans];\n"
1010 if ( redFsm->anyRegActions() ) {
1012 " if ( " << TA() << "[_trans] == 0 )\n"
1015 " _acts = " << TA() << "[_trans]" << ";\n"
1016 " _nacts = " << A() << "[_acts++];\n"
1017 " while ( _nacts-- > 0 )\n {\n"
1018 " switch ( " << A() << "[_acts++] )\n {\n";
1026 if ( redFsm->anyRegActions() || redFsm->anyActionGotos() ||
1027 redFsm->anyActionCalls() || redFsm->anyActionRets() )
1030 if ( redFsm->anyToStateActions() ) {
1032 " _acts = " << TSA() << "[" << CS() << "]" << ";\n"
1033 " _nacts = " << A() << "[_acts++];\n"
1034 " while ( _nacts-- > 0 ) {\n"
1035 " switch ( " << A() << "[_acts++] ) {\n";
1036 TO_STATE_ACTION_SWITCH();
1043 if ( redFsm->errState != 0 ) {
1044 outLabelUsed = true;
1046 " if ( " << CS() << " == " << redFsm->errState->id << " )\n"
1052 " if ( ++" << P() << " != " << PE() << " )\n"
1057 " " << P() << " += 1;\n"
1062 out << " _test_eof: {}\n";
1064 if ( redFsm->anyEofTrans() || redFsm->anyEofActions() ) {
1066 " if ( " << P() << " == " << EOFV() << " )\n"
1069 if ( redFsm->anyEofTrans() ) {
1071 " if ( " << ET() << "[" << CS() << "] > 0 ) {\n"
1072 " _trans = " << CAST(transType) << " (" << ET() <<
1073 "[" << CS() << "] - 1);\n"
1074 " goto _eof_trans;\n"
1078 if ( redFsm->anyEofActions() ) {
1080 " " << actsType << " __acts = " <<
1081 EA() << "[" << CS() << "]" << ";\n"
1082 " " << nactsType << " __nacts = " <<
1083 A() << "[__acts++];\n"
1084 " while ( __nacts-- > 0 ) {\n"
1085 " switch ( " << A() << "[__acts++] ) {\n";
1086 EOF_ACTION_SWITCH();
1098 out << " _out: {}\n";
1103 void CSharpTabCodeGen::initVarTypes()
1105 int klenMax = MAX(MAX(redFsm->maxCondLen, redFsm->maxRangeLen),
1106 redFsm->maxSingleLen);
1107 int keysMax = MAX(MAX(redFsm->maxKeyOffset, klenMax),
1108 redFsm->maxCondOffset);
1109 int transMax = MAX(MAX(redFsm->maxIndex+1, redFsm->maxIndexOffset), keysMax);
1110 transMax = MAX(transMax, klenMax);
1111 transType = ARRAY_TYPE(transMax);
1112 klenType = ARRAY_TYPE(klenMax);
1113 keysType = ARRAY_TYPE(keysMax);
1114 signedKeysType = ARRAY_TYPE(keysMax, true);
1115 actsType = ARRAY_TYPE(redFsm->maxActionLoc);
1116 nactsType = ARRAY_TYPE(redFsm->maxActArrItem);