Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tracing for total instruction count #206

Open
wants to merge 5 commits into
base: qemu-experimental-tracing
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions target/riscv/helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ DEF_HELPER_3(lr_c_cap, void, env, i32, i32)
DEF_HELPER_3(sc_c_modedep, tl, env, i32, i32)
DEF_HELPER_3(sc_c_ddc, tl, env, i32, i32)
DEF_HELPER_3(sc_c_cap, tl, env, i32, i32)
/* experimental instruction helpers*/
DEF_HELPER_2(ctestdereferenceable, tl, env, i32)
#endif

#ifdef CONFIG_TCG_LOG_INSTR
Expand Down
6 changes: 4 additions & 2 deletions target/riscv/insn32-cheri.decode
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ ccopytype 0011110 ..... ..... 000 ..... 1011011 @r
ccseal 0011111 ..... ..... 000 ..... 1011011 @r
ctestsubset 0100000 ..... ..... 000 ..... 1011011 @r
cseqx 0100001 ..... ..... 000 ..... 1011011 @r
candaddr 0100010 ..... ..... 000 ..... 1011011 @r

# 1111011 unused
# 1111100 Used for Stores (see below)
# 1111101 Used for Loads (see below)
Expand Down Expand Up @@ -85,9 +87,9 @@ cgetaddr 1111111 01111 ..... 000 ..... 1011011 @r2
# fpclear 1111111 10000 ..... 000 ..... 1011011 @r2
csealentry 1111111 10001 ..... 000 ..... 1011011 @r2
cloadtags 1111111 10010 ..... 000 ..... 1011011 @r2
ctestdereferenceable 1111111 10011 ..... 000 ..... 1011011 @r2
jalr_pcc 1111111 10100 ..... 000 ..... 1011011 @r2


candpermuserdata 1111111 10101 ..... 000 ..... 1011011 @r2

# There is an existing @sfence_vma format with rs1+rs2 fields, but let's define a new name
@r_2source ....... ..... ..... ... ..... ....... %rs2 %rs1
Expand Down
39 changes: 39 additions & 0 deletions target/riscv/insn_trans/trans_cheri.c.inc
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,9 @@ TRANSLATE_INT_CAP(cgetsealed)

TRANSLATE_INT_CAP(cloadtags)

// experimental ctestdereferenceable
TRANSLATE_INT_CAP(ctestdereferenceable)

