header tweaks to provide gen-C++ script optimization with more flexibility

This commit is contained in:
Vern Paxson 2024-08-13 14:37:06 -07:00
parent 5a3b519fb4
commit 77c34787f3
4 changed files with 17 additions and 10 deletions

View file

@ -291,6 +291,9 @@ protected:
*/
virtual void SetCaptures(Frame* f);
// Captures when using ZVal block instead of a Frame.
std::unique_ptr<std::vector<ZVal>> captures_vec;
private:
size_t frame_size = 0;
@ -304,9 +307,6 @@ private:
OffsetMap* captures_offset_mapping = nullptr;
// Captures when using ZVal block instead of a Frame.
std::unique_ptr<std::vector<ZVal>> captures_vec;
// The most recently added/updated body ...
StmtPtr current_body;