Changeset 4422
- Timestamp:
- Jan 16, 2015, 10:51:09 AM (4 years ago)
- Location:
- icGREP/icgrep-devel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
icGREP/icgrep-devel/QA/greptest.xml
r4421 r4422 41 41 =01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 42 42 =012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 43 =0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 43 =01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 44 =012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 45 =0123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789; 44 46 </datafile> 45 47 … … 396 398 <grepcase regexp="(?i)=S[A-T]S*;" datafile="bounded_charclass" grepcount="1"/> 397 399 <grepcase regexp="=[0-9]{100};" datafile="bounded_charclass" grepcount="1"/> 398 <grepcase regexp="=[0-9]{50,};" datafile="bounded_charclass" grepcount=" 7"/>400 <grepcase regexp="=[0-9]{50,};" datafile="bounded_charclass" grepcount="9"/> 399 401 <grepcase regexp="=[0-9]{140};" datafile="bounded_charclass" grepcount="1"/> 400 402 <grepcase regexp="=[0-9a-z]{12,200};" datafile="bounded_charclass" grepcount="22"/> 403 <grepcase regexp="=[0-9a-z]{200,1000};" datafile="bounded_charclass" grepcount="3"/> 404 <grepcase regexp="=[0-9]{500,1000};" datafile="bounded_charclass" grepcount="1"/> 401 405 402 406 -
icGREP/icgrep-devel/icgrep/pablo/pablo_compiler.cpp
r4421 r4422 1076 1076 #elif (BLOCK_SIZE == 128) 1077 1077 if (advEntries == 1) { 1078 if (block_shift == 0) { 1079 result_value = genAdvanceInLoad(loadIdx); 1080 //b.CreateCall(mFunc_print_register, result_value); 1081 } 1078 1082 if (block_shift == 1) { 1079 1083 Value* advanceq_value = genShiftHighbitToLow(genAdvanceInLoad(loadIdx)); … … 1110 1114 result_value = b.CreateBitCast(adv_longint, mBitBlockType); 1111 1115 //b.CreateCall(mFunc_print_register, genAdvanceInLoad(loadIdx)); 1112 //b.CreateCall(mFunc_print_register, strm_value);1116 //b.CreateCall(mFunc_print_register, genAdvanceInLoad(loadIdx-1)); 1113 1117 //b.CreateCall(mFunc_print_register, result_value); 1114 1118 } 1115 1119 // copy entries from previous blocks forward 1116 for (int i = storeIdx; i < loadIdx; i++) {1117 genAdvanceOutStore(genAdvanceInLoad(i ), i+1);1120 for (int i = loadIdx; i > storeIdx; i--) { 1121 genAdvanceOutStore(genAdvanceInLoad(i-1), i); 1118 1122 } 1119 1123 }
Note: See TracChangeset
for help on using the changeset viewer.