1 2 3 4 5 6 7 8 9 10 11 12 13 14
#pragma once #include "infra/pipetrace.h" #include "memory/line.h" namespace frontend { struct bundle { infra::transaction transaction; unsigned int generation; std::uint64_t line_address; std::uint64_t next_line_address; memory::line data; }; }