// Two operand (int int)
static inline bool trans_crrl(DisasContext *ctx, arg_crrl *a)
{
Expand All @@ -181,6 +184,39 @@ TRANSLATE_CAP_CAP(ccleartag)
TRANSLATE_CAP_CAP(cmove)
TRANSLATE_CAP_CAP(csealentry)

// experimental candpermuserdata

/* User-defined permission bits. */
#define CAP_PERM_SW0 (1 << 15) /* 0x00008000 */
#define CAP_PERM_SW1 (1 << 16) /* 0x00010000 */
#define CAP_PERM_SW2 (1 << 17) /* 0x00020000 */
#define CAP_PERM_SW3 (1 << 18) /* 0x00040000 */
#define CAP_PERM_SW_VMEM CAP_PERM_SW1

#define CAP_PERMS_SWALL \
(CAP_PERM_SW0 | CAP_PERM_SW1 | CAP_PERM_SW2 | CAP_PERM_SW3)

#define CAP_PERMS_USERSPACE \
(CAP_PERM_GLOBAL | CAP_PERM_LOAD | CAP_PERM_LOAD_CAP | CAP_PERM_CINVOKE | \
(CAP_PERMS_SWALL & ~CAP_PERM_SW_VMEM))

#define CAP_PERMS_USERSPACE_DATA \
(CAP_PERMS_USERSPACE | CAP_PERM_STORE | CAP_PERM_STORE_CAP | \
CAP_PERM_STORE_LOCAL)

static inline bool trans_candpermuserdata(DisasContext *ctx,
arg_candpermuserdata *a)
{
TCGv_i32 source_regnum = tcg_const_i32(a->rs1);
TCGv_i32 dest_regnum = tcg_const_i32(a->rd);
TCGv perms = tcg_const_tl(CAP_PERMS_USERSPACE_DATA & ~CAP_PERM_SW_VMEM);
gen_helper_candperm(cpu_env, dest_regnum, source_regnum, perms);
tcg_temp_free_i32(dest_regnum);
tcg_temp_free_i32(source_regnum);
tcg_temp_free(perms);
return true;
}

// Three operand (cap cap cap)
TRANSLATE_CAP_CAP_CAP(cbuildcap)
TRANSLATE_CAP_CAP_CAP(ccopytype)
Expand Down Expand Up @@ -215,6 +251,9 @@ TRANSLATE_CAP_CAP_INT(csetboundsexact)
TRANSLATE_CAP_CAP_INT(csetflags)
TRANSLATE_CAP_CAP_INT(csetoffset)

// Add experimental CAndAddr instruction
TRANSLATE_CAP_CAP_INT(candaddr)

// Three operand (int cap cap)
TRANSLATE_INT_CAP_CAP(csub)
TRANSLATE_INT_CAP_CAP(ctestsubset)
Expand Down
8 changes: 8 additions & 0 deletions target/riscv/op_helper_cheri.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,3 +453,11 @@ target_ulong HELPER(sc_c_cap)(CPUArchState *env, uint32_t addr_reg, uint32_t val
{
return sc_c_impl(env, addr_reg, val_reg, /*offset=*/0, GETPC());
}

/* Helpers for experimental instructions. */
target_ulong HELPER(ctestdereferenceable)(CPUArchState *env, uint32_t addr_reg)
{
const cap_register_t *cbp = get_readonly_capreg(env, addr_reg);

return cbp->cr_tag && cap_is_unsealed(cbp) && cap_get_offset(cbp) == 0;
}
8 changes: 0 additions & 8 deletions trace_extra/guest_context_tracker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,6 @@ std::unordered_map<qemu_ctx_id, std::shared_ptr<qemu_context_state>,
tuple_hasher<qemu_ctx_id>>
track_state_map;

/*
* Constant mapping of QEMUDebugCounter IDs to counter track names
*/
const std::array<const std::string, QEMU_LOG_INSTR_DBG_MAX> debug_counter_names{
"tb_icount",
"tb_icount_tracing",
};

/* Helper to generate unique IDs for dynamic tracks */
unsigned long gen_track_uuid()
{
Expand Down
10 changes: 0 additions & 10 deletions trace_extra/guest_context_tracker.hh
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ unsigned long gen_track_uuid();
perfetto::protos::pbzero::QEMULogEntryModeSwitch
qemu_cpu_mode_to_trace(qemu_log_instr_cpu_mode_t mode);

extern const std::array<const std::string, QEMU_LOG_INSTR_DBG_MAX>
debug_counter_names;

/*
* Custom track representing a QEMU guest context.
*/
Expand Down Expand Up @@ -216,13 +213,6 @@ struct qemu_fallback_state : public qemu_tracker_state {
perfetto::TrackEvent::EraseTrackDescriptor(track);
}

perfetto::CounterTrack
get_debug_counter_track(QEMUDebugCounter counter_index)
{
return perfetto::CounterTrack(
debug_counter_names[counter_index].c_str(), track);
}

perfetto::Track *get_track()
{
return &track;
Expand Down
2 changes: 2 additions & 0 deletions trace_extra/memory_interceptor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ DynamorioTraceInterceptor::ThreadLocalState::ThreadLocalState(
}

io::filtering_ostream DynamorioTraceInterceptor::mem_logfile;
uint64_t DynamorioTraceInterceptor::instr_count = 0;

void DynamorioTraceInterceptor::OnTracePacket(InterceptorContext context)
{
Expand All @@ -57,6 +58,7 @@ void DynamorioTraceInterceptor::OnTracePacket(InterceptorContext context)
perfetto::protos::pbzero::Opcode::Decoder opcode(
instr.opcode_obj());
if (opcode.has_size()) {
++instr_count;
trace_entry_t entry;
entry.type = TRACE_TYPE_INSTR;
entry.addr = reinterpret_cast<addr_t>(instr.pc());
Expand Down
1 change: 1 addition & 0 deletions trace_extra/memory_interceptor.hh
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class DynamorioTraceInterceptor

public:
static io::filtering_ostream mem_logfile;
static uint64_t instr_count;
~DynamorioTraceInterceptor() override = default;

struct ThreadLocalState
Expand Down
21 changes: 18 additions & 3 deletions trace_extra/trace_perfetto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ std::unique_ptr<perfetto::TracingSession> session;
fs::path logfile("qemu_trace.pb");

/* perfetto interceptor trace file */
string mem_logfile_name = "mem_access.trace.gz";
string mem_logfile = "mem_trace.gz";

/* instrcution count file */
string instr_count_file;

/* enable perfetto interceptor */
bool enable_interceptor = false;
Expand Down Expand Up @@ -134,9 +137,15 @@ bool perfetto_start_tracing(void)
perfetto::TrackEvent::Register();

if (enable_interceptor) {
// hardcode instr_path for now
fs::path mem_logfile_path(mem_logfile);
instr_count_file =
mem_logfile_path.parent_path().parent_path().string() +
"/instr_count.txt";

DynamorioTraceInterceptor::mem_logfile.push(io::gzip_compressor());
DynamorioTraceInterceptor::mem_logfile.push(
io::file_descriptor_sink(mem_logfile_name));
io::file_descriptor_sink(mem_logfile));

// drcachesim needs a header in the file, so we create it here
trace_entry_t header{ .type = TRACE_TYPE_HEADER,
Expand Down Expand Up @@ -229,6 +238,12 @@ void perfetto_tracing_stop(void)
DynamorioTraceInterceptor::mem_logfile.write((char *)&footer,
sizeof(footer));
io::close(DynamorioTraceInterceptor::mem_logfile);

// store the number of instructions executed
ofstream outfile;
outfile.open(instr_count_file);
outfile << DynamorioTraceInterceptor::instr_count << std::endl;
outfile.close();
}
}

Expand Down Expand Up @@ -513,7 +528,7 @@ qemu_log_instr_perfetto_conf_categories(const char *category_str)

extern "C" void qemu_log_instr_perfetto_interceptor_logfile(const char *name)
{
mem_logfile_name = name;
mem_logfile = name;
}

extern "C" void qemu_log_instr_perfetto_enable_interceptor()
Expand Down