summaryrefslogtreecommitdiff
path: root/frontend/bundle.h
blob: cc6f441eb4517ae8efe85b4ed184084d6a1d0ac4 (plain) (blame)
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;
    };
}