mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-11-19 10:34:25 +03:00
rose: Extend program to handle literals, iterators
- cleanups - add sparse iter instructions - merge "root" and "sparse iter" programs together - move program execution to new file program_runtime.h - simplify EOD execution
This commit is contained in:
committed by
Matthew Barr
parent
8069e99bee
commit
b2ebdac642
@@ -274,6 +274,13 @@ void allocateFinalLiteralId(RoseBuildImpl &tbi) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// The special EOD event literal has its own program and does not need
|
||||
// a real literal ID.
|
||||
if (i == tbi.eod_event_literal_id) {
|
||||
assert(tbi.eod_event_literal_id != MO_INVALID_IDX);
|
||||
continue;
|
||||
}
|
||||
|
||||
const rose_literal_info &info = tbi.literal_info[i];
|
||||
if (info.requires_benefits) {
|
||||
assert(!tbi.isDelayed(i));
|
||||
|
||||
Reference in New Issue
Block a user