perl_matcher_non_recursive.hpp 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. /*
  2. *
  3. * Copyright (c) 2002
  4. * John Maddock
  5. *
  6. * Use, modification and distribution are subject to the
  7. * Boost Software License, Version 1.0. (See accompanying file
  8. * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. *
  10. */
  11. /*
  12. * LOCATION: see http://www.boost.org for most recent version.
  13. * FILE perl_matcher_common.cpp
  14. * VERSION see <boost/version.hpp>
  15. * DESCRIPTION: Definitions of perl_matcher member functions that are
  16. * specific to the non-recursive implementation.
  17. */
  18. #ifndef BOOST_REGEX_V5_PERL_MATCHER_NON_RECURSIVE_HPP
  19. #define BOOST_REGEX_V5_PERL_MATCHER_NON_RECURSIVE_HPP
  20. #include <boost/regex/config.hpp>
  21. #ifndef BOOST_REGEX_STANDALONE
  22. #include <boost/config.hpp>
  23. #if defined(BOOST_HAS_PRAGMA_ONCE)
  24. #pragma once
  25. #include <boost/regex/v5/perl_matcher.hpp>
  26. #endif
  27. #endif
  28. #include <boost/regex/v5/mem_block_cache.hpp>
  29. #ifdef BOOST_REGEX_MSVC
  30. # pragma warning(push)
  31. # pragma warning(disable: 4706 4459)
  32. #if BOOST_REGEX_MSVC < 1910
  33. #pragma warning(disable:4800)
  34. #endif
  35. #endif
  36. namespace boost{
  37. namespace BOOST_REGEX_DETAIL_NS{
  38. template <class T>
  39. inline void inplace_destroy(T* p)
  40. {
  41. (void)p; // warning suppression
  42. p->~T();
  43. }
  44. struct saved_state
  45. {
  46. union{
  47. unsigned int state_id;
  48. // this padding ensures correct alignment on 64-bit platforms:
  49. std::size_t padding1;
  50. std::ptrdiff_t padding2;
  51. void* padding3;
  52. };
  53. saved_state(unsigned i) : state_id(i) {}
  54. };
  55. template <class BidiIterator>
  56. struct saved_matched_paren : public saved_state
  57. {
  58. int index;
  59. sub_match<BidiIterator> sub;
  60. saved_matched_paren(int i, const sub_match<BidiIterator>& s) : saved_state(1), index(i), sub(s){}
  61. };
  62. template <class BidiIterator>
  63. struct saved_position : public saved_state
  64. {
  65. const re_syntax_base* pstate;
  66. BidiIterator position;
  67. saved_position(const re_syntax_base* ps, BidiIterator pos, int i) : saved_state(i), pstate(ps), position(pos){}
  68. };
  69. template <class BidiIterator>
  70. struct saved_assertion : public saved_position<BidiIterator>
  71. {
  72. bool positive;
  73. saved_assertion(bool p, const re_syntax_base* ps, BidiIterator pos)
  74. : saved_position<BidiIterator>(ps, pos, saved_type_assertion), positive(p){}
  75. };
  76. template <class BidiIterator>
  77. struct saved_repeater : public saved_state
  78. {
  79. repeater_count<BidiIterator> count;
  80. saved_repeater(int i, repeater_count<BidiIterator>** s, BidiIterator start, int current_recursion_id)
  81. : saved_state(saved_state_repeater_count), count(i, s, start, current_recursion_id){}
  82. };
  83. struct saved_extra_block : public saved_state
  84. {
  85. saved_state *base, *end;
  86. saved_extra_block(saved_state* b, saved_state* e)
  87. : saved_state(saved_state_extra_block), base(b), end(e) {}
  88. };
  89. struct save_state_init
  90. {
  91. saved_state** stack;
  92. save_state_init(saved_state** base, saved_state** end)
  93. : stack(base)
  94. {
  95. *base = static_cast<saved_state*>(get_mem_block());
  96. *end = reinterpret_cast<saved_state*>(reinterpret_cast<char*>(*base)+BOOST_REGEX_BLOCKSIZE);
  97. --(*end);
  98. (void) new (*end)saved_state(0);
  99. BOOST_REGEX_ASSERT(*end > *base);
  100. }
  101. ~save_state_init()
  102. {
  103. put_mem_block(*stack);
  104. *stack = 0;
  105. }
  106. };
  107. template <class BidiIterator>
  108. struct saved_single_repeat : public saved_state
  109. {
  110. std::size_t count;
  111. const re_repeat* rep;
  112. BidiIterator last_position;
  113. saved_single_repeat(std::size_t c, const re_repeat* r, BidiIterator lp, int arg_id)
  114. : saved_state(arg_id), count(c), rep(r), last_position(lp){}
  115. };
  116. template <class Results>
  117. struct saved_recursion : public saved_state
  118. {
  119. saved_recursion(int idx, const re_syntax_base* p, Results* pr, Results* pr2)
  120. : saved_state(14), recursion_id(idx), preturn_address(p), internal_results(*pr), prior_results(*pr2) {}
  121. int recursion_id;
  122. const re_syntax_base* preturn_address;
  123. Results internal_results, prior_results;
  124. };
  125. struct saved_change_case : public saved_state
  126. {
  127. bool icase;
  128. saved_change_case(bool c) : saved_state(18), icase(c) {}
  129. };
  130. struct incrementer
  131. {
  132. incrementer(unsigned* pu) : m_pu(pu) { ++*m_pu; }
  133. ~incrementer() { --*m_pu; }
  134. bool operator > (unsigned i) { return *m_pu > i; }
  135. private:
  136. unsigned* m_pu;
  137. };
  138. template <class BidiIterator, class Allocator, class traits>
  139. bool perl_matcher<BidiIterator, Allocator, traits>::match_all_states()
  140. {
  141. static matcher_proc_type const s_match_vtable[34] =
  142. {
  143. (&perl_matcher<BidiIterator, Allocator, traits>::match_startmark),
  144. &perl_matcher<BidiIterator, Allocator, traits>::match_endmark,
  145. &perl_matcher<BidiIterator, Allocator, traits>::match_literal,
  146. &perl_matcher<BidiIterator, Allocator, traits>::match_start_line,
  147. &perl_matcher<BidiIterator, Allocator, traits>::match_end_line,
  148. &perl_matcher<BidiIterator, Allocator, traits>::match_wild,
  149. &perl_matcher<BidiIterator, Allocator, traits>::match_match,
  150. &perl_matcher<BidiIterator, Allocator, traits>::match_word_boundary,
  151. &perl_matcher<BidiIterator, Allocator, traits>::match_within_word,
  152. &perl_matcher<BidiIterator, Allocator, traits>::match_word_start,
  153. &perl_matcher<BidiIterator, Allocator, traits>::match_word_end,
  154. &perl_matcher<BidiIterator, Allocator, traits>::match_buffer_start,
  155. &perl_matcher<BidiIterator, Allocator, traits>::match_buffer_end,
  156. &perl_matcher<BidiIterator, Allocator, traits>::match_backref,
  157. &perl_matcher<BidiIterator, Allocator, traits>::match_long_set,
  158. &perl_matcher<BidiIterator, Allocator, traits>::match_set,
  159. &perl_matcher<BidiIterator, Allocator, traits>::match_jump,
  160. &perl_matcher<BidiIterator, Allocator, traits>::match_alt,
  161. &perl_matcher<BidiIterator, Allocator, traits>::match_rep,
  162. &perl_matcher<BidiIterator, Allocator, traits>::match_combining,
  163. &perl_matcher<BidiIterator, Allocator, traits>::match_soft_buffer_end,
  164. &perl_matcher<BidiIterator, Allocator, traits>::match_restart_continue,
  165. // Although this next line *should* be evaluated at compile time, in practice
  166. // some compilers (VC++) emit run-time initialisation which breaks thread
  167. // safety, so use a dispatch function instead:
  168. //(::boost::is_random_access_iterator<BidiIterator>::value ? &perl_matcher<BidiIterator, Allocator, traits>::match_dot_repeat_fast : &perl_matcher<BidiIterator, Allocator, traits>::match_dot_repeat_slow),
  169. &perl_matcher<BidiIterator, Allocator, traits>::match_dot_repeat_dispatch,
  170. &perl_matcher<BidiIterator, Allocator, traits>::match_char_repeat,
  171. &perl_matcher<BidiIterator, Allocator, traits>::match_set_repeat,
  172. &perl_matcher<BidiIterator, Allocator, traits>::match_long_set_repeat,
  173. &perl_matcher<BidiIterator, Allocator, traits>::match_backstep,
  174. &perl_matcher<BidiIterator, Allocator, traits>::match_assert_backref,
  175. &perl_matcher<BidiIterator, Allocator, traits>::match_toggle_case,
  176. &perl_matcher<BidiIterator, Allocator, traits>::match_recursion,
  177. &perl_matcher<BidiIterator, Allocator, traits>::match_fail,
  178. &perl_matcher<BidiIterator, Allocator, traits>::match_accept,
  179. &perl_matcher<BidiIterator, Allocator, traits>::match_commit,
  180. &perl_matcher<BidiIterator, Allocator, traits>::match_then,
  181. };
  182. incrementer inc(&m_recursions);
  183. if(inc > 80)
  184. raise_error(traits_inst, regex_constants::error_complexity);
  185. push_recursion_stopper();
  186. do{
  187. while(pstate)
  188. {
  189. matcher_proc_type proc = s_match_vtable[pstate->type];
  190. ++state_count;
  191. if(!(this->*proc)())
  192. {
  193. if(state_count > max_state_count)
  194. raise_error(traits_inst, regex_constants::error_complexity);
  195. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  196. m_has_partial_match = true;
  197. bool successful_unwind = unwind(false);
  198. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  199. m_has_partial_match = true;
  200. if(!successful_unwind)
  201. return m_recursive_result;
  202. }
  203. }
  204. }while(unwind(true));
  205. return m_recursive_result;
  206. }
  207. template <class BidiIterator, class Allocator, class traits>
  208. void perl_matcher<BidiIterator, Allocator, traits>::extend_stack()
  209. {
  210. if(used_block_count)
  211. {
  212. --used_block_count;
  213. saved_state* stack_base;
  214. saved_state* backup_state;
  215. stack_base = static_cast<saved_state*>(get_mem_block());
  216. backup_state = reinterpret_cast<saved_state*>(reinterpret_cast<char*>(stack_base)+BOOST_REGEX_BLOCKSIZE);
  217. saved_extra_block* block = reinterpret_cast<saved_extra_block*>(
  218. reinterpret_cast<std::uintptr_t>(backup_state) - sizeof(saved_extra_block));
  219. (void) new (block) saved_extra_block(m_stack_base, m_backup_state);
  220. m_stack_base = stack_base;
  221. m_backup_state = block;
  222. }
  223. else
  224. raise_error(traits_inst, regex_constants::error_stack);
  225. }
  226. template <class BidiIterator, class Allocator, class traits>
  227. inline void perl_matcher<BidiIterator, Allocator, traits>::push_matched_paren(int index, const sub_match<BidiIterator>& sub)
  228. {
  229. //BOOST_REGEX_ASSERT(index);
  230. saved_matched_paren<BidiIterator>* pmp = static_cast<saved_matched_paren<BidiIterator>*>(m_backup_state);
  231. --pmp;
  232. if(pmp < m_stack_base)
  233. {
  234. extend_stack();
  235. pmp = static_cast<saved_matched_paren<BidiIterator>*>(m_backup_state);
  236. --pmp;
  237. }
  238. (void) new (pmp)saved_matched_paren<BidiIterator>(index, sub);
  239. m_backup_state = pmp;
  240. }
  241. template <class BidiIterator, class Allocator, class traits>
  242. inline void perl_matcher<BidiIterator, Allocator, traits>::push_case_change(bool c)
  243. {
  244. //BOOST_REGEX_ASSERT(index);
  245. saved_change_case* pmp = static_cast<saved_change_case*>(m_backup_state);
  246. --pmp;
  247. if(pmp < m_stack_base)
  248. {
  249. extend_stack();
  250. pmp = static_cast<saved_change_case*>(m_backup_state);
  251. --pmp;
  252. }
  253. (void) new (pmp)saved_change_case(c);
  254. m_backup_state = pmp;
  255. }
  256. template <class BidiIterator, class Allocator, class traits>
  257. inline void perl_matcher<BidiIterator, Allocator, traits>::push_recursion_stopper()
  258. {
  259. saved_state* pmp = m_backup_state;
  260. --pmp;
  261. if(pmp < m_stack_base)
  262. {
  263. extend_stack();
  264. pmp = m_backup_state;
  265. --pmp;
  266. }
  267. (void) new (pmp)saved_state(saved_type_recurse);
  268. m_backup_state = pmp;
  269. }
  270. template <class BidiIterator, class Allocator, class traits>
  271. inline void perl_matcher<BidiIterator, Allocator, traits>::push_assertion(const re_syntax_base* ps, bool positive)
  272. {
  273. saved_assertion<BidiIterator>* pmp = static_cast<saved_assertion<BidiIterator>*>(m_backup_state);
  274. --pmp;
  275. if(pmp < m_stack_base)
  276. {
  277. extend_stack();
  278. pmp = static_cast<saved_assertion<BidiIterator>*>(m_backup_state);
  279. --pmp;
  280. }
  281. (void) new (pmp)saved_assertion<BidiIterator>(positive, ps, position);
  282. m_backup_state = pmp;
  283. }
  284. template <class BidiIterator, class Allocator, class traits>
  285. inline void perl_matcher<BidiIterator, Allocator, traits>::push_alt(const re_syntax_base* ps)
  286. {
  287. saved_position<BidiIterator>* pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  288. --pmp;
  289. if(pmp < m_stack_base)
  290. {
  291. extend_stack();
  292. pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  293. --pmp;
  294. }
  295. (void) new (pmp)saved_position<BidiIterator>(ps, position, saved_state_alt);
  296. m_backup_state = pmp;
  297. }
  298. template <class BidiIterator, class Allocator, class traits>
  299. inline void perl_matcher<BidiIterator, Allocator, traits>::push_non_greedy_repeat(const re_syntax_base* ps)
  300. {
  301. saved_position<BidiIterator>* pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  302. --pmp;
  303. if(pmp < m_stack_base)
  304. {
  305. extend_stack();
  306. pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  307. --pmp;
  308. }
  309. (void) new (pmp)saved_position<BidiIterator>(ps, position, saved_state_non_greedy_long_repeat);
  310. m_backup_state = pmp;
  311. }
  312. template <class BidiIterator, class Allocator, class traits>
  313. inline void perl_matcher<BidiIterator, Allocator, traits>::push_repeater_count(int i, repeater_count<BidiIterator>** s)
  314. {
  315. saved_repeater<BidiIterator>* pmp = static_cast<saved_repeater<BidiIterator>*>(m_backup_state);
  316. --pmp;
  317. if(pmp < m_stack_base)
  318. {
  319. extend_stack();
  320. pmp = static_cast<saved_repeater<BidiIterator>*>(m_backup_state);
  321. --pmp;
  322. }
  323. (void) new (pmp)saved_repeater<BidiIterator>(i, s, position, this->recursion_stack.empty() ? (INT_MIN + 3) : this->recursion_stack.back().idx);
  324. m_backup_state = pmp;
  325. }
  326. template <class BidiIterator, class Allocator, class traits>
  327. inline void perl_matcher<BidiIterator, Allocator, traits>::push_single_repeat(std::size_t c, const re_repeat* r, BidiIterator last_position, int state_id)
  328. {
  329. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  330. --pmp;
  331. if(pmp < m_stack_base)
  332. {
  333. extend_stack();
  334. pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  335. --pmp;
  336. }
  337. (void) new (pmp)saved_single_repeat<BidiIterator>(c, r, last_position, state_id);
  338. m_backup_state = pmp;
  339. }
  340. template <class BidiIterator, class Allocator, class traits>
  341. inline void perl_matcher<BidiIterator, Allocator, traits>::push_recursion(int idx, const re_syntax_base* p, results_type* presults, results_type* presults2)
  342. {
  343. saved_recursion<results_type>* pmp = static_cast<saved_recursion<results_type>*>(m_backup_state);
  344. --pmp;
  345. if(pmp < m_stack_base)
  346. {
  347. extend_stack();
  348. pmp = static_cast<saved_recursion<results_type>*>(m_backup_state);
  349. --pmp;
  350. }
  351. (void) new (pmp)saved_recursion<results_type>(idx, p, presults, presults2);
  352. m_backup_state = pmp;
  353. }
  354. template <class BidiIterator, class Allocator, class traits>
  355. bool perl_matcher<BidiIterator, Allocator, traits>::match_toggle_case()
  356. {
  357. // change our case sensitivity:
  358. push_case_change(this->icase);
  359. this->icase = static_cast<const re_case*>(pstate)->icase;
  360. pstate = pstate->next.p;
  361. return true;
  362. }
  363. template <class BidiIterator, class Allocator, class traits>
  364. bool perl_matcher<BidiIterator, Allocator, traits>::match_startmark()
  365. {
  366. int index = static_cast<const re_brace*>(pstate)->index;
  367. icase = static_cast<const re_brace*>(pstate)->icase;
  368. switch(index)
  369. {
  370. case 0:
  371. pstate = pstate->next.p;
  372. break;
  373. case -1:
  374. case -2:
  375. {
  376. // forward lookahead assert:
  377. const re_syntax_base* next_pstate = static_cast<const re_jump*>(pstate->next.p)->alt.p->next.p;
  378. pstate = pstate->next.p->next.p;
  379. push_assertion(next_pstate, index == -1);
  380. break;
  381. }
  382. case -3:
  383. {
  384. // independent sub-expression, currently this is always recursive:
  385. bool old_independent = m_independent;
  386. m_independent = true;
  387. const re_syntax_base* next_pstate = static_cast<const re_jump*>(pstate->next.p)->alt.p->next.p;
  388. pstate = pstate->next.p->next.p;
  389. bool r = false;
  390. #if !defined(BOOST_NO_EXCEPTIONS)
  391. try{
  392. #endif
  393. r = match_all_states();
  394. if(!r && !m_independent)
  395. {
  396. // Must be unwinding from a COMMIT/SKIP/PRUNE and the independent
  397. // sub failed, need to unwind everything else:
  398. while (m_backup_state->state_id)
  399. unwind(false);
  400. return false;
  401. }
  402. #if !defined(BOOST_NO_EXCEPTIONS)
  403. }
  404. catch(...)
  405. {
  406. pstate = next_pstate;
  407. // unwind all pushed states, apart from anything else this
  408. // ensures that all the states are correctly destructed
  409. // not just the memory freed.
  410. while(unwind(true)) {}
  411. throw;
  412. }
  413. #endif
  414. pstate = next_pstate;
  415. m_independent = old_independent;
  416. #ifdef BOOST_REGEX_MATCH_EXTRA
  417. if(r && (m_match_flags & match_extra))
  418. {
  419. //
  420. // our captures have been stored in *m_presult
  421. // we need to unpack them, and insert them
  422. // back in the right order when we unwind the stack:
  423. //
  424. match_results<BidiIterator, Allocator> temp_match(*m_presult);
  425. unsigned i;
  426. for(i = 0; i < temp_match.size(); ++i)
  427. (*m_presult)[i].get_captures().clear();
  428. // match everything else:
  429. #if !defined(BOOST_NO_EXCEPTIONS)
  430. try{
  431. #endif
  432. r = match_all_states();
  433. #if !defined(BOOST_NO_EXCEPTIONS)
  434. }
  435. catch(...)
  436. {
  437. pstate = next_pstate;
  438. // unwind all pushed states, apart from anything else this
  439. // ensures that all the states are correctly destructed
  440. // not just the memory freed.
  441. while(unwind(true)) {}
  442. throw;
  443. }
  444. #endif
  445. // now place the stored captures back:
  446. for(i = 0; i < temp_match.size(); ++i)
  447. {
  448. typedef typename sub_match<BidiIterator>::capture_sequence_type seq;
  449. seq& s1 = (*m_presult)[i].get_captures();
  450. const seq& s2 = temp_match[i].captures();
  451. s1.insert(
  452. s1.end(),
  453. s2.begin(),
  454. s2.end());
  455. }
  456. }
  457. #endif
  458. return r;
  459. }
  460. case -4:
  461. {
  462. // conditional expression:
  463. const re_alt* alt = static_cast<const re_alt*>(pstate->next.p);
  464. BOOST_REGEX_ASSERT(alt->type == syntax_element_alt);
  465. pstate = alt->next.p;
  466. if(pstate->type == syntax_element_assert_backref)
  467. {
  468. if(!match_assert_backref())
  469. pstate = alt->alt.p;
  470. break;
  471. }
  472. else
  473. {
  474. // zero width assertion, have to match this recursively:
  475. BOOST_REGEX_ASSERT(pstate->type == syntax_element_startmark);
  476. bool negated = static_cast<const re_brace*>(pstate)->index == -2;
  477. BidiIterator saved_position = position;
  478. const re_syntax_base* next_pstate = static_cast<const re_jump*>(pstate->next.p)->alt.p->next.p;
  479. pstate = pstate->next.p->next.p;
  480. #if !defined(BOOST_NO_EXCEPTIONS)
  481. try{
  482. #endif
  483. bool r = match_all_states();
  484. position = saved_position;
  485. if(negated)
  486. r = !r;
  487. if(r)
  488. pstate = next_pstate;
  489. else
  490. pstate = alt->alt.p;
  491. #if !defined(BOOST_NO_EXCEPTIONS)
  492. }
  493. catch(...)
  494. {
  495. pstate = next_pstate;
  496. // unwind all pushed states, apart from anything else this
  497. // ensures that all the states are correctly destructed
  498. // not just the memory freed.
  499. while(unwind(true)){}
  500. throw;
  501. }
  502. #endif
  503. break;
  504. }
  505. }
  506. case -5:
  507. {
  508. push_matched_paren(0, (*m_presult)[0]);
  509. m_presult->set_first(position, 0, true);
  510. pstate = pstate->next.p;
  511. break;
  512. }
  513. default:
  514. {
  515. BOOST_REGEX_ASSERT(index > 0);
  516. if((m_match_flags & match_nosubs) == 0)
  517. {
  518. push_matched_paren(index, (*m_presult)[index]);
  519. m_presult->set_first(position, index);
  520. }
  521. pstate = pstate->next.p;
  522. break;
  523. }
  524. }
  525. return true;
  526. }
  527. template <class BidiIterator, class Allocator, class traits>
  528. bool perl_matcher<BidiIterator, Allocator, traits>::match_alt()
  529. {
  530. bool take_first, take_second;
  531. const re_alt* jmp = static_cast<const re_alt*>(pstate);
  532. // find out which of these two alternatives we need to take:
  533. if(position == last)
  534. {
  535. take_first = jmp->can_be_null & mask_take;
  536. take_second = jmp->can_be_null & mask_skip;
  537. }
  538. else
  539. {
  540. take_first = can_start(*position, jmp->_map, (unsigned char)mask_take);
  541. take_second = can_start(*position, jmp->_map, (unsigned char)mask_skip);
  542. }
  543. if(take_first)
  544. {
  545. // we can take the first alternative,
  546. // see if we need to push next alternative:
  547. if(take_second)
  548. {
  549. push_alt(jmp->alt.p);
  550. }
  551. pstate = pstate->next.p;
  552. return true;
  553. }
  554. if(take_second)
  555. {
  556. pstate = jmp->alt.p;
  557. return true;
  558. }
  559. return false; // neither option is possible
  560. }
  561. template <class BidiIterator, class Allocator, class traits>
  562. bool perl_matcher<BidiIterator, Allocator, traits>::match_rep()
  563. {
  564. #ifdef BOOST_REGEX_MSVC
  565. #pragma warning(push)
  566. #pragma warning(disable:4127 4244)
  567. #endif
  568. #ifdef BOOST_BORLANDC
  569. #pragma option push -w-8008 -w-8066 -w-8004
  570. #endif
  571. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  572. // find out which of these two alternatives we need to take:
  573. bool take_first, take_second;
  574. if(position == last)
  575. {
  576. take_first = rep->can_be_null & mask_take;
  577. take_second = rep->can_be_null & mask_skip;
  578. }
  579. else
  580. {
  581. take_first = can_start(*position, rep->_map, (unsigned char)mask_take);
  582. take_second = can_start(*position, rep->_map, (unsigned char)mask_skip);
  583. }
  584. if((m_backup_state->state_id != saved_state_repeater_count)
  585. || (static_cast<saved_repeater<BidiIterator>*>(m_backup_state)->count.get_id() != rep->state_id)
  586. || (next_count->get_id() != rep->state_id))
  587. {
  588. // we're moving to a different repeat from the last
  589. // one, so set up a counter object:
  590. push_repeater_count(rep->state_id, &next_count);
  591. }
  592. //
  593. // If we've had at least one repeat already, and the last one
  594. // matched the NULL string then set the repeat count to
  595. // maximum:
  596. //
  597. next_count->check_null_repeat(position, rep->max);
  598. if(next_count->get_count() < rep->min)
  599. {
  600. // we must take the repeat:
  601. if(take_first)
  602. {
  603. // increase the counter:
  604. ++(*next_count);
  605. pstate = rep->next.p;
  606. return true;
  607. }
  608. return false;
  609. }
  610. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  611. if(greedy)
  612. {
  613. // try and take the repeat if we can:
  614. if((next_count->get_count() < rep->max) && take_first)
  615. {
  616. if(take_second)
  617. {
  618. // store position in case we fail:
  619. push_alt(rep->alt.p);
  620. }
  621. // increase the counter:
  622. ++(*next_count);
  623. pstate = rep->next.p;
  624. return true;
  625. }
  626. else if(take_second)
  627. {
  628. pstate = rep->alt.p;
  629. return true;
  630. }
  631. return false; // can't take anything, fail...
  632. }
  633. else // non-greedy
  634. {
  635. // try and skip the repeat if we can:
  636. if(take_second)
  637. {
  638. if((next_count->get_count() < rep->max) && take_first)
  639. {
  640. // store position in case we fail:
  641. push_non_greedy_repeat(rep->next.p);
  642. }
  643. pstate = rep->alt.p;
  644. return true;
  645. }
  646. if((next_count->get_count() < rep->max) && take_first)
  647. {
  648. // increase the counter:
  649. ++(*next_count);
  650. pstate = rep->next.p;
  651. return true;
  652. }
  653. }
  654. return false;
  655. #ifdef BOOST_BORLANDC
  656. #pragma option pop
  657. #endif
  658. #ifdef BOOST_REGEX_MSVC
  659. #pragma warning(pop)
  660. #endif
  661. }
  662. template <class BidiIterator, class Allocator, class traits>
  663. bool perl_matcher<BidiIterator, Allocator, traits>::match_dot_repeat_slow()
  664. {
  665. std::size_t count = 0;
  666. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  667. re_syntax_base* psingle = rep->next.p;
  668. // match compulsory repeats first:
  669. while(count < rep->min)
  670. {
  671. pstate = psingle;
  672. if(!match_wild())
  673. return false;
  674. ++count;
  675. }
  676. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  677. if(greedy)
  678. {
  679. // repeat for as long as we can:
  680. while(count < rep->max)
  681. {
  682. pstate = psingle;
  683. if(!match_wild())
  684. break;
  685. ++count;
  686. }
  687. // remember where we got to if this is a leading repeat:
  688. if((rep->leading) && (count < rep->max))
  689. restart = position;
  690. // push backtrack info if available:
  691. if(count - rep->min)
  692. push_single_repeat(count, rep, position, saved_state_greedy_single_repeat);
  693. // jump to next state:
  694. pstate = rep->alt.p;
  695. return true;
  696. }
  697. else
  698. {
  699. // non-greedy, push state and return true if we can skip:
  700. if(count < rep->max)
  701. push_single_repeat(count, rep, position, saved_state_rep_slow_dot);
  702. pstate = rep->alt.p;
  703. return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_skip);
  704. }
  705. }
  706. template <class BidiIterator, class Allocator, class traits>
  707. bool perl_matcher<BidiIterator, Allocator, traits>::match_dot_repeat_fast()
  708. {
  709. if(m_match_flags & match_not_dot_null)
  710. return match_dot_repeat_slow();
  711. if((static_cast<const re_dot*>(pstate->next.p)->mask & match_any_mask) == 0)
  712. return match_dot_repeat_slow();
  713. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  714. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  715. std::size_t count = static_cast<std::size_t>((std::min)(static_cast<std::size_t>(std::distance(position, last)), greedy ? rep->max : rep->min));
  716. if(rep->min > count)
  717. {
  718. position = last;
  719. return false; // not enough text left to match
  720. }
  721. std::advance(position, count);
  722. if(greedy)
  723. {
  724. if((rep->leading) && (count < rep->max))
  725. restart = position;
  726. // push backtrack info if available:
  727. if(count - rep->min)
  728. push_single_repeat(count, rep, position, saved_state_greedy_single_repeat);
  729. // jump to next state:
  730. pstate = rep->alt.p;
  731. return true;
  732. }
  733. else
  734. {
  735. // non-greedy, push state and return true if we can skip:
  736. if(count < rep->max)
  737. push_single_repeat(count, rep, position, saved_state_rep_fast_dot);
  738. pstate = rep->alt.p;
  739. return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_skip);
  740. }
  741. }
  742. template <class BidiIterator, class Allocator, class traits>
  743. bool perl_matcher<BidiIterator, Allocator, traits>::match_char_repeat()
  744. {
  745. #ifdef BOOST_REGEX_MSVC
  746. #pragma warning(push)
  747. #pragma warning(disable:4127)
  748. #endif
  749. #ifdef BOOST_BORLANDC
  750. #pragma option push -w-8008 -w-8066 -w-8004
  751. #endif
  752. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  753. BOOST_REGEX_ASSERT(1 == static_cast<const re_literal*>(rep->next.p)->length);
  754. const char_type what = *reinterpret_cast<const char_type*>(static_cast<const re_literal*>(rep->next.p) + 1);
  755. std::size_t count = 0;
  756. //
  757. // start by working out how much we can skip:
  758. //
  759. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  760. std::size_t desired = greedy ? rep->max : rep->min;
  761. if(::boost::is_random_access_iterator<BidiIterator>::value)
  762. {
  763. BidiIterator end = position;
  764. // Move end forward by "desired", preferably without using distance or advance if we can
  765. // as these can be slow for some iterator types.
  766. std::size_t len = (desired == (std::numeric_limits<std::size_t>::max)()) ? 0u : std::distance(position, last);
  767. if(desired >= len)
  768. end = last;
  769. else
  770. std::advance(end, desired);
  771. BidiIterator origin(position);
  772. while((position != end) && (traits_inst.translate(*position, icase) == what))
  773. {
  774. ++position;
  775. }
  776. count = (unsigned)std::distance(origin, position);
  777. }
  778. else
  779. {
  780. while((count < desired) && (position != last) && (traits_inst.translate(*position, icase) == what))
  781. {
  782. ++position;
  783. ++count;
  784. }
  785. }
  786. if(count < rep->min)
  787. return false;
  788. if(greedy)
  789. {
  790. if((rep->leading) && (count < rep->max))
  791. restart = position;
  792. // push backtrack info if available:
  793. if(count - rep->min)
  794. push_single_repeat(count, rep, position, saved_state_greedy_single_repeat);
  795. // jump to next state:
  796. pstate = rep->alt.p;
  797. return true;
  798. }
  799. else
  800. {
  801. // non-greedy, push state and return true if we can skip:
  802. if(count < rep->max)
  803. push_single_repeat(count, rep, position, saved_state_rep_char);
  804. pstate = rep->alt.p;
  805. return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_skip);
  806. }
  807. #ifdef BOOST_BORLANDC
  808. #pragma option pop
  809. #endif
  810. #ifdef BOOST_REGEX_MSVC
  811. #pragma warning(pop)
  812. #endif
  813. }
  814. template <class BidiIterator, class Allocator, class traits>
  815. bool perl_matcher<BidiIterator, Allocator, traits>::match_set_repeat()
  816. {
  817. #ifdef BOOST_REGEX_MSVC
  818. #pragma warning(push)
  819. #pragma warning(disable:4127)
  820. #endif
  821. #ifdef BOOST_BORLANDC
  822. #pragma option push -w-8008 -w-8066 -w-8004
  823. #endif
  824. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  825. const unsigned char* map = static_cast<const re_set*>(rep->next.p)->_map;
  826. std::size_t count = 0;
  827. //
  828. // start by working out how much we can skip:
  829. //
  830. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  831. std::size_t desired = greedy ? rep->max : rep->min;
  832. if(::boost::is_random_access_iterator<BidiIterator>::value)
  833. {
  834. BidiIterator end = position;
  835. // Move end forward by "desired", preferably without using distance or advance if we can
  836. // as these can be slow for some iterator types.
  837. std::size_t len = (desired == (std::numeric_limits<std::size_t>::max)()) ? 0u : std::distance(position, last);
  838. if(desired >= len)
  839. end = last;
  840. else
  841. std::advance(end, desired);
  842. BidiIterator origin(position);
  843. while((position != end) && map[static_cast<unsigned char>(traits_inst.translate(*position, icase))])
  844. {
  845. ++position;
  846. }
  847. count = (unsigned)std::distance(origin, position);
  848. }
  849. else
  850. {
  851. while((count < desired) && (position != last) && map[static_cast<unsigned char>(traits_inst.translate(*position, icase))])
  852. {
  853. ++position;
  854. ++count;
  855. }
  856. }
  857. if(count < rep->min)
  858. return false;
  859. if(greedy)
  860. {
  861. if((rep->leading) && (count < rep->max))
  862. restart = position;
  863. // push backtrack info if available:
  864. if(count - rep->min)
  865. push_single_repeat(count, rep, position, saved_state_greedy_single_repeat);
  866. // jump to next state:
  867. pstate = rep->alt.p;
  868. return true;
  869. }
  870. else
  871. {
  872. // non-greedy, push state and return true if we can skip:
  873. if(count < rep->max)
  874. push_single_repeat(count, rep, position, saved_state_rep_short_set);
  875. pstate = rep->alt.p;
  876. return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_skip);
  877. }
  878. #ifdef BOOST_BORLANDC
  879. #pragma option pop
  880. #endif
  881. #ifdef BOOST_REGEX_MSVC
  882. #pragma warning(pop)
  883. #endif
  884. }
  885. template <class BidiIterator, class Allocator, class traits>
  886. bool perl_matcher<BidiIterator, Allocator, traits>::match_long_set_repeat()
  887. {
  888. #ifdef BOOST_REGEX_MSVC
  889. #pragma warning(push)
  890. #pragma warning(disable:4127)
  891. #endif
  892. #ifdef BOOST_BORLANDC
  893. #pragma option push -w-8008 -w-8066 -w-8004
  894. #endif
  895. typedef typename traits::char_class_type m_type;
  896. const re_repeat* rep = static_cast<const re_repeat*>(pstate);
  897. const re_set_long<m_type>* set = static_cast<const re_set_long<m_type>*>(pstate->next.p);
  898. std::size_t count = 0;
  899. //
  900. // start by working out how much we can skip:
  901. //
  902. bool greedy = (rep->greedy) && (!(m_match_flags & regex_constants::match_any) || m_independent);
  903. std::size_t desired = greedy ? rep->max : rep->min;
  904. if(::boost::is_random_access_iterator<BidiIterator>::value)
  905. {
  906. BidiIterator end = position;
  907. // Move end forward by "desired", preferably without using distance or advance if we can
  908. // as these can be slow for some iterator types.
  909. std::size_t len = (desired == (std::numeric_limits<std::size_t>::max)()) ? 0u : std::distance(position, last);
  910. if(desired >= len)
  911. end = last;
  912. else
  913. std::advance(end, desired);
  914. BidiIterator origin(position);
  915. while((position != end) && (position != re_is_set_member(position, last, set, re.get_data(), icase)))
  916. {
  917. ++position;
  918. }
  919. count = (unsigned)std::distance(origin, position);
  920. }
  921. else
  922. {
  923. while((count < desired) && (position != last) && (position != re_is_set_member(position, last, set, re.get_data(), icase)))
  924. {
  925. ++position;
  926. ++count;
  927. }
  928. }
  929. if(count < rep->min)
  930. return false;
  931. if(greedy)
  932. {
  933. if((rep->leading) && (count < rep->max))
  934. restart = position;
  935. // push backtrack info if available:
  936. if(count - rep->min)
  937. push_single_repeat(count, rep, position, saved_state_greedy_single_repeat);
  938. // jump to next state:
  939. pstate = rep->alt.p;
  940. return true;
  941. }
  942. else
  943. {
  944. // non-greedy, push state and return true if we can skip:
  945. if(count < rep->max)
  946. push_single_repeat(count, rep, position, saved_state_rep_long_set);
  947. pstate = rep->alt.p;
  948. return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_skip);
  949. }
  950. #ifdef BOOST_BORLANDC
  951. #pragma option pop
  952. #endif
  953. #ifdef BOOST_REGEX_MSVC
  954. #pragma warning(pop)
  955. #endif
  956. }
  957. template <class BidiIterator, class Allocator, class traits>
  958. bool perl_matcher<BidiIterator, Allocator, traits>::match_recursion()
  959. {
  960. BOOST_REGEX_ASSERT(pstate->type == syntax_element_recurse);
  961. //
  962. // See if we've seen this recursion before at this location, if we have then
  963. // we need to prevent infinite recursion:
  964. //
  965. for(typename std::vector<recursion_info<results_type> >::reverse_iterator i = recursion_stack.rbegin(); i != recursion_stack.rend(); ++i)
  966. {
  967. if(i->idx == static_cast<const re_brace*>(static_cast<const re_jump*>(pstate)->alt.p)->index)
  968. {
  969. if(i->location_of_start == position)
  970. return false;
  971. break;
  972. }
  973. }
  974. //
  975. // Backup call stack:
  976. //
  977. push_recursion_pop();
  978. //
  979. // Set new call stack:
  980. //
  981. if(recursion_stack.capacity() == 0)
  982. {
  983. recursion_stack.reserve(50);
  984. }
  985. recursion_stack.push_back(recursion_info<results_type>());
  986. recursion_stack.back().preturn_address = pstate->next.p;
  987. recursion_stack.back().results = *m_presult;
  988. pstate = static_cast<const re_jump*>(pstate)->alt.p;
  989. recursion_stack.back().idx = static_cast<const re_brace*>(pstate)->index;
  990. recursion_stack.back().location_of_start = position;
  991. //if(static_cast<const re_recurse*>(pstate)->state_id > 0)
  992. {
  993. push_repeater_count(-(2 + static_cast<const re_brace*>(pstate)->index), &next_count);
  994. }
  995. return true;
  996. }
  997. template <class BidiIterator, class Allocator, class traits>
  998. bool perl_matcher<BidiIterator, Allocator, traits>::match_endmark()
  999. {
  1000. int index = static_cast<const re_brace*>(pstate)->index;
  1001. icase = static_cast<const re_brace*>(pstate)->icase;
  1002. if(index > 0)
  1003. {
  1004. if((m_match_flags & match_nosubs) == 0)
  1005. {
  1006. m_presult->set_second(position, index);
  1007. }
  1008. if(!recursion_stack.empty())
  1009. {
  1010. if(index == recursion_stack.back().idx)
  1011. {
  1012. pstate = recursion_stack.back().preturn_address;
  1013. *m_presult = recursion_stack.back().results;
  1014. push_recursion(recursion_stack.back().idx, recursion_stack.back().preturn_address, m_presult, &recursion_stack.back().results);
  1015. recursion_stack.pop_back();
  1016. push_repeater_count(-(2 + index), &next_count);
  1017. }
  1018. }
  1019. }
  1020. else if((index < 0) && (index != -4))
  1021. {
  1022. // matched forward lookahead:
  1023. pstate = 0;
  1024. return true;
  1025. }
  1026. pstate = pstate->next.p;
  1027. return true;
  1028. }
  1029. template <class BidiIterator, class Allocator, class traits>
  1030. bool perl_matcher<BidiIterator, Allocator, traits>::match_match()
  1031. {
  1032. if(!recursion_stack.empty())
  1033. {
  1034. BOOST_REGEX_ASSERT(0 == recursion_stack.back().idx);
  1035. pstate = recursion_stack.back().preturn_address;
  1036. push_recursion(recursion_stack.back().idx, recursion_stack.back().preturn_address, m_presult, &recursion_stack.back().results);
  1037. *m_presult = recursion_stack.back().results;
  1038. recursion_stack.pop_back();
  1039. return true;
  1040. }
  1041. if((m_match_flags & match_not_null) && (position == (*m_presult)[0].first))
  1042. return false;
  1043. if((m_match_flags & match_all) && (position != last))
  1044. return false;
  1045. if((m_match_flags & regex_constants::match_not_initial_null) && (position == search_base))
  1046. return false;
  1047. m_presult->set_second(position);
  1048. pstate = 0;
  1049. m_has_found_match = true;
  1050. if((m_match_flags & match_posix) == match_posix)
  1051. {
  1052. m_result.maybe_assign(*m_presult);
  1053. if((m_match_flags & match_any) == 0)
  1054. return false;
  1055. }
  1056. #ifdef BOOST_REGEX_MATCH_EXTRA
  1057. if(match_extra & m_match_flags)
  1058. {
  1059. for(unsigned i = 0; i < m_presult->size(); ++i)
  1060. if((*m_presult)[i].matched)
  1061. ((*m_presult)[i]).get_captures().push_back((*m_presult)[i]);
  1062. }
  1063. #endif
  1064. return true;
  1065. }
  1066. template <class BidiIterator, class Allocator, class traits>
  1067. bool perl_matcher<BidiIterator, Allocator, traits>::match_commit()
  1068. {
  1069. // Ideally we would just junk all the states that are on the stack,
  1070. // however we might not unwind correctly in that case, so for now,
  1071. // just mark that we don't backtrack into whatever is left (or rather
  1072. // we'll unwind it unconditionally without pausing to try other matches).
  1073. switch(static_cast<const re_commit*>(pstate)->action)
  1074. {
  1075. case commit_commit:
  1076. restart = last;
  1077. break;
  1078. case commit_skip:
  1079. if(base != position)
  1080. {
  1081. restart = position;
  1082. // Have to decrement restart since it will get incremented again later:
  1083. --restart;
  1084. }
  1085. break;
  1086. case commit_prune:
  1087. break;
  1088. }
  1089. saved_state* pmp = m_backup_state;
  1090. --pmp;
  1091. if(pmp < m_stack_base)
  1092. {
  1093. extend_stack();
  1094. pmp = m_backup_state;
  1095. --pmp;
  1096. }
  1097. (void) new (pmp)saved_state(16);
  1098. m_backup_state = pmp;
  1099. pstate = pstate->next.p;
  1100. return true;
  1101. }
  1102. template <class BidiIterator, class Allocator, class traits>
  1103. bool perl_matcher<BidiIterator, Allocator, traits>::match_then()
  1104. {
  1105. // Just leave a mark that we need to skip to next alternative:
  1106. saved_state* pmp = m_backup_state;
  1107. --pmp;
  1108. if(pmp < m_stack_base)
  1109. {
  1110. extend_stack();
  1111. pmp = m_backup_state;
  1112. --pmp;
  1113. }
  1114. (void) new (pmp)saved_state(17);
  1115. m_backup_state = pmp;
  1116. pstate = pstate->next.p;
  1117. return true;
  1118. }
  1119. template <class BidiIterator, class Allocator, class traits>
  1120. bool perl_matcher<BidiIterator, Allocator, traits>::skip_until_paren(int index, bool have_match)
  1121. {
  1122. while(pstate)
  1123. {
  1124. if(pstate->type == syntax_element_endmark)
  1125. {
  1126. if(static_cast<const re_brace*>(pstate)->index == index)
  1127. {
  1128. if(have_match)
  1129. return this->match_endmark();
  1130. pstate = pstate->next.p;
  1131. return true;
  1132. }
  1133. else
  1134. {
  1135. // Unenclosed closing ), occurs when (*ACCEPT) is inside some other
  1136. // parenthesis which may or may not have other side effects associated with it.
  1137. const re_syntax_base* sp = pstate;
  1138. match_endmark();
  1139. if(!pstate)
  1140. {
  1141. unwind(true);
  1142. // unwind may leave pstate NULL if we've unwound a forward lookahead, in which
  1143. // case just move to the next state and keep looking...
  1144. if (!pstate)
  1145. pstate = sp->next.p;
  1146. }
  1147. }
  1148. continue;
  1149. }
  1150. else if(pstate->type == syntax_element_match)
  1151. return true;
  1152. else if(pstate->type == syntax_element_startmark)
  1153. {
  1154. int idx = static_cast<const re_brace*>(pstate)->index;
  1155. if(idx > 0)
  1156. match_startmark();
  1157. else
  1158. pstate = pstate->next.p;
  1159. skip_until_paren(idx, false);
  1160. continue;
  1161. }
  1162. pstate = pstate->next.p;
  1163. }
  1164. return true;
  1165. }
  1166. /****************************************************************************
  1167. Unwind and associated procedures follow, these perform what normal stack
  1168. unwinding does in the recursive implementation.
  1169. ****************************************************************************/
  1170. template <class BidiIterator, class Allocator, class traits>
  1171. bool perl_matcher<BidiIterator, Allocator, traits>::unwind(bool have_match)
  1172. {
  1173. static unwind_proc_type const s_unwind_table[19] =
  1174. {
  1175. &perl_matcher<BidiIterator, Allocator, traits>::unwind_end,
  1176. &perl_matcher<BidiIterator, Allocator, traits>::unwind_paren,
  1177. &perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion_stopper,
  1178. &perl_matcher<BidiIterator, Allocator, traits>::unwind_assertion,
  1179. &perl_matcher<BidiIterator, Allocator, traits>::unwind_alt,
  1180. &perl_matcher<BidiIterator, Allocator, traits>::unwind_repeater_counter,
  1181. &perl_matcher<BidiIterator, Allocator, traits>::unwind_extra_block,
  1182. &perl_matcher<BidiIterator, Allocator, traits>::unwind_greedy_single_repeat,
  1183. &perl_matcher<BidiIterator, Allocator, traits>::unwind_slow_dot_repeat,
  1184. &perl_matcher<BidiIterator, Allocator, traits>::unwind_fast_dot_repeat,
  1185. &perl_matcher<BidiIterator, Allocator, traits>::unwind_char_repeat,
  1186. &perl_matcher<BidiIterator, Allocator, traits>::unwind_short_set_repeat,
  1187. &perl_matcher<BidiIterator, Allocator, traits>::unwind_long_set_repeat,
  1188. &perl_matcher<BidiIterator, Allocator, traits>::unwind_non_greedy_repeat,
  1189. &perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion,
  1190. &perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion_pop,
  1191. &perl_matcher<BidiIterator, Allocator, traits>::unwind_commit,
  1192. &perl_matcher<BidiIterator, Allocator, traits>::unwind_then,
  1193. &perl_matcher<BidiIterator, Allocator, traits>::unwind_case,
  1194. };
  1195. m_recursive_result = have_match;
  1196. m_unwound_lookahead = false;
  1197. m_unwound_alt = false;
  1198. unwind_proc_type unwinder;
  1199. bool cont;
  1200. //
  1201. // keep unwinding our stack until we have something to do:
  1202. //
  1203. do
  1204. {
  1205. unwinder = s_unwind_table[m_backup_state->state_id];
  1206. cont = (this->*unwinder)(m_recursive_result);
  1207. }while(cont);
  1208. //
  1209. // return true if we have more states to try:
  1210. //
  1211. return pstate ? true : false;
  1212. }
  1213. template <class BidiIterator, class Allocator, class traits>
  1214. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_end(bool)
  1215. {
  1216. pstate = 0; // nothing left to search
  1217. return false; // end of stack nothing more to search
  1218. }
  1219. template <class BidiIterator, class Allocator, class traits>
  1220. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_case(bool)
  1221. {
  1222. saved_change_case* pmp = static_cast<saved_change_case*>(m_backup_state);
  1223. icase = pmp->icase;
  1224. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1225. m_backup_state = pmp;
  1226. return true;
  1227. }
  1228. template <class BidiIterator, class Allocator, class traits>
  1229. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_paren(bool have_match)
  1230. {
  1231. saved_matched_paren<BidiIterator>* pmp = static_cast<saved_matched_paren<BidiIterator>*>(m_backup_state);
  1232. // restore previous values if no match was found:
  1233. if(!have_match)
  1234. {
  1235. m_presult->set_first(pmp->sub.first, pmp->index, pmp->index == 0);
  1236. m_presult->set_second(pmp->sub.second, pmp->index, pmp->sub.matched, pmp->index == 0);
  1237. }
  1238. #ifdef BOOST_REGEX_MATCH_EXTRA
  1239. //
  1240. // we have a match, push the capture information onto the stack:
  1241. //
  1242. else if(pmp->sub.matched && (match_extra & m_match_flags))
  1243. ((*m_presult)[pmp->index]).get_captures().push_back(pmp->sub);
  1244. #endif
  1245. // unwind stack:
  1246. m_backup_state = pmp+1;
  1247. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp);
  1248. return true; // keep looking
  1249. }
  1250. template <class BidiIterator, class Allocator, class traits>
  1251. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion_stopper(bool)
  1252. {
  1253. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(m_backup_state++);
  1254. pstate = 0; // nothing left to search
  1255. return false; // end of stack nothing more to search
  1256. }
  1257. template <class BidiIterator, class Allocator, class traits>
  1258. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_assertion(bool r)
  1259. {
  1260. saved_assertion<BidiIterator>* pmp = static_cast<saved_assertion<BidiIterator>*>(m_backup_state);
  1261. pstate = pmp->pstate;
  1262. position = pmp->position;
  1263. bool result = (r == pmp->positive);
  1264. m_recursive_result = pmp->positive ? r : !r;
  1265. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1266. m_backup_state = pmp;
  1267. m_unwound_lookahead = true;
  1268. return !result; // return false if the assertion was matched to stop search.
  1269. }
  1270. template <class BidiIterator, class Allocator, class traits>
  1271. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_alt(bool r)
  1272. {
  1273. saved_position<BidiIterator>* pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  1274. if(!r)
  1275. {
  1276. pstate = pmp->pstate;
  1277. position = pmp->position;
  1278. }
  1279. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1280. m_backup_state = pmp;
  1281. m_unwound_alt = !r;
  1282. return r;
  1283. }
  1284. template <class BidiIterator, class Allocator, class traits>
  1285. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_repeater_counter(bool)
  1286. {
  1287. saved_repeater<BidiIterator>* pmp = static_cast<saved_repeater<BidiIterator>*>(m_backup_state);
  1288. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1289. m_backup_state = pmp;
  1290. return true; // keep looking
  1291. }
  1292. template <class BidiIterator, class Allocator, class traits>
  1293. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_extra_block(bool)
  1294. {
  1295. ++used_block_count;
  1296. saved_extra_block* pmp = static_cast<saved_extra_block*>(m_backup_state);
  1297. void* condemmed = m_stack_base;
  1298. m_stack_base = pmp->base;
  1299. m_backup_state = pmp->end;
  1300. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp);
  1301. put_mem_block(condemmed);
  1302. return true; // keep looking
  1303. }
  1304. template <class BidiIterator, class Allocator, class traits>
  1305. inline void perl_matcher<BidiIterator, Allocator, traits>::destroy_single_repeat()
  1306. {
  1307. saved_single_repeat<BidiIterator>* p = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1308. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(p++);
  1309. m_backup_state = p;
  1310. }
  1311. template <class BidiIterator, class Allocator, class traits>
  1312. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_greedy_single_repeat(bool r)
  1313. {
  1314. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1315. // if we have a match, just discard this state:
  1316. if(r)
  1317. {
  1318. destroy_single_repeat();
  1319. return true;
  1320. }
  1321. const re_repeat* rep = pmp->rep;
  1322. std::size_t count = pmp->count;
  1323. BOOST_REGEX_ASSERT(rep->next.p != 0);
  1324. BOOST_REGEX_ASSERT(rep->alt.p != 0);
  1325. count -= rep->min;
  1326. if((m_match_flags & match_partial) && (position == last))
  1327. m_has_partial_match = true;
  1328. BOOST_REGEX_ASSERT(count);
  1329. position = pmp->last_position;
  1330. // backtrack till we can skip out:
  1331. do
  1332. {
  1333. --position;
  1334. --count;
  1335. ++state_count;
  1336. }while(count && !can_start(*position, rep->_map, mask_skip));
  1337. // if we've hit base, destroy this state:
  1338. if(count == 0)
  1339. {
  1340. destroy_single_repeat();
  1341. if(!can_start(*position, rep->_map, mask_skip))
  1342. return true;
  1343. }
  1344. else
  1345. {
  1346. pmp->count = count + rep->min;
  1347. pmp->last_position = position;
  1348. }
  1349. pstate = rep->alt.p;
  1350. return false;
  1351. }
  1352. template <class BidiIterator, class Allocator, class traits>
  1353. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_slow_dot_repeat(bool r)
  1354. {
  1355. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1356. // if we have a match, just discard this state:
  1357. if(r)
  1358. {
  1359. destroy_single_repeat();
  1360. return true;
  1361. }
  1362. const re_repeat* rep = pmp->rep;
  1363. std::size_t count = pmp->count;
  1364. BOOST_REGEX_ASSERT(rep->type == syntax_element_dot_rep);
  1365. BOOST_REGEX_ASSERT(rep->next.p != 0);
  1366. BOOST_REGEX_ASSERT(rep->alt.p != 0);
  1367. BOOST_REGEX_ASSERT(rep->next.p->type == syntax_element_wild);
  1368. BOOST_REGEX_ASSERT(count < rep->max);
  1369. pstate = rep->next.p;
  1370. position = pmp->last_position;
  1371. if(position != last)
  1372. {
  1373. // wind forward until we can skip out of the repeat:
  1374. do
  1375. {
  1376. if(!match_wild())
  1377. {
  1378. // failed repeat match, discard this state and look for another:
  1379. destroy_single_repeat();
  1380. return true;
  1381. }
  1382. ++count;
  1383. ++state_count;
  1384. pstate = rep->next.p;
  1385. }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip));
  1386. }
  1387. if(position == last)
  1388. {
  1389. // can't repeat any more, remove the pushed state:
  1390. destroy_single_repeat();
  1391. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  1392. m_has_partial_match = true;
  1393. if(0 == (rep->can_be_null & mask_skip))
  1394. return true;
  1395. }
  1396. else if(count == rep->max)
  1397. {
  1398. // can't repeat any more, remove the pushed state:
  1399. destroy_single_repeat();
  1400. if(!can_start(*position, rep->_map, mask_skip))
  1401. return true;
  1402. }
  1403. else
  1404. {
  1405. pmp->count = count;
  1406. pmp->last_position = position;
  1407. }
  1408. pstate = rep->alt.p;
  1409. return false;
  1410. }
  1411. template <class BidiIterator, class Allocator, class traits>
  1412. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_fast_dot_repeat(bool r)
  1413. {
  1414. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1415. // if we have a match, just discard this state:
  1416. if(r)
  1417. {
  1418. destroy_single_repeat();
  1419. return true;
  1420. }
  1421. const re_repeat* rep = pmp->rep;
  1422. std::size_t count = pmp->count;
  1423. BOOST_REGEX_ASSERT(count < rep->max);
  1424. position = pmp->last_position;
  1425. if(position != last)
  1426. {
  1427. // wind forward until we can skip out of the repeat:
  1428. do
  1429. {
  1430. ++position;
  1431. ++count;
  1432. ++state_count;
  1433. }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip));
  1434. }
  1435. // remember where we got to if this is a leading repeat:
  1436. if((rep->leading) && (count < rep->max))
  1437. restart = position;
  1438. if(position == last)
  1439. {
  1440. // can't repeat any more, remove the pushed state:
  1441. destroy_single_repeat();
  1442. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  1443. m_has_partial_match = true;
  1444. if(0 == (rep->can_be_null & mask_skip))
  1445. return true;
  1446. }
  1447. else if(count == rep->max)
  1448. {
  1449. // can't repeat any more, remove the pushed state:
  1450. destroy_single_repeat();
  1451. if(!can_start(*position, rep->_map, mask_skip))
  1452. return true;
  1453. }
  1454. else
  1455. {
  1456. pmp->count = count;
  1457. pmp->last_position = position;
  1458. }
  1459. pstate = rep->alt.p;
  1460. return false;
  1461. }
  1462. template <class BidiIterator, class Allocator, class traits>
  1463. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_char_repeat(bool r)
  1464. {
  1465. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1466. // if we have a match, just discard this state:
  1467. if(r)
  1468. {
  1469. destroy_single_repeat();
  1470. return true;
  1471. }
  1472. const re_repeat* rep = pmp->rep;
  1473. std::size_t count = pmp->count;
  1474. pstate = rep->next.p;
  1475. const char_type what = *reinterpret_cast<const char_type*>(static_cast<const re_literal*>(pstate) + 1);
  1476. position = pmp->last_position;
  1477. BOOST_REGEX_ASSERT(rep->type == syntax_element_char_rep);
  1478. BOOST_REGEX_ASSERT(rep->next.p != 0);
  1479. BOOST_REGEX_ASSERT(rep->alt.p != 0);
  1480. BOOST_REGEX_ASSERT(rep->next.p->type == syntax_element_literal);
  1481. BOOST_REGEX_ASSERT(count < rep->max);
  1482. if(position != last)
  1483. {
  1484. // wind forward until we can skip out of the repeat:
  1485. do
  1486. {
  1487. if(traits_inst.translate(*position, icase) != what)
  1488. {
  1489. // failed repeat match, discard this state and look for another:
  1490. destroy_single_repeat();
  1491. return true;
  1492. }
  1493. ++count;
  1494. ++ position;
  1495. ++state_count;
  1496. pstate = rep->next.p;
  1497. }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip));
  1498. }
  1499. // remember where we got to if this is a leading repeat:
  1500. if((rep->leading) && (count < rep->max))
  1501. restart = position;
  1502. if(position == last)
  1503. {
  1504. // can't repeat any more, remove the pushed state:
  1505. destroy_single_repeat();
  1506. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  1507. m_has_partial_match = true;
  1508. if(0 == (rep->can_be_null & mask_skip))
  1509. return true;
  1510. }
  1511. else if(count == rep->max)
  1512. {
  1513. // can't repeat any more, remove the pushed state:
  1514. destroy_single_repeat();
  1515. if(!can_start(*position, rep->_map, mask_skip))
  1516. return true;
  1517. }
  1518. else
  1519. {
  1520. pmp->count = count;
  1521. pmp->last_position = position;
  1522. }
  1523. pstate = rep->alt.p;
  1524. return false;
  1525. }
  1526. template <class BidiIterator, class Allocator, class traits>
  1527. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_short_set_repeat(bool r)
  1528. {
  1529. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1530. // if we have a match, just discard this state:
  1531. if(r)
  1532. {
  1533. destroy_single_repeat();
  1534. return true;
  1535. }
  1536. const re_repeat* rep = pmp->rep;
  1537. std::size_t count = pmp->count;
  1538. pstate = rep->next.p;
  1539. const unsigned char* map = static_cast<const re_set*>(rep->next.p)->_map;
  1540. position = pmp->last_position;
  1541. BOOST_REGEX_ASSERT(rep->type == syntax_element_short_set_rep);
  1542. BOOST_REGEX_ASSERT(rep->next.p != 0);
  1543. BOOST_REGEX_ASSERT(rep->alt.p != 0);
  1544. BOOST_REGEX_ASSERT(rep->next.p->type == syntax_element_set);
  1545. BOOST_REGEX_ASSERT(count < rep->max);
  1546. if(position != last)
  1547. {
  1548. // wind forward until we can skip out of the repeat:
  1549. do
  1550. {
  1551. if(!map[static_cast<unsigned char>(traits_inst.translate(*position, icase))])
  1552. {
  1553. // failed repeat match, discard this state and look for another:
  1554. destroy_single_repeat();
  1555. return true;
  1556. }
  1557. ++count;
  1558. ++ position;
  1559. ++state_count;
  1560. pstate = rep->next.p;
  1561. }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip));
  1562. }
  1563. // remember where we got to if this is a leading repeat:
  1564. if((rep->leading) && (count < rep->max))
  1565. restart = position;
  1566. if(position == last)
  1567. {
  1568. // can't repeat any more, remove the pushed state:
  1569. destroy_single_repeat();
  1570. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  1571. m_has_partial_match = true;
  1572. if(0 == (rep->can_be_null & mask_skip))
  1573. return true;
  1574. }
  1575. else if(count == rep->max)
  1576. {
  1577. // can't repeat any more, remove the pushed state:
  1578. destroy_single_repeat();
  1579. if(!can_start(*position, rep->_map, mask_skip))
  1580. return true;
  1581. }
  1582. else
  1583. {
  1584. pmp->count = count;
  1585. pmp->last_position = position;
  1586. }
  1587. pstate = rep->alt.p;
  1588. return false;
  1589. }
  1590. template <class BidiIterator, class Allocator, class traits>
  1591. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_long_set_repeat(bool r)
  1592. {
  1593. typedef typename traits::char_class_type m_type;
  1594. saved_single_repeat<BidiIterator>* pmp = static_cast<saved_single_repeat<BidiIterator>*>(m_backup_state);
  1595. // if we have a match, just discard this state:
  1596. if(r)
  1597. {
  1598. destroy_single_repeat();
  1599. return true;
  1600. }
  1601. const re_repeat* rep = pmp->rep;
  1602. std::size_t count = pmp->count;
  1603. pstate = rep->next.p;
  1604. const re_set_long<m_type>* set = static_cast<const re_set_long<m_type>*>(pstate);
  1605. position = pmp->last_position;
  1606. BOOST_REGEX_ASSERT(rep->type == syntax_element_long_set_rep);
  1607. BOOST_REGEX_ASSERT(rep->next.p != 0);
  1608. BOOST_REGEX_ASSERT(rep->alt.p != 0);
  1609. BOOST_REGEX_ASSERT(rep->next.p->type == syntax_element_long_set);
  1610. BOOST_REGEX_ASSERT(count < rep->max);
  1611. if(position != last)
  1612. {
  1613. // wind forward until we can skip out of the repeat:
  1614. do
  1615. {
  1616. if(position == re_is_set_member(position, last, set, re.get_data(), icase))
  1617. {
  1618. // failed repeat match, discard this state and look for another:
  1619. destroy_single_repeat();
  1620. return true;
  1621. }
  1622. ++position;
  1623. ++count;
  1624. ++state_count;
  1625. pstate = rep->next.p;
  1626. }while((count < rep->max) && (position != last) && !can_start(*position, rep->_map, mask_skip));
  1627. }
  1628. // remember where we got to if this is a leading repeat:
  1629. if((rep->leading) && (count < rep->max))
  1630. restart = position;
  1631. if(position == last)
  1632. {
  1633. // can't repeat any more, remove the pushed state:
  1634. destroy_single_repeat();
  1635. if((m_match_flags & match_partial) && (position == last) && (position != search_base))
  1636. m_has_partial_match = true;
  1637. if(0 == (rep->can_be_null & mask_skip))
  1638. return true;
  1639. }
  1640. else if(count == rep->max)
  1641. {
  1642. // can't repeat any more, remove the pushed state:
  1643. destroy_single_repeat();
  1644. if(!can_start(*position, rep->_map, mask_skip))
  1645. return true;
  1646. }
  1647. else
  1648. {
  1649. pmp->count = count;
  1650. pmp->last_position = position;
  1651. }
  1652. pstate = rep->alt.p;
  1653. return false;
  1654. }
  1655. template <class BidiIterator, class Allocator, class traits>
  1656. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_non_greedy_repeat(bool r)
  1657. {
  1658. saved_position<BidiIterator>* pmp = static_cast<saved_position<BidiIterator>*>(m_backup_state);
  1659. if(!r)
  1660. {
  1661. position = pmp->position;
  1662. pstate = pmp->pstate;
  1663. ++(*next_count);
  1664. }
  1665. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1666. m_backup_state = pmp;
  1667. return r;
  1668. }
  1669. template <class BidiIterator, class Allocator, class traits>
  1670. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion(bool r)
  1671. {
  1672. // We are backtracking back inside a recursion, need to push the info
  1673. // back onto the recursion stack, and do so unconditionally, otherwise
  1674. // we can get mismatched pushes and pops...
  1675. saved_recursion<results_type>* pmp = static_cast<saved_recursion<results_type>*>(m_backup_state);
  1676. if (!r)
  1677. {
  1678. recursion_stack.push_back(recursion_info<results_type>());
  1679. recursion_stack.back().idx = pmp->recursion_id;
  1680. recursion_stack.back().preturn_address = pmp->preturn_address;
  1681. recursion_stack.back().results = pmp->prior_results;
  1682. recursion_stack.back().location_of_start = position;
  1683. *m_presult = pmp->internal_results;
  1684. }
  1685. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1686. m_backup_state = pmp;
  1687. return true;
  1688. }
  1689. template <class BidiIterator, class Allocator, class traits>
  1690. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_recursion_pop(bool r)
  1691. {
  1692. // Backtracking out of a recursion, we must pop state off the recursion
  1693. // stack unconditionally to ensure matched pushes and pops:
  1694. saved_state* pmp = static_cast<saved_state*>(m_backup_state);
  1695. if (!r && !recursion_stack.empty())
  1696. {
  1697. *m_presult = recursion_stack.back().results;
  1698. position = recursion_stack.back().location_of_start;
  1699. recursion_stack.pop_back();
  1700. }
  1701. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(pmp++);
  1702. m_backup_state = pmp;
  1703. return true;
  1704. }
  1705. template <class BidiIterator, class Allocator, class traits>
  1706. void perl_matcher<BidiIterator, Allocator, traits>::push_recursion_pop()
  1707. {
  1708. saved_state* pmp = static_cast<saved_state*>(m_backup_state);
  1709. --pmp;
  1710. if(pmp < m_stack_base)
  1711. {
  1712. extend_stack();
  1713. pmp = static_cast<saved_state*>(m_backup_state);
  1714. --pmp;
  1715. }
  1716. (void) new (pmp)saved_state(15);
  1717. m_backup_state = pmp;
  1718. }
  1719. template <class BidiIterator, class Allocator, class traits>
  1720. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_commit(bool b)
  1721. {
  1722. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(m_backup_state++);
  1723. while(unwind(b) && !m_unwound_lookahead){}
  1724. if(m_unwound_lookahead && pstate)
  1725. {
  1726. //
  1727. // If we stop because we just unwound an assertion, put the
  1728. // commit state back on the stack again:
  1729. //
  1730. m_unwound_lookahead = false;
  1731. saved_state* pmp = m_backup_state;
  1732. --pmp;
  1733. if(pmp < m_stack_base)
  1734. {
  1735. extend_stack();
  1736. pmp = m_backup_state;
  1737. --pmp;
  1738. }
  1739. (void) new (pmp)saved_state(16);
  1740. m_backup_state = pmp;
  1741. }
  1742. // This prevents us from stopping when we exit from an independent sub-expression:
  1743. m_independent = false;
  1744. return false;
  1745. }
  1746. template <class BidiIterator, class Allocator, class traits>
  1747. bool perl_matcher<BidiIterator, Allocator, traits>::unwind_then(bool b)
  1748. {
  1749. // Unwind everything till we hit an alternative:
  1750. boost::BOOST_REGEX_DETAIL_NS::inplace_destroy(m_backup_state++);
  1751. bool result = false;
  1752. result = unwind(b);
  1753. while(result && !m_unwound_alt)
  1754. {
  1755. result = unwind(b);
  1756. }
  1757. // We're now pointing at the next alternative, need one more backtrack
  1758. // since *all* the other alternatives must fail once we've reached a THEN clause:
  1759. if(result && m_unwound_alt)
  1760. unwind(b);
  1761. return false;
  1762. }
  1763. } // namespace BOOST_REGEX_DETAIL_NS
  1764. } // namespace boost
  1765. #ifdef BOOST_REGEX_MSVC
  1766. # pragma warning(pop)
  1767. #endif
  1768. #endif