A trace-based micro-architectural simulator to support enclave simulations. It is build on top of an existing simulator ChampSim.
- How to build it?
a) Default build
$ ./build.sh ${configuration} ${encryption_operation} ${num_core}
$ ./build.sh enclave off 8
b) Customized build
$ ./build_enclavesim.sh ${BRANCH} ${L1I_PREFETCHER} ${L1D_PREFETCHER} ${L2C_PREFETCHER} ${LLC_PREFETCHER} ${LLC_REPLACEMENT} ${CONFIG} ${ENCRYPT_OPER} $NUM_CORE}
$ ./build_enclavesim.sh bimodal no no no no lru enclave on 8
Usage: ./run1core.sh [BINARY] [N_WARM] [N_SIM] [TRACE_INFO]
${BINARY}: EnclaveSim binary compiled by "build.sh" (bimodal-no-no-no-no-lru-enclave-on-1core)
${N_WARM}: number of instructions for warmup (10 million)
${N_SIM}: number of instructinos for detailed simulation (50 million)
${TRACE_INFO}:
i) For Baseline config:
${TRACE_INFO}: {trace name} {605.mcf_s-994B.champsimtrace.xz}
ii) For EnclaveSim config with Enclave aware trace:
${TRACE_INFO}: {trace name, trace type} {example1.champsimtrace.xz yes}
iii) For EnclaveSim config with Non-enclave aware trace:
${TRACE_INFO}: {trace name, trace type, number of encalve, start-point, end-point} {605.mcf_s-994B.champsimtrace.xz no 1 20 35}
*here start-point and end-point is instruction number in million.
Variant-1: $ ./run1core.sh bimodal-no-no-no-no-lru-baseline-off-1core 10 50 605.mcf_s-994B.champsimtrace.xz
Variant-2: $ ./run1core.sh bimodal-no-no-no-no-lru-enclave-on-1core 10 50 example1.champsimtrace.xz yes
Variant-3: $ ./run1core.sh bimodal-no-no-no-no-lru-enclave-on-1core 10 50 605.mcf_s-994B.champsimtrace.xz no 1 10 35
$ ./run1core_baseline_cal.sh
$ ./run8core_baseline_cal.sh
$ ./run8core_enclave_cal.sh
* Please write your own script to run any customized configuration. You can refer run8core_enclave_cal.sh for the same.
-
Installation:
- To set path variable for pin-tool
# Add below line at the end of .bashrc file export PATH=$PATH:path/to/pin-3.13-98189-g60a6ef199-gcc-linux -
To build tracer
$ cd path/to/EnclaveSim/Tracer
$ ./make_tracer.sh
- To generate trace of an application
$ pin -t ${share_object_tracerfile_path} -- ${application_path} > /dev/null
$ pin -t /home/dixit/EnclaveSim/tracer/obj-intel64/champsim_tracer.so -- ../example/example1 >/dev/null