@@ -32,6 +32,7 @@ constexpr uint64_t hook_event_sentinel = detail::word(0xAA);
32
32
constexpr uint64_t hook_result_sentinel = detail::word(0xBB );
33
33
constexpr uint64_t rule_event_sentinel = detail::word(0x22 );
34
34
constexpr uint64_t side_condition_event_sentinel = detail::word(0xEE );
35
+ constexpr uint64_t side_condition_end_sentinel = detail::word(0x33 );
35
36
36
37
class LLVMStepEvent : public std ::enable_shared_from_this<LLVMStepEvent> {
37
38
public:
@@ -94,6 +95,34 @@ class LLVMSideConditionEvent : public LLVMRewriteEvent {
94
95
virtual void print (std::ostream &Out, unsigned indent = 0u ) const override ;
95
96
};
96
97
98
+ class LLVMSideConditionEndEvent : public LLVMStepEvent {
99
+ private:
100
+ uint64_t ruleOrdinal;
101
+ sptr<KOREPattern> korePattern;
102
+ uint64_t patternLength;
103
+
104
+ LLVMSideConditionEndEvent (uint64_t _ruleOrdinal)
105
+ : ruleOrdinal(_ruleOrdinal)
106
+ , korePattern(nullptr )
107
+ , patternLength(0u ) { }
108
+
109
+ public:
110
+ static sptr<LLVMSideConditionEndEvent> Create (uint64_t _ruleOrdinal) {
111
+ return sptr<LLVMSideConditionEndEvent>(
112
+ new LLVMSideConditionEndEvent (_ruleOrdinal));
113
+ }
114
+
115
+ uint64_t getRuleOrdinal () const { return ruleOrdinal; }
116
+ sptr<KOREPattern> getKOREPattern () const { return korePattern; }
117
+ uint64_t getPatternLength () const { return patternLength; }
118
+ void setKOREPattern (sptr<KOREPattern> _korePattern, uint64_t _patternLength) {
119
+ korePattern = _korePattern;
120
+ patternLength = _patternLength;
121
+ }
122
+
123
+ virtual void print (std::ostream &Out, unsigned indent = 0u ) const override ;
124
+ };
125
+
97
126
class LLVMEvent ;
98
127
99
128
class LLVMFunctionEvent : public LLVMStepEvent {
@@ -210,7 +239,7 @@ class LLVMRewriteTrace {
210
239
211
240
class ProofTraceParser {
212
241
public:
213
- static constexpr uint32_t expectedVersion = 4u ;
242
+ static constexpr uint32_t expectedVersion = 5u ;
214
243
215
244
private:
216
245
bool verbose;
@@ -499,6 +528,33 @@ class ProofTraceParser {
499
528
return event;
500
529
}
501
530
531
+ template <typename It>
532
+ sptr<LLVMSideConditionEndEvent> parse_side_condition_end (It &ptr, It end) {
533
+ if (!check_word (ptr, end, side_condition_end_sentinel)) {
534
+ return nullptr ;
535
+ }
536
+
537
+ uint64_t ordinal;
538
+ if (!parse_ordinal (ptr, end, ordinal)) {
539
+ return nullptr ;
540
+ }
541
+
542
+ auto event = LLVMSideConditionEndEvent::Create (ordinal);
543
+
544
+ uint64_t pattern_len;
545
+ auto kore_term = parse_kore_term (ptr, end, pattern_len);
546
+ if (!kore_term) {
547
+ return nullptr ;
548
+ }
549
+ event->setKOREPattern (kore_term, pattern_len);
550
+
551
+ if (!check_word (ptr, end, kore_end_sentinel)) {
552
+ return nullptr ;
553
+ }
554
+
555
+ return event;
556
+ }
557
+
502
558
template <typename It>
503
559
bool parse_argument (It &ptr, It end, LLVMEvent &event) {
504
560
if (std::distance (ptr, end) >= 1u && detail::peek (ptr) == ' \x7F ' ) {
@@ -565,6 +621,8 @@ class ProofTraceParser {
565
621
566
622
case side_condition_event_sentinel: return parse_side_condition (ptr, end);
567
623
624
+ case side_condition_end_sentinel: return parse_side_condition_end (ptr, end);
625
+
568
626
default : return nullptr ;
569
627
}
570
628
}
0 commit comments