group_weak_end is no longer used

This commit is contained in:
Alex Coyte 2016-07-07 11:36:05 +10:00 committed by Matthew Barr
parent 22b451b59b
commit 3a1429a621
5 changed files with 0 additions and 6 deletions

View File

@ -5191,8 +5191,6 @@ aligned_unique_ptr<RoseEngine> RoseBuildImpl::buildFinalEngine(u32 minWidth) {
engine->eagerIterOffset = eagerIterOffset;
engine->handledKeyCount = bc.handledKeys.size();
engine->group_weak_end = group_weak_end;
engine->rolesWithStateCount = bc.numStates;
engine->leftOffset = leftOffset;

View File

@ -547,7 +547,6 @@ public:
std::map<size_t, std::vector<std::unique_ptr<raw_dfa>>> anchored_nfas;
std::map<simple_anchored_info, std::set<u32>> anchored_simple;
std::map<u32, std::set<u32> > group_to_literal;
u32 group_weak_end;
u32 group_end;
u32 anchored_base_id;

View File

@ -76,7 +76,6 @@ RoseBuildImpl::RoseBuildImpl(ReportManager &rm_in, SomSlotManager &ssm_in,
vertexIndex(0),
delay_base_id(MO_INVALID_IDX),
hasSom(false),
group_weak_end(0),
group_end(0),
anchored_base_id(MO_INVALID_IDX),
ematcher_region_size(0),

View File

@ -1076,7 +1076,6 @@ void roseDumpStructRaw(const RoseEngine *t, FILE *f) {
DUMP_U32(t, ematcherRegionSize);
DUMP_U32(t, somRevCount);
DUMP_U32(t, somRevOffsetOffset);
DUMP_U32(t, group_weak_end);
DUMP_U32(t, floatingStreamState);
fprintf(f, "}\n");
fprintf(f, "sizeof(RoseEngine) = %zu\n", sizeof(RoseEngine));

View File

@ -429,7 +429,6 @@ struct RoseEngine {
u32 ematcherRegionSize; /* max region size to pass to ematcher */
u32 somRevCount; /**< number of som reverse nfas */
u32 somRevOffsetOffset; /**< offset to array of offsets to som rev nfas */
u32 group_weak_end; /* end of weak groups, debugging only */
u32 floatingStreamState; // size in bytes
struct scatter_full_plan state_init;