Skip to content

Instantly share code, notes, and snippets.

@lukego
Last active August 29, 2015 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukego/b07330eda1253d62a006 to your computer and use it in GitHub Desktop.
Save lukego/b07330eda1253d62a006 to your computer and use it in GitHub Desktop.
Intel Performance Monitoring Counters
This is a quick prototype for generating a Lua module that describes Intel's Performance Monitoring Counters.
First download the raw data:
wget -r --no-parent https://download.01.org/perfmon/
Then run the script (attached) to get the output (attached).
Looks like this compiles with "luajit -b" to 211KB of object code. Shrinks to 16KB with gzip.
#!/usr/bin/env bash
echo "-- Table of all information for all CPUs:"
echo "pmu ="
echo " {"
tail -n +2 mapfile.csv | \
while IFS=, read cpu version path type; do
echo " {\"$cpu\", \"$version\", \"$type\","
echo " {"
tsv=$(echo $path | sed -e 's;^/;;' -e 's;json$;tsv;')
awk -F '\t' < $tsv \
'$1 ~ /^0x/ { printf(" [\"%s\"] = 0x%04x,\n", tolower($3), $1 + $2); }'
echo " },"
echo " },"
done
echo "}"
exit
-- Table of all information for all CPUs:
pmu =
{
{"GenuineIntel-6-2E", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_all_ref.any"] = 0x0044,
["l1d_all_ref.cacheable"] = 0x0045,
["l1d_cache_ld.e_state"] = 0x0044,
["l1d_cache_ld.i_state"] = 0x0041,
["l1d_cache_ld.m_state"] = 0x0048,
["l1d_cache_ld.mesi"] = 0x004f,
["l1d_cache_ld.s_state"] = 0x0042,
["l1d_cache_lock.e_state"] = 0x0046,
["l1d_cache_lock.hit"] = 0x0043,
["l1d_cache_lock.m_state"] = 0x004a,
["l1d_cache_lock.s_state"] = 0x0044,
["l1d_cache_lock_fb_hit"] = 0x0054,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_cache_st.e_state"] = 0x0045,
["l1d_cache_st.m_state"] = 0x0049,
["l1d_cache_st.s_state"] = 0x0043,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-1E", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_all_ref.any"] = 0x0044,
["l1d_all_ref.cacheable"] = 0x0045,
["l1d_cache_ld.e_state"] = 0x0044,
["l1d_cache_ld.i_state"] = 0x0041,
["l1d_cache_ld.m_state"] = 0x0048,
["l1d_cache_ld.mesi"] = 0x004f,
["l1d_cache_ld.s_state"] = 0x0042,
["l1d_cache_lock.e_state"] = 0x0046,
["l1d_cache_lock.hit"] = 0x0043,
["l1d_cache_lock.m_state"] = 0x004a,
["l1d_cache_lock.s_state"] = 0x0044,
["l1d_cache_lock_fb_hit"] = 0x0054,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_cache_st.e_state"] = 0x0045,
["l1d_cache_st.m_state"] = 0x0049,
["l1d_cache_st.s_state"] = 0x0043,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["mem_uncore_retired.local_dram"] = 0x002f,
["mem_uncore_retired.other_core_l2_hitm"] = 0x0011,
["mem_uncore_retired.remote_cache_local_home_hit"] = 0x0017,
["mem_uncore_retired.remote_dram"] = 0x001f,
["mem_uncore_retired.uncacheable"] = 0x008f,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-1F", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_all_ref.any"] = 0x0044,
["l1d_all_ref.cacheable"] = 0x0045,
["l1d_cache_ld.e_state"] = 0x0044,
["l1d_cache_ld.i_state"] = 0x0041,
["l1d_cache_ld.m_state"] = 0x0048,
["l1d_cache_ld.mesi"] = 0x004f,
["l1d_cache_ld.s_state"] = 0x0042,
["l1d_cache_lock.e_state"] = 0x0046,
["l1d_cache_lock.hit"] = 0x0043,
["l1d_cache_lock.m_state"] = 0x004a,
["l1d_cache_lock.s_state"] = 0x0044,
["l1d_cache_lock_fb_hit"] = 0x0054,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_cache_st.e_state"] = 0x0045,
["l1d_cache_st.m_state"] = 0x0049,
["l1d_cache_st.s_state"] = 0x0043,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["mem_uncore_retired.local_dram"] = 0x002f,
["mem_uncore_retired.other_core_l2_hitm"] = 0x0011,
["mem_uncore_retired.remote_cache_local_home_hit"] = 0x0017,
["mem_uncore_retired.remote_dram"] = 0x001f,
["mem_uncore_retired.uncacheable"] = 0x008f,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-1A", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_all_ref.any"] = 0x0044,
["l1d_all_ref.cacheable"] = 0x0045,
["l1d_cache_ld.e_state"] = 0x0044,
["l1d_cache_ld.i_state"] = 0x0041,
["l1d_cache_ld.m_state"] = 0x0048,
["l1d_cache_ld.mesi"] = 0x004f,
["l1d_cache_ld.s_state"] = 0x0042,
["l1d_cache_lock.e_state"] = 0x0046,
["l1d_cache_lock.hit"] = 0x0043,
["l1d_cache_lock.m_state"] = 0x004a,
["l1d_cache_lock.s_state"] = 0x0044,
["l1d_cache_lock_fb_hit"] = 0x0054,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_cache_st.e_state"] = 0x0045,
["l1d_cache_st.m_state"] = 0x0049,
["l1d_cache_st.s_state"] = 0x0043,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["mem_uncore_retired.local_dram"] = 0x002f,
["mem_uncore_retired.other_core_l2_hitm"] = 0x0011,
["mem_uncore_retired.remote_cache_local_home_hit"] = 0x0017,
["mem_uncore_retired.remote_dram"] = 0x001f,
["mem_uncore_retired.uncacheable"] = 0x008f,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-2F", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.all_branches"] = 0x00c9,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.large_walk_completed"] = 0x0088,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_load_misses.walk_cycles"] = 0x000c,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.large_walk_completed"] = 0x00c9,
["dtlb_misses.pde_miss"] = 0x0069,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["dtlb_misses.walk_cycles"] = 0x004d,
["ept.walk_cycles"] = 0x005f,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.large_walk_completed"] = 0x0105,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_cycles"] = 0x0089,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_block.overlap_store"] = 0x0005,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["mem_uncore_retired.local_hitm"] = 0x0011,
["mem_uncore_retired.local_dram_and_remote_cache_hit"] = 0x0017,
["mem_uncore_retired.remote_dram"] = 0x002f,
["mem_uncore_retired.uncacheable"] = 0x008f,
["mem_uncore_retired.remote_hitm"] = 0x0013,
["misalign_mem_ref.store"] = 0x0007,
["offcore_requests.any"] = 0x0130,
["offcore_requests.any.read"] = 0x00b8,
["offcore_requests.any.rfo"] = 0x00c0,
["offcore_requests.demand.read_code"] = 0x00b2,
["offcore_requests.demand.read_data"] = 0x00b1,
["offcore_requests.demand.rfo"] = 0x00b4,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_outstanding.any.read"] = 0x0068,
["offcore_requests_outstanding.any.read_not_empty"] = 0x0068,
["offcore_requests_outstanding.demand.read_code"] = 0x0062,
["offcore_requests_outstanding.demand.read_code_not_empty"] = 0x0062,
["offcore_requests_outstanding.demand.read_data"] = 0x0061,
["offcore_requests_outstanding.demand.read_data_not_empty"] = 0x0061,
["offcore_requests_outstanding.demand.rfo"] = 0x0064,
["offcore_requests_outstanding.demand.rfo_not_empty"] = 0x0064,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["snoopq_requests.code"] = 0x00b8,
["snoopq_requests.data"] = 0x00b5,
["snoopq_requests.invalidate"] = 0x00b6,
["snoopq_requests_outstanding.code"] = 0x00b7,
["snoopq_requests_outstanding.code_not_empty"] = 0x00b7,
["snoopq_requests_outstanding.data"] = 0x00b4,
["snoopq_requests_outstanding.data_not_empty"] = 0x00b4,
["snoopq_requests_outstanding.invalidate"] = 0x00b5,
["snoopq_requests_outstanding.invalidate_not_empty"] = 0x00b5,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.lru_hints"] = 0x00f8,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["br_misp_retired.all_branches"] = 0x00c9,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-25", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.all_branches"] = 0x00c9,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_load_misses.walk_cycles"] = 0x000c,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.large_walk_completed"] = 0x00c9,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["dtlb_misses.walk_cycles"] = 0x004d,
["ept.walk_cycles"] = 0x005f,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_cycles"] = 0x0089,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_block.overlap_store"] = 0x0005,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["mem_uncore_retired.local_dram"] = 0x001f,
["mem_uncore_retired.other_core_l2_hitm"] = 0x0011,
["mem_uncore_retired.remote_cache_local_home_hit"] = 0x0017,
["mem_uncore_retired.remote_dram"] = 0x002f,
["mem_uncore_retired.uncacheable"] = 0x008f,
["offcore_requests.any"] = 0x0130,
["offcore_requests.any.read"] = 0x00b8,
["offcore_requests.any.rfo"] = 0x00c0,
["offcore_requests.demand.read_code"] = 0x00b2,
["offcore_requests.demand.read_data"] = 0x00b1,
["offcore_requests.demand.rfo"] = 0x00b4,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests.uncached_mem"] = 0x00d0,
["offcore_requests_outstanding.any.read"] = 0x0068,
["offcore_requests_outstanding.any.read_not_empty"] = 0x0068,
["offcore_requests_outstanding.demand.read_code"] = 0x0062,
["offcore_requests_outstanding.demand.read_code_not_empty"] = 0x0062,
["offcore_requests_outstanding.demand.read_data"] = 0x0061,
["offcore_requests_outstanding.demand.read_data_not_empty"] = 0x0061,
["offcore_requests_outstanding.demand.rfo"] = 0x0064,
["offcore_requests_outstanding.demand.rfo_not_empty"] = 0x0064,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["snoopq_requests.code"] = 0x00b8,
["snoopq_requests.data"] = 0x00b5,
["snoopq_requests.invalidate"] = 0x00b6,
["snoopq_requests_outstanding.code"] = 0x00b7,
["snoopq_requests_outstanding.code_not_empty"] = 0x00b7,
["snoopq_requests_outstanding.data"] = 0x00b4,
["snoopq_requests_outstanding.data_not_empty"] = 0x00b4,
["snoopq_requests_outstanding.invalidate"] = 0x00b5,
["snoopq_requests_outstanding.invalidate_not_empty"] = 0x00b5,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.lru_hints"] = 0x00f8,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["br_misp_retired.all_branches"] = 0x00c9,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-2C", "V1", "core",
{
["arith.cycles_div_busy"] = 0x0015,
["arith.div"] = 0x0015,
["arith.mul"] = 0x0016,
["baclear.bad_target"] = 0x00e8,
["baclear.clear"] = 0x00e7,
["baclear_force_iq"] = 0x00a8,
["bpu_clears.early"] = 0x00e9,
["bpu_clears.late"] = 0x00ea,
["bpu_missed_call_ret"] = 0x00e6,
["br_inst_decoded"] = 0x00e1,
["br_inst_exec.any"] = 0x0107,
["br_inst_exec.cond"] = 0x0089,
["br_inst_exec.direct"] = 0x008a,
["br_inst_exec.direct_near_call"] = 0x0098,
["br_inst_exec.indirect_near_call"] = 0x00a8,
["br_inst_exec.indirect_non_call"] = 0x008c,
["br_inst_exec.near_calls"] = 0x00b8,
["br_inst_exec.non_calls"] = 0x008f,
["br_inst_exec.return_near"] = 0x0090,
["br_inst_exec.taken"] = 0x00c8,
["br_inst_retired.all_branches"] = 0x00c8,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_exec.any"] = 0x0108,
["br_misp_exec.cond"] = 0x008a,
["br_misp_exec.direct"] = 0x008b,
["br_misp_exec.direct_near_call"] = 0x0099,
["br_misp_exec.indirect_near_call"] = 0x00a9,
["br_misp_exec.indirect_non_call"] = 0x008d,
["br_misp_exec.near_calls"] = 0x00b9,
["br_misp_exec.non_calls"] = 0x0090,
["br_misp_exec.return_near"] = 0x0091,
["br_misp_exec.taken"] = 0x00c9,
["br_misp_retired.all_branches"] = 0x00c9,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.near_call"] = 0x00c7,
["cache_lock_cycles.l1d"] = 0x0065,
["cache_lock_cycles.l1d_l2"] = 0x0064,
["cpu_clk_unhalted.ref"] = 0x0000,
["cpu_clk_unhalted.ref_p"] = 0x003d,
["cpu_clk_unhalted.thread"] = 0x0000,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_unhalted.total_cycles"] = 0x003c,
["dtlb_load_misses.any"] = 0x0009,
["dtlb_load_misses.large_walk_completed"] = 0x0088,
["dtlb_load_misses.pde_miss"] = 0x0028,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_load_misses.walk_cycles"] = 0x000c,
["dtlb_misses.any"] = 0x004a,
["dtlb_misses.large_walk_completed"] = 0x00c9,
["dtlb_misses.pde_miss"] = 0x0069,
["dtlb_misses.stlb_hit"] = 0x0059,
["dtlb_misses.walk_completed"] = 0x004b,
["dtlb_misses.walk_cycles"] = 0x004d,
["ept.walk_cycles"] = 0x005f,
["es_reg_renames"] = 0x00d6,
["fp_assist.all"] = 0x00f8,
["fp_assist.input"] = 0x00fb,
["fp_assist.output"] = 0x00f9,
["fp_comp_ops_exe.mmx"] = 0x0012,
["fp_comp_ops_exe.sse_double_precision"] = 0x0090,
["fp_comp_ops_exe.sse_fp"] = 0x0014,
["fp_comp_ops_exe.sse_fp_packed"] = 0x0020,
["fp_comp_ops_exe.sse_fp_scalar"] = 0x0030,
["fp_comp_ops_exe.sse_single_precision"] = 0x0050,
["fp_comp_ops_exe.sse2_integer"] = 0x0018,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_mmx_trans.any"] = 0x00cf,
["fp_mmx_trans.to_fp"] = 0x00cd,
["fp_mmx_trans.to_mmx"] = 0x00ce,
["ild_stall.any"] = 0x0096,
["ild_stall.iq_full"] = 0x008b,
["ild_stall.lcp"] = 0x0088,
["ild_stall.mru"] = 0x0089,
["ild_stall.regen"] = 0x008f,
["inst_decoded.dec0"] = 0x0019,
["inst_queue_write_cycles"] = 0x001f,
["inst_queue_writes"] = 0x0018,
["inst_retired.any"] = 0x0000,
["inst_retired.any_p"] = 0x00c1,
["inst_retired.mmx"] = 0x00c4,
["inst_retired.total_cycles"] = 0x00c1,
["inst_retired.x87"] = 0x00c2,
["io_transactions"] = 0x006d,
["itlb_flush"] = 0x00af,
["itlb_miss_retired"] = 0x00e8,
["itlb_misses.any"] = 0x0086,
["itlb_misses.large_walk_completed"] = 0x0105,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_cycles"] = 0x0089,
["l1d.m_evict"] = 0x0055,
["l1d.m_repl"] = 0x0053,
["l1d.m_snoop_evict"] = 0x0059,
["l1d.repl"] = 0x0052,
["l1d_cache_prefetch_lock_fb_hit"] = 0x0053,
["l1d_prefetch.miss"] = 0x0050,
["l1d_prefetch.requests"] = 0x004f,
["l1d_prefetch.triggers"] = 0x0052,
["l1d_wb_l2.e_state"] = 0x002c,
["l1d_wb_l2.i_state"] = 0x0029,
["l1d_wb_l2.m_state"] = 0x0030,
["l1d_wb_l2.mesi"] = 0x0037,
["l1d_wb_l2.s_state"] = 0x002a,
["l1i.cycles_stalled"] = 0x0084,
["l1i.hits"] = 0x0081,
["l1i.misses"] = 0x0082,
["l1i.reads"] = 0x0083,
["l2_data_rqsts.any"] = 0x0125,
["l2_data_rqsts.demand.e_state"] = 0x002a,
["l2_data_rqsts.demand.i_state"] = 0x0027,
["l2_data_rqsts.demand.m_state"] = 0x002e,
["l2_data_rqsts.demand.mesi"] = 0x0035,
["l2_data_rqsts.demand.s_state"] = 0x0028,
["l2_data_rqsts.prefetch.e_state"] = 0x0066,
["l2_data_rqsts.prefetch.i_state"] = 0x0036,
["l2_data_rqsts.prefetch.m_state"] = 0x00a6,
["l2_data_rqsts.prefetch.mesi"] = 0x0116,
["l2_data_rqsts.prefetch.s_state"] = 0x0046,
["l2_lines_in.any"] = 0x00f8,
["l2_lines_in.e_state"] = 0x00f5,
["l2_lines_in.s_state"] = 0x00f3,
["l2_lines_out.any"] = 0x0101,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.prefetch_clean"] = 0x00f6,
["l2_lines_out.prefetch_dirty"] = 0x00fa,
["l2_rqsts.ifetch_hit"] = 0x0034,
["l2_rqsts.ifetch_miss"] = 0x0044,
["l2_rqsts.ifetches"] = 0x0054,
["l2_rqsts.ld_hit"] = 0x0025,
["l2_rqsts.ld_miss"] = 0x0026,
["l2_rqsts.loads"] = 0x0027,
["l2_rqsts.miss"] = 0x00ce,
["l2_rqsts.prefetch_hit"] = 0x0064,
["l2_rqsts.prefetch_miss"] = 0x00a4,
["l2_rqsts.prefetches"] = 0x00e4,
["l2_rqsts.references"] = 0x0123,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.rfos"] = 0x0030,
["l2_transactions.any"] = 0x0170,
["l2_transactions.fill"] = 0x0110,
["l2_transactions.ifetch"] = 0x00f4,
["l2_transactions.l1d_wb"] = 0x0100,
["l2_transactions.load"] = 0x00f1,
["l2_transactions.prefetch"] = 0x00f8,
["l2_transactions.rfo"] = 0x00f2,
["l2_transactions.wb"] = 0x0130,
["l2_write.lock.e_state"] = 0x0067,
["l2_write.lock.hit"] = 0x0107,
["l2_write.lock.i_state"] = 0x0037,
["l2_write.lock.m_state"] = 0x00a7,
["l2_write.lock.mesi"] = 0x0117,
["l2_write.lock.s_state"] = 0x0047,
["l2_write.rfo.hit"] = 0x0035,
["l2_write.rfo.i_state"] = 0x0028,
["l2_write.rfo.m_state"] = 0x002f,
["l2_write.rfo.mesi"] = 0x0036,
["l2_write.rfo.s_state"] = 0x0029,
["large_itlb.hit"] = 0x0083,
["load_block.overlap_store"] = 0x0005,
["load_dispatch.any"] = 0x001a,
["load_dispatch.mob"] = 0x0017,
["load_dispatch.rs"] = 0x0014,
["load_dispatch.rs_delayed"] = 0x0015,
["load_hit_pre"] = 0x004d,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["lsd.active"] = 0x00a9,
["lsd.inactive"] = 0x00a9,
["lsd_overflow"] = 0x0021,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.mem_order"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["macro_insts.decoded"] = 0x00d1,
["macro_insts.fusions_decoded"] = 0x00a7,
["mem_inst_retired.loads"] = 0x000c,
["mem_inst_retired.stores"] = 0x000d,
["mem_load_retired.dtlb_miss"] = 0x014b,
["mem_load_retired.hit_lfb"] = 0x010b,
["mem_load_retired.l1d_hit"] = 0x00cc,
["mem_load_retired.l2_hit"] = 0x00cd,
["mem_load_retired.llc_miss"] = 0x00db,
["mem_load_retired.llc_unshared_hit"] = 0x00cf,
["mem_load_retired.other_core_l2_hit_hitm"] = 0x00d3,
["mem_store_retired.dtlb_miss"] = 0x000d,
["misalign_mem_ref.store"] = 0x0007,
["offcore_requests.any"] = 0x0130,
["offcore_requests.any.read"] = 0x00b8,
["offcore_requests.any.rfo"] = 0x00c0,
["offcore_requests.demand.read_code"] = 0x00b2,
["offcore_requests.demand.read_data"] = 0x00b1,
["offcore_requests.demand.rfo"] = 0x00b4,
["offcore_requests.l1d_writeback"] = 0x00f0,
["offcore_requests_outstanding.any.read"] = 0x0068,
["offcore_requests_outstanding.any.read_not_empty"] = 0x0068,
["offcore_requests_outstanding.demand.read_code"] = 0x0062,
["offcore_requests_outstanding.demand.read_code_not_empty"] = 0x0062,
["offcore_requests_outstanding.demand.read_data"] = 0x0061,
["offcore_requests_outstanding.demand.read_data_not_empty"] = 0x0061,
["offcore_requests_outstanding.demand.rfo"] = 0x0064,
["offcore_requests_outstanding.demand.rfo_not_empty"] = 0x0064,
["offcore_requests_sq_full"] = 0x00b3,
["partial_address_alias"] = 0x0008,
["rat_stalls.any"] = 0x00e1,
["rat_stalls.flags"] = 0x00d3,
["rat_stalls.registers"] = 0x00d4,
["rat_stalls.rob_read_port"] = 0x00d6,
["rat_stalls.scoreboard"] = 0x00da,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.fpcw"] = 0x00c2,
["resource_stalls.load"] = 0x00a4,
["resource_stalls.mxcsr"] = 0x00e2,
["resource_stalls.other"] = 0x0122,
["resource_stalls.rob_full"] = 0x00b2,
["resource_stalls.rs_full"] = 0x00a6,
["resource_stalls.store"] = 0x00aa,
["sb_drain.any"] = 0x000b,
["seg_rename_stalls"] = 0x00d5,
["simd_int_128.pack"] = 0x0016,
["simd_int_128.packed_arith"] = 0x0032,
["simd_int_128.packed_logical"] = 0x0022,
["simd_int_128.packed_mpy"] = 0x0013,
["simd_int_128.packed_shift"] = 0x0014,
["simd_int_128.shuffle_move"] = 0x0052,
["simd_int_128.unpack"] = 0x001a,
["simd_int_64.pack"] = 0x0101,
["simd_int_64.packed_arith"] = 0x011d,
["simd_int_64.packed_logical"] = 0x010d,
["simd_int_64.packed_mpy"] = 0x00fe,
["simd_int_64.packed_shift"] = 0x00ff,
["simd_int_64.shuffle_move"] = 0x013d,
["simd_int_64.unpack"] = 0x0105,
["snoop_response.hit"] = 0x00b9,
["snoop_response.hite"] = 0x00ba,
["snoop_response.hitm"] = 0x00bc,
["snoopq_requests.code"] = 0x00b8,
["snoopq_requests.data"] = 0x00b5,
["snoopq_requests.invalidate"] = 0x00b6,
["snoopq_requests_outstanding.code"] = 0x00b7,
["snoopq_requests_outstanding.code_not_empty"] = 0x00b7,
["snoopq_requests_outstanding.data"] = 0x00b4,
["snoopq_requests_outstanding.data_not_empty"] = 0x00b4,
["snoopq_requests_outstanding.invalidate"] = 0x00b5,
["snoopq_requests_outstanding.invalidate_not_empty"] = 0x00b5,
["sq_full_stall_cycles"] = 0x00f7,
["sq_misc.lru_hints"] = 0x00f8,
["sq_misc.split_lock"] = 0x0104,
["ssex_uops_retired.packed_double"] = 0x00cb,
["ssex_uops_retired.packed_single"] = 0x00c8,
["ssex_uops_retired.scalar_double"] = 0x00cf,
["ssex_uops_retired.scalar_single"] = 0x00c9,
["ssex_uops_retired.vector_integer"] = 0x00d7,
["store_blocks.at_ret"] = 0x000a,
["store_blocks.l1d_block"] = 0x000e,
["two_uop_insts_decoded"] = 0x001a,
["uop_unfusion"] = 0x00dc,
["uops_decoded.esp_folding"] = 0x00d5,
["uops_decoded.esp_sync"] = 0x00d9,
["uops_decoded.ms_cycles_active"] = 0x00d3,
["uops_decoded.stall_cycles"] = 0x00d2,
["uops_executed.core_active_cycles"] = 0x00f0,
["uops_executed.core_active_cycles_no_port5"] = 0x00d0,
["uops_executed.core_stall_count"] = 0x00f0,
["uops_executed.core_stall_count_no_port5"] = 0x00d0,
["uops_executed.core_stall_cycles"] = 0x00f0,
["uops_executed.core_stall_cycles_no_port5"] = 0x00d0,
["uops_executed.port0"] = 0x00b2,
["uops_executed.port015"] = 0x00f1,
["uops_executed.port015_stall_cycles"] = 0x00f1,
["uops_executed.port1"] = 0x00b3,
["uops_executed.port2_core"] = 0x00b5,
["uops_executed.port234_core"] = 0x0131,
["uops_executed.port3_core"] = 0x00b9,
["uops_executed.port4_core"] = 0x00c1,
["uops_executed.port5"] = 0x00d1,
["uops_issued.any"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.cycles_all_threads"] = 0x000f,
["uops_issued.fused"] = 0x0010,
["uops_issued.stall_cycles"] = 0x000f,
["uops_retired.active_cycles"] = 0x00c3,
["uops_retired.any"] = 0x00c3,
["uops_retired.macro_fused"] = 0x00c6,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.all_branches"] = 0x00c8,
["br_misp_retired.all_branches"] = 0x00c9,
["mem_inst_retired.latency_above_threshold_0"] = 0x001b,
["mem_inst_retired.latency_above_threshold_1024"] = 0x001b,
["mem_inst_retired.latency_above_threshold_128"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16"] = 0x001b,
["mem_inst_retired.latency_above_threshold_16384"] = 0x001b,
["mem_inst_retired.latency_above_threshold_2048"] = 0x001b,
["mem_inst_retired.latency_above_threshold_256"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32"] = 0x001b,
["mem_inst_retired.latency_above_threshold_32768"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4"] = 0x001b,
["mem_inst_retired.latency_above_threshold_4096"] = 0x001b,
["mem_inst_retired.latency_above_threshold_512"] = 0x001b,
["mem_inst_retired.latency_above_threshold_64"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8"] = 0x001b,
["mem_inst_retired.latency_above_threshold_8192"] = 0x001b,
},
},
{"GenuineIntel-6-37", "V8", "core",
{
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.jcc"] = 0x0142,
["br_inst_retired.taken_jcc"] = 0x01c2,
["br_inst_retired.call"] = 0x01bd,
["br_inst_retired.rel_call"] = 0x01c1,
["br_inst_retired.ind_call"] = 0x01bf,
["br_inst_retired.return"] = 0x01bb,
["br_inst_retired.non_return_ind"] = 0x01af,
["br_inst_retired.far_branch"] = 0x0183,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.jcc"] = 0x0143,
["br_misp_retired.taken_jcc"] = 0x01c3,
["br_misp_retired.ind_call"] = 0x01c0,
["br_misp_retired.return"] = 0x01bc,
["br_misp_retired.non_return_ind"] = 0x01b0,
["uops_retired.ms"] = 0x00c3,
["uops_retired.all"] = 0x00d2,
["machine_clears.smc"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.fp_assist"] = 0x00c7,
["machine_clears.all"] = 0x00cb,
["no_alloc_cycles.rob_full"] = 0x00cb,
["no_alloc_cycles.mispredicts"] = 0x00ce,
["no_alloc_cycles.rat_stall"] = 0x00ea,
["no_alloc_cycles.not_delivered"] = 0x011a,
["no_alloc_cycles.all"] = 0x0109,
["rs_full_stall.mec"] = 0x00cc,
["rs_full_stall.all"] = 0x00ea,
["inst_retired.any_p"] = 0x00c0,
["cycles_div_busy.all"] = 0x00ce,
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.core"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.ref"] = 0x003d,
["l2_reject_xq.all"] = 0x0030,
["core_reject_l2q.all"] = 0x0031,
["longest_lat_cache.reference"] = 0x007d,
["longest_lat_cache.miss"] = 0x006f,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["fetch_stall.icache_fill_pending_cycles"] = 0x008a,
["baclears.all"] = 0x00e7,
["baclears.return"] = 0x00ee,
["baclears.cond"] = 0x00f6,
["ms_decoded.ms_entry"] = 0x00e8,
["decode_restriction.predecode_wrong"] = 0x00ea,
["rehabq.ld_block_st_forward"] = 0x0004,
["rehabq.ld_block_std_notready"] = 0x0005,
["rehabq.st_splits"] = 0x0007,
["rehabq.ld_splits"] = 0x000b,
["rehabq.lock"] = 0x0013,
["rehabq.sta_full"] = 0x0023,
["rehabq.any_ld"] = 0x0043,
["rehabq.any_st"] = 0x0083,
["mem_uops_retired.l1_miss_loads"] = 0x0005,
["mem_uops_retired.l2_hit_loads"] = 0x0006,
["mem_uops_retired.l2_miss_loads"] = 0x0008,
["mem_uops_retired.dtlb_miss_loads"] = 0x000c,
["mem_uops_retired.utlb_miss"] = 0x0014,
["mem_uops_retired.hitm"] = 0x0024,
["mem_uops_retired.all_loads"] = 0x0044,
["mem_uops_retired.all_stores"] = 0x0084,
["page_walks.d_side_walks"] = 0x0006,
["page_walks.d_side_cycles"] = 0x0006,
["page_walks.i_side_walks"] = 0x0007,
["page_walks.i_side_cycles"] = 0x0007,
["page_walks.walks"] = 0x0008,
["page_walks.cycles"] = 0x0008,
["offcore_response"] = 0x00b8,
},
},
{"GenuineIntel-6-37", "V8", "offcore",
{
},
},
{"GenuineIntel-6-4D", "V8", "core",
{
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.jcc"] = 0x0142,
["br_inst_retired.taken_jcc"] = 0x01c2,
["br_inst_retired.call"] = 0x01bd,
["br_inst_retired.rel_call"] = 0x01c1,
["br_inst_retired.ind_call"] = 0x01bf,
["br_inst_retired.return"] = 0x01bb,
["br_inst_retired.non_return_ind"] = 0x01af,
["br_inst_retired.far_branch"] = 0x0183,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.jcc"] = 0x0143,
["br_misp_retired.taken_jcc"] = 0x01c3,
["br_misp_retired.ind_call"] = 0x01c0,
["br_misp_retired.return"] = 0x01bc,
["br_misp_retired.non_return_ind"] = 0x01b0,
["uops_retired.ms"] = 0x00c3,
["uops_retired.all"] = 0x00d2,
["machine_clears.smc"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.fp_assist"] = 0x00c7,
["machine_clears.all"] = 0x00cb,
["no_alloc_cycles.rob_full"] = 0x00cb,
["no_alloc_cycles.mispredicts"] = 0x00ce,
["no_alloc_cycles.rat_stall"] = 0x00ea,
["no_alloc_cycles.not_delivered"] = 0x011a,
["no_alloc_cycles.all"] = 0x0109,
["rs_full_stall.mec"] = 0x00cc,
["rs_full_stall.all"] = 0x00ea,
["inst_retired.any_p"] = 0x00c0,
["cycles_div_busy.all"] = 0x00ce,
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.core"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.ref"] = 0x003d,
["l2_reject_xq.all"] = 0x0030,
["core_reject_l2q.all"] = 0x0031,
["longest_lat_cache.reference"] = 0x007d,
["longest_lat_cache.miss"] = 0x006f,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["fetch_stall.icache_fill_pending_cycles"] = 0x008a,
["baclears.all"] = 0x00e7,
["baclears.return"] = 0x00ee,
["baclears.cond"] = 0x00f6,
["ms_decoded.ms_entry"] = 0x00e8,
["decode_restriction.predecode_wrong"] = 0x00ea,
["rehabq.ld_block_st_forward"] = 0x0004,
["rehabq.ld_block_std_notready"] = 0x0005,
["rehabq.st_splits"] = 0x0007,
["rehabq.ld_splits"] = 0x000b,
["rehabq.lock"] = 0x0013,
["rehabq.sta_full"] = 0x0023,
["rehabq.any_ld"] = 0x0043,
["rehabq.any_st"] = 0x0083,
["mem_uops_retired.l1_miss_loads"] = 0x0005,
["mem_uops_retired.l2_hit_loads"] = 0x0006,
["mem_uops_retired.l2_miss_loads"] = 0x0008,
["mem_uops_retired.dtlb_miss_loads"] = 0x000c,
["mem_uops_retired.utlb_miss"] = 0x0014,
["mem_uops_retired.hitm"] = 0x0024,
["mem_uops_retired.all_loads"] = 0x0044,
["mem_uops_retired.all_stores"] = 0x0084,
["page_walks.d_side_walks"] = 0x0006,
["page_walks.d_side_cycles"] = 0x0006,
["page_walks.i_side_walks"] = 0x0007,
["page_walks.i_side_cycles"] = 0x0007,
["page_walks.walks"] = 0x0008,
["page_walks.cycles"] = 0x0008,
["offcore_response"] = 0x00b8,
},
},
{"GenuineIntel-6-4D", "V8", "offcore",
{
},
},
{"GenuineIntel-6-1C", "V1", "core",
{
["store_forwards.any"] = 0x0085,
["store_forwards.good"] = 0x0083,
["reissue.any"] = 0x0082,
["reissue.any.ar"] = 0x0102,
["misalign_mem_ref.split"] = 0x0014,
["misalign_mem_ref.ld_split"] = 0x000e,
["misalign_mem_ref.st_split"] = 0x000f,
["misalign_mem_ref.split.ar"] = 0x0094,
["misalign_mem_ref.ld_split.ar"] = 0x008e,
["misalign_mem_ref.st_split.ar"] = 0x008f,
["misalign_mem_ref.rmw_split"] = 0x0091,
["misalign_mem_ref.bubble"] = 0x009c,
["misalign_mem_ref.ld_bubble"] = 0x0096,
["misalign_mem_ref.st_bubble"] = 0x0097,
["misalign_mem_ref.rmw_bubble"] = 0x0099,
["segment_reg_loads.any"] = 0x0086,
["prefetch.prefetcht0"] = 0x0088,
["prefetch.prefetcht1"] = 0x0089,
["prefetch.prefetcht2"] = 0x008b,
["prefetch.sw_l2"] = 0x008d,
["prefetch.prefetchnta"] = 0x008f,
["prefetch.hw_prefetch"] = 0x0017,
["prefetch.software_prefetch"] = 0x0016,
["prefetch.software_prefetch.ar"] = 0x0096,
["data_tlb_misses.dtlb_miss"] = 0x000f,
["data_tlb_misses.dtlb_miss_ld"] = 0x000d,
["data_tlb_misses.l0_dtlb_miss_ld"] = 0x0011,
["data_tlb_misses.dtlb_miss_st"] = 0x000e,
["data_tlb_misses.l0_dtlb_miss_st"] = 0x0012,
["dispatch_blocked.any"] = 0x0029,
["page_walks.walks"] = 0x000f,
["page_walks.cycles"] = 0x000f,
["page_walks.d_side_walks"] = 0x000d,
["page_walks.d_side_cycles"] = 0x000d,
["page_walks.i_side_walks"] = 0x000e,
["page_walks.i_side_cycles"] = 0x000e,
["x87_comp_ops_exe.any.s"] = 0x0011,
["x87_comp_ops_exe.any.ar"] = 0x0091,
["x87_comp_ops_exe.fxch.s"] = 0x0012,
["x87_comp_ops_exe.fxch.ar"] = 0x0092,
["fp_assist.s"] = 0x0012,
["fp_assist.ar"] = 0x0092,
["mul.s"] = 0x0013,
["mul.ar"] = 0x0093,
["div.s"] = 0x0014,
["div.ar"] = 0x0094,
["cycles_div_busy"] = 0x0015,
["l2_ads.self"] = 0x0061,
["l2_dbus_busy.self"] = 0x0062,
["l2_dbus_busy_rd.self"] = 0x0063,
["l2_lines_in.self.any"] = 0x0094,
["l2_lines_in.self.demand"] = 0x0064,
["l2_lines_in.self.prefetch"] = 0x0074,
["l2_m_lines_in.self"] = 0x0065,
["l2_lines_out.self.any"] = 0x0096,
["l2_lines_out.self.demand"] = 0x0066,
["l2_lines_out.self.prefetch"] = 0x0076,
["l2_m_lines_out.self.any"] = 0x0097,
["l2_m_lines_out.self.demand"] = 0x0067,
["l2_m_lines_out.self.prefetch"] = 0x0077,
["l2_ifetch.self.e_state"] = 0x006c,
["l2_ifetch.self.i_state"] = 0x0069,
["l2_ifetch.self.m_state"] = 0x0070,
["l2_ifetch.self.s_state"] = 0x006a,
["l2_ifetch.self.mesi"] = 0x0077,
["l2_ld.self.any.e_state"] = 0x009d,
["l2_ld.self.any.i_state"] = 0x009a,
["l2_ld.self.any.m_state"] = 0x00a1,
["l2_ld.self.any.s_state"] = 0x009b,
["l2_ld.self.any.mesi"] = 0x00a8,
["l2_ld.self.demand.e_state"] = 0x006d,
["l2_ld.self.demand.i_state"] = 0x006a,
["l2_ld.self.demand.m_state"] = 0x0071,
["l2_ld.self.demand.s_state"] = 0x006b,
["l2_ld.self.demand.mesi"] = 0x0078,
["l2_ld.self.prefetch.e_state"] = 0x007d,
["l2_ld.self.prefetch.i_state"] = 0x007a,
["l2_ld.self.prefetch.m_state"] = 0x0081,
["l2_ld.self.prefetch.s_state"] = 0x007b,
["l2_ld.self.prefetch.mesi"] = 0x0088,
["l2_st.self.e_state"] = 0x006e,
["l2_st.self.i_state"] = 0x006b,
["l2_st.self.m_state"] = 0x0072,
["l2_st.self.s_state"] = 0x006c,
["l2_st.self.mesi"] = 0x0079,
["l2_lock.self.e_state"] = 0x006f,
["l2_lock.self.i_state"] = 0x006c,
["l2_lock.self.m_state"] = 0x0073,
["l2_lock.self.s_state"] = 0x006d,
["l2_lock.self.mesi"] = 0x007a,
["l2_data_rqsts.self.e_state"] = 0x0070,
["l2_data_rqsts.self.i_state"] = 0x006d,
["l2_data_rqsts.self.m_state"] = 0x0074,
["l2_data_rqsts.self.s_state"] = 0x006e,
["l2_data_rqsts.self.mesi"] = 0x007b,
["l2_ld_ifetch.self.e_state"] = 0x0071,
["l2_ld_ifetch.self.i_state"] = 0x006e,
["l2_ld_ifetch.self.m_state"] = 0x0075,
["l2_ld_ifetch.self.s_state"] = 0x006f,
["l2_ld_ifetch.self.mesi"] = 0x007c,
["l2_rqsts.self.any.e_state"] = 0x00a2,
["l2_rqsts.self.any.i_state"] = 0x009f,
["l2_rqsts.self.any.m_state"] = 0x00a6,
["l2_rqsts.self.any.s_state"] = 0x00a0,
["l2_rqsts.self.any.mesi"] = 0x00ad,
["l2_rqsts.self.demand.e_state"] = 0x0072,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.m_state"] = 0x0076,
["l2_rqsts.self.demand.s_state"] = 0x0070,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_rqsts.self.prefetch.e_state"] = 0x0082,
["l2_rqsts.self.prefetch.i_state"] = 0x007f,
["l2_rqsts.self.prefetch.m_state"] = 0x0086,
["l2_rqsts.self.prefetch.s_state"] = 0x0080,
["l2_rqsts.self.prefetch.mesi"] = 0x008d,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_reject_busq.self.any.e_state"] = 0x00a4,
["l2_reject_busq.self.any.i_state"] = 0x00a1,
["l2_reject_busq.self.any.m_state"] = 0x00a8,
["l2_reject_busq.self.any.s_state"] = 0x00a2,
["l2_reject_busq.self.any.mesi"] = 0x00af,
["l2_reject_busq.self.demand.e_state"] = 0x0074,
["l2_reject_busq.self.demand.i_state"] = 0x0071,
["l2_reject_busq.self.demand.m_state"] = 0x0078,
["l2_reject_busq.self.demand.s_state"] = 0x0072,
["l2_reject_busq.self.demand.mesi"] = 0x007f,
["l2_reject_busq.self.prefetch.e_state"] = 0x0084,
["l2_reject_busq.self.prefetch.i_state"] = 0x0081,
["l2_reject_busq.self.prefetch.m_state"] = 0x0088,
["l2_reject_busq.self.prefetch.s_state"] = 0x0082,
["l2_reject_busq.self.prefetch.mesi"] = 0x008f,
["l2_no_req.self"] = 0x0072,
["eist_trans"] = 0x003a,
["thermal_trip"] = 0x00fb,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.bus"] = 0x003d,
["cpu_clk_unhalted.core"] = 0x000a,
["cpu_clk_unhalted.ref"] = 0x000a,
["l1d_cache.ld"] = 0x00e1,
["l1d_cache.st"] = 0x00e2,
["l1d_cache.all_ref"] = 0x00c3,
["l1d_cache.all_cache_ref"] = 0x00e3,
["l1d_cache.repl"] = 0x0048,
["l1d_cache.replm"] = 0x0088,
["l1d_cache.evict"] = 0x0050,
["bus_request_outstanding.all_agents"] = 0x0140,
["bus_request_outstanding.self"] = 0x00a0,
["bus_bnr_drv.all_agents"] = 0x0081,
["bus_bnr_drv.this_agent"] = 0x0061,
["bus_drdy_clocks.all_agents"] = 0x0082,
["bus_drdy_clocks.this_agent"] = 0x0062,
["bus_lock_clocks.all_agents"] = 0x0143,
["bus_lock_clocks.self"] = 0x00a3,
["bus_data_rcv.self"] = 0x00a4,
["bus_trans_brd.all_agents"] = 0x0145,
["bus_trans_brd.self"] = 0x00a5,
["bus_trans_rfo.all_agents"] = 0x0146,
["bus_trans_rfo.self"] = 0x00a6,
["bus_trans_wb.all_agents"] = 0x0147,
["bus_trans_wb.self"] = 0x00a7,
["bus_trans_ifetch.all_agents"] = 0x0148,
["bus_trans_ifetch.self"] = 0x00a8,
["bus_trans_inval.all_agents"] = 0x0149,
["bus_trans_inval.self"] = 0x00a9,
["bus_trans_pwr.all_agents"] = 0x014a,
["bus_trans_pwr.self"] = 0x00aa,
["bus_trans_p.all_agents"] = 0x014b,
["bus_trans_p.self"] = 0x00ab,
["bus_trans_io.all_agents"] = 0x014c,
["bus_trans_io.self"] = 0x00ac,
["bus_trans_def.all_agents"] = 0x014d,
["bus_trans_def.self"] = 0x00ad,
["bus_trans_burst.all_agents"] = 0x014e,
["bus_trans_burst.self"] = 0x00ae,
["bus_trans_mem.all_agents"] = 0x014f,
["bus_trans_mem.self"] = 0x00af,
["bus_trans_any.all_agents"] = 0x0150,
["bus_trans_any.self"] = 0x00b0,
["ext_snoop.this_agent.any"] = 0x0082,
["ext_snoop.this_agent.clean"] = 0x0078,
["ext_snoop.this_agent.hit"] = 0x0079,
["ext_snoop.this_agent.hitm"] = 0x007f,
["ext_snoop.all_agents.any"] = 0x00a2,
["ext_snoop.all_agents.clean"] = 0x0098,
["ext_snoop.all_agents.hit"] = 0x0099,
["ext_snoop.all_agents.hitm"] = 0x009f,
["bus_hit_drv.all_agents"] = 0x009a,
["bus_hit_drv.this_agent"] = 0x007a,
["bus_hitm_drv.all_agents"] = 0x009b,
["bus_hitm_drv.this_agent"] = 0x007b,
["busq_empty.self"] = 0x00bd,
["snoop_stall_drv.all_agents"] = 0x015e,
["snoop_stall_drv.self"] = 0x00be,
["bus_io_wait.self"] = 0x00bf,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["itlb.hit"] = 0x0083,
["itlb.flush"] = 0x0086,
["itlb.misses"] = 0x0084,
["cycles_icache_mem_stalled.icache_mem_stalled"] = 0x0087,
["decode_stall.pfb_empty"] = 0x0088,
["decode_stall.iq_full"] = 0x0089,
["br_inst_type_retired.cond"] = 0x0089,
["br_inst_type_retired.uncond"] = 0x008a,
["br_inst_type_retired.ind"] = 0x008c,
["br_inst_type_retired.ret"] = 0x0090,
["br_inst_type_retired.dir_call"] = 0x0098,
["br_inst_type_retired.ind_call"] = 0x00a8,
["br_inst_type_retired.cond_taken"] = 0x00c9,
["br_missp_type_retired.cond"] = 0x008a,
["br_missp_type_retired.ind"] = 0x008b,
["br_missp_type_retired.return"] = 0x008d,
["br_missp_type_retired.ind_call"] = 0x0091,
["br_missp_type_retired.cond_taken"] = 0x009a,
["macro_insts.non_cisc_decoded"] = 0x00ab,
["macro_insts.cisc_decoded"] = 0x00ac,
["macro_insts.all_decoded"] = 0x00ad,
["simd_uops_exec.s"] = 0x00b0,
["simd_uops_exec.ar"] = 0x0130,
["simd_sat_uop_exec.s"] = 0x00b1,
["simd_sat_uop_exec.ar"] = 0x0131,
["simd_uop_type_exec.mul.s"] = 0x00b4,
["simd_uop_type_exec.mul.ar"] = 0x0134,
["simd_uop_type_exec.shift.s"] = 0x00b5,
["simd_uop_type_exec.shift.ar"] = 0x0135,
["simd_uop_type_exec.pack.s"] = 0x00b7,
["simd_uop_type_exec.pack.ar"] = 0x0137,
["simd_uop_type_exec.unpack.s"] = 0x00bb,
["simd_uop_type_exec.unpack.ar"] = 0x013b,
["simd_uop_type_exec.logical.s"] = 0x00c3,
["simd_uop_type_exec.logical.ar"] = 0x0143,
["simd_uop_type_exec.arithmetic.s"] = 0x00d3,
["simd_uop_type_exec.arithmetic.ar"] = 0x0153,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.any"] = 0x000a,
["uops_retired.any"] = 0x00d2,
["uops_retired.stalled_cycles"] = 0x00d2,
["uops_retired.stalls"] = 0x00d2,
["uops.ms_cycles"] = 0x00aa,
["machine_clears.smc"] = 0x00c4,
["br_inst_retired.any"] = 0x00c4,
["br_inst_retired.pred_not_taken"] = 0x00c5,
["br_inst_retired.mispred_not_taken"] = 0x00c6,
["br_inst_retired.pred_taken"] = 0x00c8,
["br_inst_retired.mispred_taken"] = 0x00cc,
["br_inst_retired.taken"] = 0x00d0,
["br_inst_retired.any1"] = 0x00d3,
["br_inst_retired.mispred"] = 0x00c5,
["cycles_int_masked.cycles_int_masked"] = 0x00c7,
["cycles_int_masked.cycles_int_pending_and_masked"] = 0x00c8,
["simd_inst_retired.packed_single"] = 0x00c8,
["simd_inst_retired.scalar_single"] = 0x00c9,
["simd_inst_retired.scalar_double"] = 0x00cf,
["simd_inst_retired.vector"] = 0x00d7,
["hw_int_rcv"] = 0x00c8,
["simd_comp_inst_retired.packed_single"] = 0x00cb,
["simd_comp_inst_retired.scalar_single"] = 0x00cc,
["simd_comp_inst_retired.scalar_double"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00cc,
["mem_load_retired.l2_miss"] = 0x00cd,
["mem_load_retired.dtlb_miss"] = 0x00cf,
["simd_assist"] = 0x00cd,
["simd_instr_retired"] = 0x00ce,
["simd_sat_instr_retired"] = 0x00cf,
["resource_stalls.div_busy"] = 0x00de,
["br_inst_decoded"] = 0x00e1,
["bogus_br"] = 0x00e5,
["baclears.any"] = 0x00e7,
["reissue.overlap_store"] = 0x0004,
["reissue.overlap_store.ar"] = 0x0084,
},
},
{"GenuineIntel-6-26", "V1", "core",
{
["store_forwards.any"] = 0x0085,
["store_forwards.good"] = 0x0083,
["reissue.any"] = 0x0082,
["reissue.any.ar"] = 0x0102,
["misalign_mem_ref.split"] = 0x0014,
["misalign_mem_ref.ld_split"] = 0x000e,
["misalign_mem_ref.st_split"] = 0x000f,
["misalign_mem_ref.split.ar"] = 0x0094,
["misalign_mem_ref.ld_split.ar"] = 0x008e,
["misalign_mem_ref.st_split.ar"] = 0x008f,
["misalign_mem_ref.rmw_split"] = 0x0091,
["misalign_mem_ref.bubble"] = 0x009c,
["misalign_mem_ref.ld_bubble"] = 0x0096,
["misalign_mem_ref.st_bubble"] = 0x0097,
["misalign_mem_ref.rmw_bubble"] = 0x0099,
["segment_reg_loads.any"] = 0x0086,
["prefetch.prefetcht0"] = 0x0088,
["prefetch.prefetcht1"] = 0x0089,
["prefetch.prefetcht2"] = 0x008b,
["prefetch.sw_l2"] = 0x008d,
["prefetch.prefetchnta"] = 0x008f,
["prefetch.hw_prefetch"] = 0x0017,
["prefetch.software_prefetch"] = 0x0016,
["prefetch.software_prefetch.ar"] = 0x0096,
["data_tlb_misses.dtlb_miss"] = 0x000f,
["data_tlb_misses.dtlb_miss_ld"] = 0x000d,
["data_tlb_misses.l0_dtlb_miss_ld"] = 0x0011,
["data_tlb_misses.dtlb_miss_st"] = 0x000e,
["data_tlb_misses.l0_dtlb_miss_st"] = 0x0012,
["dispatch_blocked.any"] = 0x0029,
["page_walks.walks"] = 0x000f,
["page_walks.cycles"] = 0x000f,
["page_walks.d_side_walks"] = 0x000d,
["page_walks.d_side_cycles"] = 0x000d,
["page_walks.i_side_walks"] = 0x000e,
["page_walks.i_side_cycles"] = 0x000e,
["x87_comp_ops_exe.any.s"] = 0x0011,
["x87_comp_ops_exe.any.ar"] = 0x0091,
["x87_comp_ops_exe.fxch.s"] = 0x0012,
["x87_comp_ops_exe.fxch.ar"] = 0x0092,
["fp_assist.s"] = 0x0012,
["fp_assist.ar"] = 0x0092,
["mul.s"] = 0x0013,
["mul.ar"] = 0x0093,
["div.s"] = 0x0014,
["div.ar"] = 0x0094,
["cycles_div_busy"] = 0x0015,
["l2_ads.self"] = 0x0061,
["l2_dbus_busy.self"] = 0x0062,
["l2_dbus_busy_rd.self"] = 0x0063,
["l2_lines_in.self.any"] = 0x0094,
["l2_lines_in.self.demand"] = 0x0064,
["l2_lines_in.self.prefetch"] = 0x0074,
["l2_m_lines_in.self"] = 0x0065,
["l2_lines_out.self.any"] = 0x0096,
["l2_lines_out.self.demand"] = 0x0066,
["l2_lines_out.self.prefetch"] = 0x0076,
["l2_m_lines_out.self.any"] = 0x0097,
["l2_m_lines_out.self.demand"] = 0x0067,
["l2_m_lines_out.self.prefetch"] = 0x0077,
["l2_ifetch.self.e_state"] = 0x006c,
["l2_ifetch.self.i_state"] = 0x0069,
["l2_ifetch.self.m_state"] = 0x0070,
["l2_ifetch.self.s_state"] = 0x006a,
["l2_ifetch.self.mesi"] = 0x0077,
["l2_ld.self.any.e_state"] = 0x009d,
["l2_ld.self.any.i_state"] = 0x009a,
["l2_ld.self.any.m_state"] = 0x00a1,
["l2_ld.self.any.s_state"] = 0x009b,
["l2_ld.self.any.mesi"] = 0x00a8,
["l2_ld.self.demand.e_state"] = 0x006d,
["l2_ld.self.demand.i_state"] = 0x006a,
["l2_ld.self.demand.m_state"] = 0x0071,
["l2_ld.self.demand.s_state"] = 0x006b,
["l2_ld.self.demand.mesi"] = 0x0078,
["l2_ld.self.prefetch.e_state"] = 0x007d,
["l2_ld.self.prefetch.i_state"] = 0x007a,
["l2_ld.self.prefetch.m_state"] = 0x0081,
["l2_ld.self.prefetch.s_state"] = 0x007b,
["l2_ld.self.prefetch.mesi"] = 0x0088,
["l2_st.self.e_state"] = 0x006e,
["l2_st.self.i_state"] = 0x006b,
["l2_st.self.m_state"] = 0x0072,
["l2_st.self.s_state"] = 0x006c,
["l2_st.self.mesi"] = 0x0079,
["l2_lock.self.e_state"] = 0x006f,
["l2_lock.self.i_state"] = 0x006c,
["l2_lock.self.m_state"] = 0x0073,
["l2_lock.self.s_state"] = 0x006d,
["l2_lock.self.mesi"] = 0x007a,
["l2_data_rqsts.self.e_state"] = 0x0070,
["l2_data_rqsts.self.i_state"] = 0x006d,
["l2_data_rqsts.self.m_state"] = 0x0074,
["l2_data_rqsts.self.s_state"] = 0x006e,
["l2_data_rqsts.self.mesi"] = 0x007b,
["l2_ld_ifetch.self.e_state"] = 0x0071,
["l2_ld_ifetch.self.i_state"] = 0x006e,
["l2_ld_ifetch.self.m_state"] = 0x0075,
["l2_ld_ifetch.self.s_state"] = 0x006f,
["l2_ld_ifetch.self.mesi"] = 0x007c,
["l2_rqsts.self.any.e_state"] = 0x00a2,
["l2_rqsts.self.any.i_state"] = 0x009f,
["l2_rqsts.self.any.m_state"] = 0x00a6,
["l2_rqsts.self.any.s_state"] = 0x00a0,
["l2_rqsts.self.any.mesi"] = 0x00ad,
["l2_rqsts.self.demand.e_state"] = 0x0072,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.m_state"] = 0x0076,
["l2_rqsts.self.demand.s_state"] = 0x0070,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_rqsts.self.prefetch.e_state"] = 0x0082,
["l2_rqsts.self.prefetch.i_state"] = 0x007f,
["l2_rqsts.self.prefetch.m_state"] = 0x0086,
["l2_rqsts.self.prefetch.s_state"] = 0x0080,
["l2_rqsts.self.prefetch.mesi"] = 0x008d,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_reject_busq.self.any.e_state"] = 0x00a4,
["l2_reject_busq.self.any.i_state"] = 0x00a1,
["l2_reject_busq.self.any.m_state"] = 0x00a8,
["l2_reject_busq.self.any.s_state"] = 0x00a2,
["l2_reject_busq.self.any.mesi"] = 0x00af,
["l2_reject_busq.self.demand.e_state"] = 0x0074,
["l2_reject_busq.self.demand.i_state"] = 0x0071,
["l2_reject_busq.self.demand.m_state"] = 0x0078,
["l2_reject_busq.self.demand.s_state"] = 0x0072,
["l2_reject_busq.self.demand.mesi"] = 0x007f,
["l2_reject_busq.self.prefetch.e_state"] = 0x0084,
["l2_reject_busq.self.prefetch.i_state"] = 0x0081,
["l2_reject_busq.self.prefetch.m_state"] = 0x0088,
["l2_reject_busq.self.prefetch.s_state"] = 0x0082,
["l2_reject_busq.self.prefetch.mesi"] = 0x008f,
["l2_no_req.self"] = 0x0072,
["eist_trans"] = 0x003a,
["thermal_trip"] = 0x00fb,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.bus"] = 0x003d,
["cpu_clk_unhalted.core"] = 0x000a,
["cpu_clk_unhalted.ref"] = 0x000a,
["l1d_cache.ld"] = 0x00e1,
["l1d_cache.st"] = 0x00e2,
["l1d_cache.all_ref"] = 0x00c3,
["l1d_cache.all_cache_ref"] = 0x00e3,
["l1d_cache.repl"] = 0x0048,
["l1d_cache.replm"] = 0x0088,
["l1d_cache.evict"] = 0x0050,
["bus_request_outstanding.all_agents"] = 0x0140,
["bus_request_outstanding.self"] = 0x00a0,
["bus_bnr_drv.all_agents"] = 0x0081,
["bus_bnr_drv.this_agent"] = 0x0061,
["bus_drdy_clocks.all_agents"] = 0x0082,
["bus_drdy_clocks.this_agent"] = 0x0062,
["bus_lock_clocks.all_agents"] = 0x0143,
["bus_lock_clocks.self"] = 0x00a3,
["bus_data_rcv.self"] = 0x00a4,
["bus_trans_brd.all_agents"] = 0x0145,
["bus_trans_brd.self"] = 0x00a5,
["bus_trans_rfo.all_agents"] = 0x0146,
["bus_trans_rfo.self"] = 0x00a6,
["bus_trans_wb.all_agents"] = 0x0147,
["bus_trans_wb.self"] = 0x00a7,
["bus_trans_ifetch.all_agents"] = 0x0148,
["bus_trans_ifetch.self"] = 0x00a8,
["bus_trans_inval.all_agents"] = 0x0149,
["bus_trans_inval.self"] = 0x00a9,
["bus_trans_pwr.all_agents"] = 0x014a,
["bus_trans_pwr.self"] = 0x00aa,
["bus_trans_p.all_agents"] = 0x014b,
["bus_trans_p.self"] = 0x00ab,
["bus_trans_io.all_agents"] = 0x014c,
["bus_trans_io.self"] = 0x00ac,
["bus_trans_def.all_agents"] = 0x014d,
["bus_trans_def.self"] = 0x00ad,
["bus_trans_burst.all_agents"] = 0x014e,
["bus_trans_burst.self"] = 0x00ae,
["bus_trans_mem.all_agents"] = 0x014f,
["bus_trans_mem.self"] = 0x00af,
["bus_trans_any.all_agents"] = 0x0150,
["bus_trans_any.self"] = 0x00b0,
["ext_snoop.this_agent.any"] = 0x0082,
["ext_snoop.this_agent.clean"] = 0x0078,
["ext_snoop.this_agent.hit"] = 0x0079,
["ext_snoop.this_agent.hitm"] = 0x007f,
["ext_snoop.all_agents.any"] = 0x00a2,
["ext_snoop.all_agents.clean"] = 0x0098,
["ext_snoop.all_agents.hit"] = 0x0099,
["ext_snoop.all_agents.hitm"] = 0x009f,
["bus_hit_drv.all_agents"] = 0x009a,
["bus_hit_drv.this_agent"] = 0x007a,
["bus_hitm_drv.all_agents"] = 0x009b,
["bus_hitm_drv.this_agent"] = 0x007b,
["busq_empty.self"] = 0x00bd,
["snoop_stall_drv.all_agents"] = 0x015e,
["snoop_stall_drv.self"] = 0x00be,
["bus_io_wait.self"] = 0x00bf,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["itlb.hit"] = 0x0083,
["itlb.flush"] = 0x0086,
["itlb.misses"] = 0x0084,
["cycles_icache_mem_stalled.icache_mem_stalled"] = 0x0087,
["decode_stall.pfb_empty"] = 0x0088,
["decode_stall.iq_full"] = 0x0089,
["br_inst_type_retired.cond"] = 0x0089,
["br_inst_type_retired.uncond"] = 0x008a,
["br_inst_type_retired.ind"] = 0x008c,
["br_inst_type_retired.ret"] = 0x0090,
["br_inst_type_retired.dir_call"] = 0x0098,
["br_inst_type_retired.ind_call"] = 0x00a8,
["br_inst_type_retired.cond_taken"] = 0x00c9,
["br_missp_type_retired.cond"] = 0x008a,
["br_missp_type_retired.ind"] = 0x008b,
["br_missp_type_retired.return"] = 0x008d,
["br_missp_type_retired.ind_call"] = 0x0091,
["br_missp_type_retired.cond_taken"] = 0x009a,
["macro_insts.non_cisc_decoded"] = 0x00ab,
["macro_insts.cisc_decoded"] = 0x00ac,
["macro_insts.all_decoded"] = 0x00ad,
["simd_uops_exec.s"] = 0x00b0,
["simd_uops_exec.ar"] = 0x0130,
["simd_sat_uop_exec.s"] = 0x00b1,
["simd_sat_uop_exec.ar"] = 0x0131,
["simd_uop_type_exec.mul.s"] = 0x00b4,
["simd_uop_type_exec.mul.ar"] = 0x0134,
["simd_uop_type_exec.shift.s"] = 0x00b5,
["simd_uop_type_exec.shift.ar"] = 0x0135,
["simd_uop_type_exec.pack.s"] = 0x00b7,
["simd_uop_type_exec.pack.ar"] = 0x0137,
["simd_uop_type_exec.unpack.s"] = 0x00bb,
["simd_uop_type_exec.unpack.ar"] = 0x013b,
["simd_uop_type_exec.logical.s"] = 0x00c3,
["simd_uop_type_exec.logical.ar"] = 0x0143,
["simd_uop_type_exec.arithmetic.s"] = 0x00d3,
["simd_uop_type_exec.arithmetic.ar"] = 0x0153,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.any"] = 0x000a,
["uops_retired.any"] = 0x00d2,
["uops_retired.stalled_cycles"] = 0x00d2,
["uops_retired.stalls"] = 0x00d2,
["uops.ms_cycles"] = 0x00aa,
["machine_clears.smc"] = 0x00c4,
["br_inst_retired.any"] = 0x00c4,
["br_inst_retired.pred_not_taken"] = 0x00c5,
["br_inst_retired.mispred_not_taken"] = 0x00c6,
["br_inst_retired.pred_taken"] = 0x00c8,
["br_inst_retired.mispred_taken"] = 0x00cc,
["br_inst_retired.taken"] = 0x00d0,
["br_inst_retired.any1"] = 0x00d3,
["br_inst_retired.mispred"] = 0x00c5,
["cycles_int_masked.cycles_int_masked"] = 0x00c7,
["cycles_int_masked.cycles_int_pending_and_masked"] = 0x00c8,
["simd_inst_retired.packed_single"] = 0x00c8,
["simd_inst_retired.scalar_single"] = 0x00c9,
["simd_inst_retired.scalar_double"] = 0x00cf,
["simd_inst_retired.vector"] = 0x00d7,
["hw_int_rcv"] = 0x00c8,
["simd_comp_inst_retired.packed_single"] = 0x00cb,
["simd_comp_inst_retired.scalar_single"] = 0x00cc,
["simd_comp_inst_retired.scalar_double"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00cc,
["mem_load_retired.l2_miss"] = 0x00cd,
["mem_load_retired.dtlb_miss"] = 0x00cf,
["simd_assist"] = 0x00cd,
["simd_instr_retired"] = 0x00ce,
["simd_sat_instr_retired"] = 0x00cf,
["resource_stalls.div_busy"] = 0x00de,
["br_inst_decoded"] = 0x00e1,
["bogus_br"] = 0x00e5,
["baclears.any"] = 0x00e7,
["reissue.overlap_store"] = 0x0004,
["reissue.overlap_store.ar"] = 0x0084,
},
},
{"GenuineIntel-6-27", "V1", "core",
{
["store_forwards.any"] = 0x0085,
["store_forwards.good"] = 0x0083,
["reissue.any"] = 0x0082,
["reissue.any.ar"] = 0x0102,
["misalign_mem_ref.split"] = 0x0014,
["misalign_mem_ref.ld_split"] = 0x000e,
["misalign_mem_ref.st_split"] = 0x000f,
["misalign_mem_ref.split.ar"] = 0x0094,
["misalign_mem_ref.ld_split.ar"] = 0x008e,
["misalign_mem_ref.st_split.ar"] = 0x008f,
["misalign_mem_ref.rmw_split"] = 0x0091,
["misalign_mem_ref.bubble"] = 0x009c,
["misalign_mem_ref.ld_bubble"] = 0x0096,
["misalign_mem_ref.st_bubble"] = 0x0097,
["misalign_mem_ref.rmw_bubble"] = 0x0099,
["segment_reg_loads.any"] = 0x0086,
["prefetch.prefetcht0"] = 0x0088,
["prefetch.prefetcht1"] = 0x0089,
["prefetch.prefetcht2"] = 0x008b,
["prefetch.sw_l2"] = 0x008d,
["prefetch.prefetchnta"] = 0x008f,
["prefetch.hw_prefetch"] = 0x0017,
["prefetch.software_prefetch"] = 0x0016,
["prefetch.software_prefetch.ar"] = 0x0096,
["data_tlb_misses.dtlb_miss"] = 0x000f,
["data_tlb_misses.dtlb_miss_ld"] = 0x000d,
["data_tlb_misses.l0_dtlb_miss_ld"] = 0x0011,
["data_tlb_misses.dtlb_miss_st"] = 0x000e,
["data_tlb_misses.l0_dtlb_miss_st"] = 0x0012,
["dispatch_blocked.any"] = 0x0029,
["page_walks.walks"] = 0x000f,
["page_walks.cycles"] = 0x000f,
["page_walks.d_side_walks"] = 0x000d,
["page_walks.d_side_cycles"] = 0x000d,
["page_walks.i_side_walks"] = 0x000e,
["page_walks.i_side_cycles"] = 0x000e,
["x87_comp_ops_exe.any.s"] = 0x0011,
["x87_comp_ops_exe.any.ar"] = 0x0091,
["x87_comp_ops_exe.fxch.s"] = 0x0012,
["x87_comp_ops_exe.fxch.ar"] = 0x0092,
["fp_assist.s"] = 0x0012,
["fp_assist.ar"] = 0x0092,
["mul.s"] = 0x0013,
["mul.ar"] = 0x0093,
["div.s"] = 0x0014,
["div.ar"] = 0x0094,
["cycles_div_busy"] = 0x0015,
["l2_ads.self"] = 0x0061,
["l2_dbus_busy.self"] = 0x0062,
["l2_dbus_busy_rd.self"] = 0x0063,
["l2_lines_in.self.any"] = 0x0094,
["l2_lines_in.self.demand"] = 0x0064,
["l2_lines_in.self.prefetch"] = 0x0074,
["l2_m_lines_in.self"] = 0x0065,
["l2_lines_out.self.any"] = 0x0096,
["l2_lines_out.self.demand"] = 0x0066,
["l2_lines_out.self.prefetch"] = 0x0076,
["l2_m_lines_out.self.any"] = 0x0097,
["l2_m_lines_out.self.demand"] = 0x0067,
["l2_m_lines_out.self.prefetch"] = 0x0077,
["l2_ifetch.self.e_state"] = 0x006c,
["l2_ifetch.self.i_state"] = 0x0069,
["l2_ifetch.self.m_state"] = 0x0070,
["l2_ifetch.self.s_state"] = 0x006a,
["l2_ifetch.self.mesi"] = 0x0077,
["l2_ld.self.any.e_state"] = 0x009d,
["l2_ld.self.any.i_state"] = 0x009a,
["l2_ld.self.any.m_state"] = 0x00a1,
["l2_ld.self.any.s_state"] = 0x009b,
["l2_ld.self.any.mesi"] = 0x00a8,
["l2_ld.self.demand.e_state"] = 0x006d,
["l2_ld.self.demand.i_state"] = 0x006a,
["l2_ld.self.demand.m_state"] = 0x0071,
["l2_ld.self.demand.s_state"] = 0x006b,
["l2_ld.self.demand.mesi"] = 0x0078,
["l2_ld.self.prefetch.e_state"] = 0x007d,
["l2_ld.self.prefetch.i_state"] = 0x007a,
["l2_ld.self.prefetch.m_state"] = 0x0081,
["l2_ld.self.prefetch.s_state"] = 0x007b,
["l2_ld.self.prefetch.mesi"] = 0x0088,
["l2_st.self.e_state"] = 0x006e,
["l2_st.self.i_state"] = 0x006b,
["l2_st.self.m_state"] = 0x0072,
["l2_st.self.s_state"] = 0x006c,
["l2_st.self.mesi"] = 0x0079,
["l2_lock.self.e_state"] = 0x006f,
["l2_lock.self.i_state"] = 0x006c,
["l2_lock.self.m_state"] = 0x0073,
["l2_lock.self.s_state"] = 0x006d,
["l2_lock.self.mesi"] = 0x007a,
["l2_data_rqsts.self.e_state"] = 0x0070,
["l2_data_rqsts.self.i_state"] = 0x006d,
["l2_data_rqsts.self.m_state"] = 0x0074,
["l2_data_rqsts.self.s_state"] = 0x006e,
["l2_data_rqsts.self.mesi"] = 0x007b,
["l2_ld_ifetch.self.e_state"] = 0x0071,
["l2_ld_ifetch.self.i_state"] = 0x006e,
["l2_ld_ifetch.self.m_state"] = 0x0075,
["l2_ld_ifetch.self.s_state"] = 0x006f,
["l2_ld_ifetch.self.mesi"] = 0x007c,
["l2_rqsts.self.any.e_state"] = 0x00a2,
["l2_rqsts.self.any.i_state"] = 0x009f,
["l2_rqsts.self.any.m_state"] = 0x00a6,
["l2_rqsts.self.any.s_state"] = 0x00a0,
["l2_rqsts.self.any.mesi"] = 0x00ad,
["l2_rqsts.self.demand.e_state"] = 0x0072,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.m_state"] = 0x0076,
["l2_rqsts.self.demand.s_state"] = 0x0070,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_rqsts.self.prefetch.e_state"] = 0x0082,
["l2_rqsts.self.prefetch.i_state"] = 0x007f,
["l2_rqsts.self.prefetch.m_state"] = 0x0086,
["l2_rqsts.self.prefetch.s_state"] = 0x0080,
["l2_rqsts.self.prefetch.mesi"] = 0x008d,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_reject_busq.self.any.e_state"] = 0x00a4,
["l2_reject_busq.self.any.i_state"] = 0x00a1,
["l2_reject_busq.self.any.m_state"] = 0x00a8,
["l2_reject_busq.self.any.s_state"] = 0x00a2,
["l2_reject_busq.self.any.mesi"] = 0x00af,
["l2_reject_busq.self.demand.e_state"] = 0x0074,
["l2_reject_busq.self.demand.i_state"] = 0x0071,
["l2_reject_busq.self.demand.m_state"] = 0x0078,
["l2_reject_busq.self.demand.s_state"] = 0x0072,
["l2_reject_busq.self.demand.mesi"] = 0x007f,
["l2_reject_busq.self.prefetch.e_state"] = 0x0084,
["l2_reject_busq.self.prefetch.i_state"] = 0x0081,
["l2_reject_busq.self.prefetch.m_state"] = 0x0088,
["l2_reject_busq.self.prefetch.s_state"] = 0x0082,
["l2_reject_busq.self.prefetch.mesi"] = 0x008f,
["l2_no_req.self"] = 0x0072,
["eist_trans"] = 0x003a,
["thermal_trip"] = 0x00fb,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.bus"] = 0x003d,
["cpu_clk_unhalted.core"] = 0x000a,
["cpu_clk_unhalted.ref"] = 0x000a,
["l1d_cache.ld"] = 0x00e1,
["l1d_cache.st"] = 0x00e2,
["l1d_cache.all_ref"] = 0x00c3,
["l1d_cache.all_cache_ref"] = 0x00e3,
["l1d_cache.repl"] = 0x0048,
["l1d_cache.replm"] = 0x0088,
["l1d_cache.evict"] = 0x0050,
["bus_request_outstanding.all_agents"] = 0x0140,
["bus_request_outstanding.self"] = 0x00a0,
["bus_bnr_drv.all_agents"] = 0x0081,
["bus_bnr_drv.this_agent"] = 0x0061,
["bus_drdy_clocks.all_agents"] = 0x0082,
["bus_drdy_clocks.this_agent"] = 0x0062,
["bus_lock_clocks.all_agents"] = 0x0143,
["bus_lock_clocks.self"] = 0x00a3,
["bus_data_rcv.self"] = 0x00a4,
["bus_trans_brd.all_agents"] = 0x0145,
["bus_trans_brd.self"] = 0x00a5,
["bus_trans_rfo.all_agents"] = 0x0146,
["bus_trans_rfo.self"] = 0x00a6,
["bus_trans_wb.all_agents"] = 0x0147,
["bus_trans_wb.self"] = 0x00a7,
["bus_trans_ifetch.all_agents"] = 0x0148,
["bus_trans_ifetch.self"] = 0x00a8,
["bus_trans_inval.all_agents"] = 0x0149,
["bus_trans_inval.self"] = 0x00a9,
["bus_trans_pwr.all_agents"] = 0x014a,
["bus_trans_pwr.self"] = 0x00aa,
["bus_trans_p.all_agents"] = 0x014b,
["bus_trans_p.self"] = 0x00ab,
["bus_trans_io.all_agents"] = 0x014c,
["bus_trans_io.self"] = 0x00ac,
["bus_trans_def.all_agents"] = 0x014d,
["bus_trans_def.self"] = 0x00ad,
["bus_trans_burst.all_agents"] = 0x014e,
["bus_trans_burst.self"] = 0x00ae,
["bus_trans_mem.all_agents"] = 0x014f,
["bus_trans_mem.self"] = 0x00af,
["bus_trans_any.all_agents"] = 0x0150,
["bus_trans_any.self"] = 0x00b0,
["ext_snoop.this_agent.any"] = 0x0082,
["ext_snoop.this_agent.clean"] = 0x0078,
["ext_snoop.this_agent.hit"] = 0x0079,
["ext_snoop.this_agent.hitm"] = 0x007f,
["ext_snoop.all_agents.any"] = 0x00a2,
["ext_snoop.all_agents.clean"] = 0x0098,
["ext_snoop.all_agents.hit"] = 0x0099,
["ext_snoop.all_agents.hitm"] = 0x009f,
["bus_hit_drv.all_agents"] = 0x009a,
["bus_hit_drv.this_agent"] = 0x007a,
["bus_hitm_drv.all_agents"] = 0x009b,
["bus_hitm_drv.this_agent"] = 0x007b,
["busq_empty.self"] = 0x00bd,
["snoop_stall_drv.all_agents"] = 0x015e,
["snoop_stall_drv.self"] = 0x00be,
["bus_io_wait.self"] = 0x00bf,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["itlb.hit"] = 0x0083,
["itlb.flush"] = 0x0086,
["itlb.misses"] = 0x0084,
["cycles_icache_mem_stalled.icache_mem_stalled"] = 0x0087,
["decode_stall.pfb_empty"] = 0x0088,
["decode_stall.iq_full"] = 0x0089,
["br_inst_type_retired.cond"] = 0x0089,
["br_inst_type_retired.uncond"] = 0x008a,
["br_inst_type_retired.ind"] = 0x008c,
["br_inst_type_retired.ret"] = 0x0090,
["br_inst_type_retired.dir_call"] = 0x0098,
["br_inst_type_retired.ind_call"] = 0x00a8,
["br_inst_type_retired.cond_taken"] = 0x00c9,
["br_missp_type_retired.cond"] = 0x008a,
["br_missp_type_retired.ind"] = 0x008b,
["br_missp_type_retired.return"] = 0x008d,
["br_missp_type_retired.ind_call"] = 0x0091,
["br_missp_type_retired.cond_taken"] = 0x009a,
["macro_insts.non_cisc_decoded"] = 0x00ab,
["macro_insts.cisc_decoded"] = 0x00ac,
["macro_insts.all_decoded"] = 0x00ad,
["simd_uops_exec.s"] = 0x00b0,
["simd_uops_exec.ar"] = 0x0130,
["simd_sat_uop_exec.s"] = 0x00b1,
["simd_sat_uop_exec.ar"] = 0x0131,
["simd_uop_type_exec.mul.s"] = 0x00b4,
["simd_uop_type_exec.mul.ar"] = 0x0134,
["simd_uop_type_exec.shift.s"] = 0x00b5,
["simd_uop_type_exec.shift.ar"] = 0x0135,
["simd_uop_type_exec.pack.s"] = 0x00b7,
["simd_uop_type_exec.pack.ar"] = 0x0137,
["simd_uop_type_exec.unpack.s"] = 0x00bb,
["simd_uop_type_exec.unpack.ar"] = 0x013b,
["simd_uop_type_exec.logical.s"] = 0x00c3,
["simd_uop_type_exec.logical.ar"] = 0x0143,
["simd_uop_type_exec.arithmetic.s"] = 0x00d3,
["simd_uop_type_exec.arithmetic.ar"] = 0x0153,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.any"] = 0x000a,
["uops_retired.any"] = 0x00d2,
["uops_retired.stalled_cycles"] = 0x00d2,
["uops_retired.stalls"] = 0x00d2,
["uops.ms_cycles"] = 0x00aa,
["machine_clears.smc"] = 0x00c4,
["br_inst_retired.any"] = 0x00c4,
["br_inst_retired.pred_not_taken"] = 0x00c5,
["br_inst_retired.mispred_not_taken"] = 0x00c6,
["br_inst_retired.pred_taken"] = 0x00c8,
["br_inst_retired.mispred_taken"] = 0x00cc,
["br_inst_retired.taken"] = 0x00d0,
["br_inst_retired.any1"] = 0x00d3,
["br_inst_retired.mispred"] = 0x00c5,
["cycles_int_masked.cycles_int_masked"] = 0x00c7,
["cycles_int_masked.cycles_int_pending_and_masked"] = 0x00c8,
["simd_inst_retired.packed_single"] = 0x00c8,
["simd_inst_retired.scalar_single"] = 0x00c9,
["simd_inst_retired.scalar_double"] = 0x00cf,
["simd_inst_retired.vector"] = 0x00d7,
["hw_int_rcv"] = 0x00c8,
["simd_comp_inst_retired.packed_single"] = 0x00cb,
["simd_comp_inst_retired.scalar_single"] = 0x00cc,
["simd_comp_inst_retired.scalar_double"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00cc,
["mem_load_retired.l2_miss"] = 0x00cd,
["mem_load_retired.dtlb_miss"] = 0x00cf,
["simd_assist"] = 0x00cd,
["simd_instr_retired"] = 0x00ce,
["simd_sat_instr_retired"] = 0x00cf,
["resource_stalls.div_busy"] = 0x00de,
["br_inst_decoded"] = 0x00e1,
["bogus_br"] = 0x00e5,
["baclears.any"] = 0x00e7,
["reissue.overlap_store"] = 0x0004,
["reissue.overlap_store.ar"] = 0x0084,
},
},
{"GenuineIntel-6-36", "V1", "core",
{
["store_forwards.any"] = 0x0085,
["store_forwards.good"] = 0x0083,
["reissue.any"] = 0x0082,
["reissue.any.ar"] = 0x0102,
["misalign_mem_ref.split"] = 0x0014,
["misalign_mem_ref.ld_split"] = 0x000e,
["misalign_mem_ref.st_split"] = 0x000f,
["misalign_mem_ref.split.ar"] = 0x0094,
["misalign_mem_ref.ld_split.ar"] = 0x008e,
["misalign_mem_ref.st_split.ar"] = 0x008f,
["misalign_mem_ref.rmw_split"] = 0x0091,
["misalign_mem_ref.bubble"] = 0x009c,
["misalign_mem_ref.ld_bubble"] = 0x0096,
["misalign_mem_ref.st_bubble"] = 0x0097,
["misalign_mem_ref.rmw_bubble"] = 0x0099,
["segment_reg_loads.any"] = 0x0086,
["prefetch.prefetcht0"] = 0x0088,
["prefetch.prefetcht1"] = 0x0089,
["prefetch.prefetcht2"] = 0x008b,
["prefetch.sw_l2"] = 0x008d,
["prefetch.prefetchnta"] = 0x008f,
["prefetch.hw_prefetch"] = 0x0017,
["prefetch.software_prefetch"] = 0x0016,
["prefetch.software_prefetch.ar"] = 0x0096,
["data_tlb_misses.dtlb_miss"] = 0x000f,
["data_tlb_misses.dtlb_miss_ld"] = 0x000d,
["data_tlb_misses.l0_dtlb_miss_ld"] = 0x0011,
["data_tlb_misses.dtlb_miss_st"] = 0x000e,
["data_tlb_misses.l0_dtlb_miss_st"] = 0x0012,
["dispatch_blocked.any"] = 0x0029,
["page_walks.walks"] = 0x000f,
["page_walks.cycles"] = 0x000f,
["page_walks.d_side_walks"] = 0x000d,
["page_walks.d_side_cycles"] = 0x000d,
["page_walks.i_side_walks"] = 0x000e,
["page_walks.i_side_cycles"] = 0x000e,
["x87_comp_ops_exe.any.s"] = 0x0011,
["x87_comp_ops_exe.any.ar"] = 0x0091,
["x87_comp_ops_exe.fxch.s"] = 0x0012,
["x87_comp_ops_exe.fxch.ar"] = 0x0092,
["fp_assist.s"] = 0x0012,
["fp_assist.ar"] = 0x0092,
["mul.s"] = 0x0013,
["mul.ar"] = 0x0093,
["div.s"] = 0x0014,
["div.ar"] = 0x0094,
["cycles_div_busy"] = 0x0015,
["l2_ads.self"] = 0x0061,
["l2_dbus_busy.self"] = 0x0062,
["l2_dbus_busy_rd.self"] = 0x0063,
["l2_lines_in.self.any"] = 0x0094,
["l2_lines_in.self.demand"] = 0x0064,
["l2_lines_in.self.prefetch"] = 0x0074,
["l2_m_lines_in.self"] = 0x0065,
["l2_lines_out.self.any"] = 0x0096,
["l2_lines_out.self.demand"] = 0x0066,
["l2_lines_out.self.prefetch"] = 0x0076,
["l2_m_lines_out.self.any"] = 0x0097,
["l2_m_lines_out.self.demand"] = 0x0067,
["l2_m_lines_out.self.prefetch"] = 0x0077,
["l2_ifetch.self.e_state"] = 0x006c,
["l2_ifetch.self.i_state"] = 0x0069,
["l2_ifetch.self.m_state"] = 0x0070,
["l2_ifetch.self.s_state"] = 0x006a,
["l2_ifetch.self.mesi"] = 0x0077,
["l2_ld.self.any.e_state"] = 0x009d,
["l2_ld.self.any.i_state"] = 0x009a,
["l2_ld.self.any.m_state"] = 0x00a1,
["l2_ld.self.any.s_state"] = 0x009b,
["l2_ld.self.any.mesi"] = 0x00a8,
["l2_ld.self.demand.e_state"] = 0x006d,
["l2_ld.self.demand.i_state"] = 0x006a,
["l2_ld.self.demand.m_state"] = 0x0071,
["l2_ld.self.demand.s_state"] = 0x006b,
["l2_ld.self.demand.mesi"] = 0x0078,
["l2_ld.self.prefetch.e_state"] = 0x007d,
["l2_ld.self.prefetch.i_state"] = 0x007a,
["l2_ld.self.prefetch.m_state"] = 0x0081,
["l2_ld.self.prefetch.s_state"] = 0x007b,
["l2_ld.self.prefetch.mesi"] = 0x0088,
["l2_st.self.e_state"] = 0x006e,
["l2_st.self.i_state"] = 0x006b,
["l2_st.self.m_state"] = 0x0072,
["l2_st.self.s_state"] = 0x006c,
["l2_st.self.mesi"] = 0x0079,
["l2_lock.self.e_state"] = 0x006f,
["l2_lock.self.i_state"] = 0x006c,
["l2_lock.self.m_state"] = 0x0073,
["l2_lock.self.s_state"] = 0x006d,
["l2_lock.self.mesi"] = 0x007a,
["l2_data_rqsts.self.e_state"] = 0x0070,
["l2_data_rqsts.self.i_state"] = 0x006d,
["l2_data_rqsts.self.m_state"] = 0x0074,
["l2_data_rqsts.self.s_state"] = 0x006e,
["l2_data_rqsts.self.mesi"] = 0x007b,
["l2_ld_ifetch.self.e_state"] = 0x0071,
["l2_ld_ifetch.self.i_state"] = 0x006e,
["l2_ld_ifetch.self.m_state"] = 0x0075,
["l2_ld_ifetch.self.s_state"] = 0x006f,
["l2_ld_ifetch.self.mesi"] = 0x007c,
["l2_rqsts.self.any.e_state"] = 0x00a2,
["l2_rqsts.self.any.i_state"] = 0x009f,
["l2_rqsts.self.any.m_state"] = 0x00a6,
["l2_rqsts.self.any.s_state"] = 0x00a0,
["l2_rqsts.self.any.mesi"] = 0x00ad,
["l2_rqsts.self.demand.e_state"] = 0x0072,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.m_state"] = 0x0076,
["l2_rqsts.self.demand.s_state"] = 0x0070,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_rqsts.self.prefetch.e_state"] = 0x0082,
["l2_rqsts.self.prefetch.i_state"] = 0x007f,
["l2_rqsts.self.prefetch.m_state"] = 0x0086,
["l2_rqsts.self.prefetch.s_state"] = 0x0080,
["l2_rqsts.self.prefetch.mesi"] = 0x008d,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_reject_busq.self.any.e_state"] = 0x00a4,
["l2_reject_busq.self.any.i_state"] = 0x00a1,
["l2_reject_busq.self.any.m_state"] = 0x00a8,
["l2_reject_busq.self.any.s_state"] = 0x00a2,
["l2_reject_busq.self.any.mesi"] = 0x00af,
["l2_reject_busq.self.demand.e_state"] = 0x0074,
["l2_reject_busq.self.demand.i_state"] = 0x0071,
["l2_reject_busq.self.demand.m_state"] = 0x0078,
["l2_reject_busq.self.demand.s_state"] = 0x0072,
["l2_reject_busq.self.demand.mesi"] = 0x007f,
["l2_reject_busq.self.prefetch.e_state"] = 0x0084,
["l2_reject_busq.self.prefetch.i_state"] = 0x0081,
["l2_reject_busq.self.prefetch.m_state"] = 0x0088,
["l2_reject_busq.self.prefetch.s_state"] = 0x0082,
["l2_reject_busq.self.prefetch.mesi"] = 0x008f,
["l2_no_req.self"] = 0x0072,
["eist_trans"] = 0x003a,
["thermal_trip"] = 0x00fb,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.bus"] = 0x003d,
["cpu_clk_unhalted.core"] = 0x000a,
["cpu_clk_unhalted.ref"] = 0x000a,
["l1d_cache.ld"] = 0x00e1,
["l1d_cache.st"] = 0x00e2,
["l1d_cache.all_ref"] = 0x00c3,
["l1d_cache.all_cache_ref"] = 0x00e3,
["l1d_cache.repl"] = 0x0048,
["l1d_cache.replm"] = 0x0088,
["l1d_cache.evict"] = 0x0050,
["bus_request_outstanding.all_agents"] = 0x0140,
["bus_request_outstanding.self"] = 0x00a0,
["bus_bnr_drv.all_agents"] = 0x0081,
["bus_bnr_drv.this_agent"] = 0x0061,
["bus_drdy_clocks.all_agents"] = 0x0082,
["bus_drdy_clocks.this_agent"] = 0x0062,
["bus_lock_clocks.all_agents"] = 0x0143,
["bus_lock_clocks.self"] = 0x00a3,
["bus_data_rcv.self"] = 0x00a4,
["bus_trans_brd.all_agents"] = 0x0145,
["bus_trans_brd.self"] = 0x00a5,
["bus_trans_rfo.all_agents"] = 0x0146,
["bus_trans_rfo.self"] = 0x00a6,
["bus_trans_wb.all_agents"] = 0x0147,
["bus_trans_wb.self"] = 0x00a7,
["bus_trans_ifetch.all_agents"] = 0x0148,
["bus_trans_ifetch.self"] = 0x00a8,
["bus_trans_inval.all_agents"] = 0x0149,
["bus_trans_inval.self"] = 0x00a9,
["bus_trans_pwr.all_agents"] = 0x014a,
["bus_trans_pwr.self"] = 0x00aa,
["bus_trans_p.all_agents"] = 0x014b,
["bus_trans_p.self"] = 0x00ab,
["bus_trans_io.all_agents"] = 0x014c,
["bus_trans_io.self"] = 0x00ac,
["bus_trans_def.all_agents"] = 0x014d,
["bus_trans_def.self"] = 0x00ad,
["bus_trans_burst.all_agents"] = 0x014e,
["bus_trans_burst.self"] = 0x00ae,
["bus_trans_mem.all_agents"] = 0x014f,
["bus_trans_mem.self"] = 0x00af,
["bus_trans_any.all_agents"] = 0x0150,
["bus_trans_any.self"] = 0x00b0,
["ext_snoop.this_agent.any"] = 0x0082,
["ext_snoop.this_agent.clean"] = 0x0078,
["ext_snoop.this_agent.hit"] = 0x0079,
["ext_snoop.this_agent.hitm"] = 0x007f,
["ext_snoop.all_agents.any"] = 0x00a2,
["ext_snoop.all_agents.clean"] = 0x0098,
["ext_snoop.all_agents.hit"] = 0x0099,
["ext_snoop.all_agents.hitm"] = 0x009f,
["bus_hit_drv.all_agents"] = 0x009a,
["bus_hit_drv.this_agent"] = 0x007a,
["bus_hitm_drv.all_agents"] = 0x009b,
["bus_hitm_drv.this_agent"] = 0x007b,
["busq_empty.self"] = 0x00bd,
["snoop_stall_drv.all_agents"] = 0x015e,
["snoop_stall_drv.self"] = 0x00be,
["bus_io_wait.self"] = 0x00bf,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["itlb.hit"] = 0x0083,
["itlb.flush"] = 0x0086,
["itlb.misses"] = 0x0084,
["cycles_icache_mem_stalled.icache_mem_stalled"] = 0x0087,
["decode_stall.pfb_empty"] = 0x0088,
["decode_stall.iq_full"] = 0x0089,
["br_inst_type_retired.cond"] = 0x0089,
["br_inst_type_retired.uncond"] = 0x008a,
["br_inst_type_retired.ind"] = 0x008c,
["br_inst_type_retired.ret"] = 0x0090,
["br_inst_type_retired.dir_call"] = 0x0098,
["br_inst_type_retired.ind_call"] = 0x00a8,
["br_inst_type_retired.cond_taken"] = 0x00c9,
["br_missp_type_retired.cond"] = 0x008a,
["br_missp_type_retired.ind"] = 0x008b,
["br_missp_type_retired.return"] = 0x008d,
["br_missp_type_retired.ind_call"] = 0x0091,
["br_missp_type_retired.cond_taken"] = 0x009a,
["macro_insts.non_cisc_decoded"] = 0x00ab,
["macro_insts.cisc_decoded"] = 0x00ac,
["macro_insts.all_decoded"] = 0x00ad,
["simd_uops_exec.s"] = 0x00b0,
["simd_uops_exec.ar"] = 0x0130,
["simd_sat_uop_exec.s"] = 0x00b1,
["simd_sat_uop_exec.ar"] = 0x0131,
["simd_uop_type_exec.mul.s"] = 0x00b4,
["simd_uop_type_exec.mul.ar"] = 0x0134,
["simd_uop_type_exec.shift.s"] = 0x00b5,
["simd_uop_type_exec.shift.ar"] = 0x0135,
["simd_uop_type_exec.pack.s"] = 0x00b7,
["simd_uop_type_exec.pack.ar"] = 0x0137,
["simd_uop_type_exec.unpack.s"] = 0x00bb,
["simd_uop_type_exec.unpack.ar"] = 0x013b,
["simd_uop_type_exec.logical.s"] = 0x00c3,
["simd_uop_type_exec.logical.ar"] = 0x0143,
["simd_uop_type_exec.arithmetic.s"] = 0x00d3,
["simd_uop_type_exec.arithmetic.ar"] = 0x0153,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.any"] = 0x000a,
["uops_retired.any"] = 0x00d2,
["uops_retired.stalled_cycles"] = 0x00d2,
["uops_retired.stalls"] = 0x00d2,
["uops.ms_cycles"] = 0x00aa,
["machine_clears.smc"] = 0x00c4,
["br_inst_retired.any"] = 0x00c4,
["br_inst_retired.pred_not_taken"] = 0x00c5,
["br_inst_retired.mispred_not_taken"] = 0x00c6,
["br_inst_retired.pred_taken"] = 0x00c8,
["br_inst_retired.mispred_taken"] = 0x00cc,
["br_inst_retired.taken"] = 0x00d0,
["br_inst_retired.any1"] = 0x00d3,
["br_inst_retired.mispred"] = 0x00c5,
["cycles_int_masked.cycles_int_masked"] = 0x00c7,
["cycles_int_masked.cycles_int_pending_and_masked"] = 0x00c8,
["simd_inst_retired.packed_single"] = 0x00c8,
["simd_inst_retired.scalar_single"] = 0x00c9,
["simd_inst_retired.scalar_double"] = 0x00cf,
["simd_inst_retired.vector"] = 0x00d7,
["hw_int_rcv"] = 0x00c8,
["simd_comp_inst_retired.packed_single"] = 0x00cb,
["simd_comp_inst_retired.scalar_single"] = 0x00cc,
["simd_comp_inst_retired.scalar_double"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00cc,
["mem_load_retired.l2_miss"] = 0x00cd,
["mem_load_retired.dtlb_miss"] = 0x00cf,
["simd_assist"] = 0x00cd,
["simd_instr_retired"] = 0x00ce,
["simd_sat_instr_retired"] = 0x00cf,
["resource_stalls.div_busy"] = 0x00de,
["br_inst_decoded"] = 0x00e1,
["bogus_br"] = 0x00e5,
["baclears.any"] = 0x00e7,
["reissue.overlap_store"] = 0x0004,
["reissue.overlap_store.ar"] = 0x0084,
},
},
{"GenuineIntel-6-35", "V1", "core",
{
["store_forwards.any"] = 0x0085,
["store_forwards.good"] = 0x0083,
["reissue.any"] = 0x0082,
["reissue.any.ar"] = 0x0102,
["misalign_mem_ref.split"] = 0x0014,
["misalign_mem_ref.ld_split"] = 0x000e,
["misalign_mem_ref.st_split"] = 0x000f,
["misalign_mem_ref.split.ar"] = 0x0094,
["misalign_mem_ref.ld_split.ar"] = 0x008e,
["misalign_mem_ref.st_split.ar"] = 0x008f,
["misalign_mem_ref.rmw_split"] = 0x0091,
["misalign_mem_ref.bubble"] = 0x009c,
["misalign_mem_ref.ld_bubble"] = 0x0096,
["misalign_mem_ref.st_bubble"] = 0x0097,
["misalign_mem_ref.rmw_bubble"] = 0x0099,
["segment_reg_loads.any"] = 0x0086,
["prefetch.prefetcht0"] = 0x0088,
["prefetch.prefetcht1"] = 0x0089,
["prefetch.prefetcht2"] = 0x008b,
["prefetch.sw_l2"] = 0x008d,
["prefetch.prefetchnta"] = 0x008f,
["prefetch.hw_prefetch"] = 0x0017,
["prefetch.software_prefetch"] = 0x0016,
["prefetch.software_prefetch.ar"] = 0x0096,
["data_tlb_misses.dtlb_miss"] = 0x000f,
["data_tlb_misses.dtlb_miss_ld"] = 0x000d,
["data_tlb_misses.l0_dtlb_miss_ld"] = 0x0011,
["data_tlb_misses.dtlb_miss_st"] = 0x000e,
["data_tlb_misses.l0_dtlb_miss_st"] = 0x0012,
["dispatch_blocked.any"] = 0x0029,
["page_walks.walks"] = 0x000f,
["page_walks.cycles"] = 0x000f,
["page_walks.d_side_walks"] = 0x000d,
["page_walks.d_side_cycles"] = 0x000d,
["page_walks.i_side_walks"] = 0x000e,
["page_walks.i_side_cycles"] = 0x000e,
["x87_comp_ops_exe.any.s"] = 0x0011,
["x87_comp_ops_exe.any.ar"] = 0x0091,
["x87_comp_ops_exe.fxch.s"] = 0x0012,
["x87_comp_ops_exe.fxch.ar"] = 0x0092,
["fp_assist.s"] = 0x0012,
["fp_assist.ar"] = 0x0092,
["mul.s"] = 0x0013,
["mul.ar"] = 0x0093,
["div.s"] = 0x0014,
["div.ar"] = 0x0094,
["cycles_div_busy"] = 0x0015,
["l2_ads.self"] = 0x0061,
["l2_dbus_busy.self"] = 0x0062,
["l2_dbus_busy_rd.self"] = 0x0063,
["l2_lines_in.self.any"] = 0x0094,
["l2_lines_in.self.demand"] = 0x0064,
["l2_lines_in.self.prefetch"] = 0x0074,
["l2_m_lines_in.self"] = 0x0065,
["l2_lines_out.self.any"] = 0x0096,
["l2_lines_out.self.demand"] = 0x0066,
["l2_lines_out.self.prefetch"] = 0x0076,
["l2_m_lines_out.self.any"] = 0x0097,
["l2_m_lines_out.self.demand"] = 0x0067,
["l2_m_lines_out.self.prefetch"] = 0x0077,
["l2_ifetch.self.e_state"] = 0x006c,
["l2_ifetch.self.i_state"] = 0x0069,
["l2_ifetch.self.m_state"] = 0x0070,
["l2_ifetch.self.s_state"] = 0x006a,
["l2_ifetch.self.mesi"] = 0x0077,
["l2_ld.self.any.e_state"] = 0x009d,
["l2_ld.self.any.i_state"] = 0x009a,
["l2_ld.self.any.m_state"] = 0x00a1,
["l2_ld.self.any.s_state"] = 0x009b,
["l2_ld.self.any.mesi"] = 0x00a8,
["l2_ld.self.demand.e_state"] = 0x006d,
["l2_ld.self.demand.i_state"] = 0x006a,
["l2_ld.self.demand.m_state"] = 0x0071,
["l2_ld.self.demand.s_state"] = 0x006b,
["l2_ld.self.demand.mesi"] = 0x0078,
["l2_ld.self.prefetch.e_state"] = 0x007d,
["l2_ld.self.prefetch.i_state"] = 0x007a,
["l2_ld.self.prefetch.m_state"] = 0x0081,
["l2_ld.self.prefetch.s_state"] = 0x007b,
["l2_ld.self.prefetch.mesi"] = 0x0088,
["l2_st.self.e_state"] = 0x006e,
["l2_st.self.i_state"] = 0x006b,
["l2_st.self.m_state"] = 0x0072,
["l2_st.self.s_state"] = 0x006c,
["l2_st.self.mesi"] = 0x0079,
["l2_lock.self.e_state"] = 0x006f,
["l2_lock.self.i_state"] = 0x006c,
["l2_lock.self.m_state"] = 0x0073,
["l2_lock.self.s_state"] = 0x006d,
["l2_lock.self.mesi"] = 0x007a,
["l2_data_rqsts.self.e_state"] = 0x0070,
["l2_data_rqsts.self.i_state"] = 0x006d,
["l2_data_rqsts.self.m_state"] = 0x0074,
["l2_data_rqsts.self.s_state"] = 0x006e,
["l2_data_rqsts.self.mesi"] = 0x007b,
["l2_ld_ifetch.self.e_state"] = 0x0071,
["l2_ld_ifetch.self.i_state"] = 0x006e,
["l2_ld_ifetch.self.m_state"] = 0x0075,
["l2_ld_ifetch.self.s_state"] = 0x006f,
["l2_ld_ifetch.self.mesi"] = 0x007c,
["l2_rqsts.self.any.e_state"] = 0x00a2,
["l2_rqsts.self.any.i_state"] = 0x009f,
["l2_rqsts.self.any.m_state"] = 0x00a6,
["l2_rqsts.self.any.s_state"] = 0x00a0,
["l2_rqsts.self.any.mesi"] = 0x00ad,
["l2_rqsts.self.demand.e_state"] = 0x0072,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.m_state"] = 0x0076,
["l2_rqsts.self.demand.s_state"] = 0x0070,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_rqsts.self.prefetch.e_state"] = 0x0082,
["l2_rqsts.self.prefetch.i_state"] = 0x007f,
["l2_rqsts.self.prefetch.m_state"] = 0x0086,
["l2_rqsts.self.prefetch.s_state"] = 0x0080,
["l2_rqsts.self.prefetch.mesi"] = 0x008d,
["l2_rqsts.self.demand.i_state"] = 0x006f,
["l2_rqsts.self.demand.mesi"] = 0x007d,
["l2_reject_busq.self.any.e_state"] = 0x00a4,
["l2_reject_busq.self.any.i_state"] = 0x00a1,
["l2_reject_busq.self.any.m_state"] = 0x00a8,
["l2_reject_busq.self.any.s_state"] = 0x00a2,
["l2_reject_busq.self.any.mesi"] = 0x00af,
["l2_reject_busq.self.demand.e_state"] = 0x0074,
["l2_reject_busq.self.demand.i_state"] = 0x0071,
["l2_reject_busq.self.demand.m_state"] = 0x0078,
["l2_reject_busq.self.demand.s_state"] = 0x0072,
["l2_reject_busq.self.demand.mesi"] = 0x007f,
["l2_reject_busq.self.prefetch.e_state"] = 0x0084,
["l2_reject_busq.self.prefetch.i_state"] = 0x0081,
["l2_reject_busq.self.prefetch.m_state"] = 0x0088,
["l2_reject_busq.self.prefetch.s_state"] = 0x0082,
["l2_reject_busq.self.prefetch.mesi"] = 0x008f,
["l2_no_req.self"] = 0x0072,
["eist_trans"] = 0x003a,
["thermal_trip"] = 0x00fb,
["cpu_clk_unhalted.core_p"] = 0x003c,
["cpu_clk_unhalted.bus"] = 0x003d,
["cpu_clk_unhalted.core"] = 0x000a,
["cpu_clk_unhalted.ref"] = 0x000a,
["l1d_cache.ld"] = 0x00e1,
["l1d_cache.st"] = 0x00e2,
["l1d_cache.all_ref"] = 0x00c3,
["l1d_cache.all_cache_ref"] = 0x00e3,
["l1d_cache.repl"] = 0x0048,
["l1d_cache.replm"] = 0x0088,
["l1d_cache.evict"] = 0x0050,
["bus_request_outstanding.all_agents"] = 0x0140,
["bus_request_outstanding.self"] = 0x00a0,
["bus_bnr_drv.all_agents"] = 0x0081,
["bus_bnr_drv.this_agent"] = 0x0061,
["bus_drdy_clocks.all_agents"] = 0x0082,
["bus_drdy_clocks.this_agent"] = 0x0062,
["bus_lock_clocks.all_agents"] = 0x0143,
["bus_lock_clocks.self"] = 0x00a3,
["bus_data_rcv.self"] = 0x00a4,
["bus_trans_brd.all_agents"] = 0x0145,
["bus_trans_brd.self"] = 0x00a5,
["bus_trans_rfo.all_agents"] = 0x0146,
["bus_trans_rfo.self"] = 0x00a6,
["bus_trans_wb.all_agents"] = 0x0147,
["bus_trans_wb.self"] = 0x00a7,
["bus_trans_ifetch.all_agents"] = 0x0148,
["bus_trans_ifetch.self"] = 0x00a8,
["bus_trans_inval.all_agents"] = 0x0149,
["bus_trans_inval.self"] = 0x00a9,
["bus_trans_pwr.all_agents"] = 0x014a,
["bus_trans_pwr.self"] = 0x00aa,
["bus_trans_p.all_agents"] = 0x014b,
["bus_trans_p.self"] = 0x00ab,
["bus_trans_io.all_agents"] = 0x014c,
["bus_trans_io.self"] = 0x00ac,
["bus_trans_def.all_agents"] = 0x014d,
["bus_trans_def.self"] = 0x00ad,
["bus_trans_burst.all_agents"] = 0x014e,
["bus_trans_burst.self"] = 0x00ae,
["bus_trans_mem.all_agents"] = 0x014f,
["bus_trans_mem.self"] = 0x00af,
["bus_trans_any.all_agents"] = 0x0150,
["bus_trans_any.self"] = 0x00b0,
["ext_snoop.this_agent.any"] = 0x0082,
["ext_snoop.this_agent.clean"] = 0x0078,
["ext_snoop.this_agent.hit"] = 0x0079,
["ext_snoop.this_agent.hitm"] = 0x007f,
["ext_snoop.all_agents.any"] = 0x00a2,
["ext_snoop.all_agents.clean"] = 0x0098,
["ext_snoop.all_agents.hit"] = 0x0099,
["ext_snoop.all_agents.hitm"] = 0x009f,
["bus_hit_drv.all_agents"] = 0x009a,
["bus_hit_drv.this_agent"] = 0x007a,
["bus_hitm_drv.all_agents"] = 0x009b,
["bus_hitm_drv.this_agent"] = 0x007b,
["busq_empty.self"] = 0x00bd,
["snoop_stall_drv.all_agents"] = 0x015e,
["snoop_stall_drv.self"] = 0x00be,
["bus_io_wait.self"] = 0x00bf,
["icache.accesses"] = 0x0083,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["itlb.hit"] = 0x0083,
["itlb.flush"] = 0x0086,
["itlb.misses"] = 0x0084,
["cycles_icache_mem_stalled.icache_mem_stalled"] = 0x0087,
["decode_stall.pfb_empty"] = 0x0088,
["decode_stall.iq_full"] = 0x0089,
["br_inst_type_retired.cond"] = 0x0089,
["br_inst_type_retired.uncond"] = 0x008a,
["br_inst_type_retired.ind"] = 0x008c,
["br_inst_type_retired.ret"] = 0x0090,
["br_inst_type_retired.dir_call"] = 0x0098,
["br_inst_type_retired.ind_call"] = 0x00a8,
["br_inst_type_retired.cond_taken"] = 0x00c9,
["br_missp_type_retired.cond"] = 0x008a,
["br_missp_type_retired.ind"] = 0x008b,
["br_missp_type_retired.return"] = 0x008d,
["br_missp_type_retired.ind_call"] = 0x0091,
["br_missp_type_retired.cond_taken"] = 0x009a,
["macro_insts.non_cisc_decoded"] = 0x00ab,
["macro_insts.cisc_decoded"] = 0x00ac,
["macro_insts.all_decoded"] = 0x00ad,
["simd_uops_exec.s"] = 0x00b0,
["simd_uops_exec.ar"] = 0x0130,
["simd_sat_uop_exec.s"] = 0x00b1,
["simd_sat_uop_exec.ar"] = 0x0131,
["simd_uop_type_exec.mul.s"] = 0x00b4,
["simd_uop_type_exec.mul.ar"] = 0x0134,
["simd_uop_type_exec.shift.s"] = 0x00b5,
["simd_uop_type_exec.shift.ar"] = 0x0135,
["simd_uop_type_exec.pack.s"] = 0x00b7,
["simd_uop_type_exec.pack.ar"] = 0x0137,
["simd_uop_type_exec.unpack.s"] = 0x00bb,
["simd_uop_type_exec.unpack.ar"] = 0x013b,
["simd_uop_type_exec.logical.s"] = 0x00c3,
["simd_uop_type_exec.logical.ar"] = 0x0143,
["simd_uop_type_exec.arithmetic.s"] = 0x00d3,
["simd_uop_type_exec.arithmetic.ar"] = 0x0153,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.any"] = 0x000a,
["uops_retired.any"] = 0x00d2,
["uops_retired.stalled_cycles"] = 0x00d2,
["uops_retired.stalls"] = 0x00d2,
["uops.ms_cycles"] = 0x00aa,
["machine_clears.smc"] = 0x00c4,
["br_inst_retired.any"] = 0x00c4,
["br_inst_retired.pred_not_taken"] = 0x00c5,
["br_inst_retired.mispred_not_taken"] = 0x00c6,
["br_inst_retired.pred_taken"] = 0x00c8,
["br_inst_retired.mispred_taken"] = 0x00cc,
["br_inst_retired.taken"] = 0x00d0,
["br_inst_retired.any1"] = 0x00d3,
["br_inst_retired.mispred"] = 0x00c5,
["cycles_int_masked.cycles_int_masked"] = 0x00c7,
["cycles_int_masked.cycles_int_pending_and_masked"] = 0x00c8,
["simd_inst_retired.packed_single"] = 0x00c8,
["simd_inst_retired.scalar_single"] = 0x00c9,
["simd_inst_retired.scalar_double"] = 0x00cf,
["simd_inst_retired.vector"] = 0x00d7,
["hw_int_rcv"] = 0x00c8,
["simd_comp_inst_retired.packed_single"] = 0x00cb,
["simd_comp_inst_retired.scalar_single"] = 0x00cc,
["simd_comp_inst_retired.scalar_double"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00cc,
["mem_load_retired.l2_miss"] = 0x00cd,
["mem_load_retired.dtlb_miss"] = 0x00cf,
["simd_assist"] = 0x00cd,
["simd_instr_retired"] = 0x00ce,
["simd_sat_instr_retired"] = 0x00cf,
["resource_stalls.div_busy"] = 0x00de,
["br_inst_decoded"] = 0x00e1,
["bogus_br"] = 0x00e5,
["baclears.any"] = 0x00e7,
["reissue.overlap_store"] = 0x0004,
["reissue.overlap_store.ar"] = 0x0084,
},
},
{"GenuineIntel-6-4E", "V11", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["icache_16b.ifdata_stall"] = 0x0084,
["icache_64b.iftag_hit"] = 0x0084,
["icache_64b.iftag_miss"] = 0x0085,
["icache_64b.iftag_stall"] = 0x0087,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["baclears.any"] = 0x00e7,
["itlb.itlb_flush"] = 0x00af,
["lsd.uops"] = 0x00a9,
["ild_stall.lcp"] = 0x0088,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["int_misc.recovery_cycles"] = 0x000e,
["int_misc.clear_resteer_cycles"] = 0x008d,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.sb"] = 0x00aa,
["uops_issued.any"] = 0x000f,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.stall_cycles"] = 0x000f,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["rs_events.empty_end"] = 0x005f,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_mem"] = 0x00d0,
["hle_retired.aborted_timer"] = 0x00d8,
["hle_retired.aborted_unfriendly"] = 0x00e8,
["hle_retired.aborted_memtype"] = 0x0108,
["hle_retired.aborted_events"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_mem"] = 0x00d1,
["rtm_retired.aborted_timer"] = 0x00d9,
["rtm_retired.aborted_unfriendly"] = 0x00e9,
["rtm_retired.aborted_memtype"] = 0x0109,
["rtm_retired.aborted_events"] = 0x0149,
["machine_clears.count"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["hw_interrupts.received"] = 0x00cc,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.near_taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_arith_inst_retired.scalar_double"] = 0x00c8,
["fp_arith_inst_retired.scalar_single"] = 0x00c9,
["fp_arith_inst_retired.128b_packed_double"] = 0x00cb,
["fp_arith_inst_retired.128b_packed_single"] = 0x00cf,
["fp_arith_inst_retired.256b_packed_double"] = 0x00d7,
["fp_arith_inst_retired.256b_packed_single"] = 0x00e7,
["fp_assist.any"] = 0x00e8,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_inst_retired.stlb_miss_loads"] = 0x00e1,
["mem_inst_retired.stlb_miss_stores"] = 0x00e2,
["mem_inst_retired.lock_loads"] = 0x00f1,
["mem_inst_retired.split_loads"] = 0x0111,
["mem_inst_retired.split_stores"] = 0x0112,
["mem_inst_retired.all_loads"] = 0x0151,
["mem_inst_retired.all_stores"] = 0x0152,
["mem_load_retired.l1_hit"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00d3,
["mem_load_retired.l3_hit"] = 0x00d5,
["mem_load_retired.l1_miss"] = 0x00d9,
["mem_load_retired.l2_miss"] = 0x00e1,
["mem_load_retired.l3_miss"] = 0x00f1,
["mem_load_retired.fb_hit"] = 0x0111,
["mem_load_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_l3_hit_retired.xsnp_none"] = 0x00da,
["frontend_retired.dsb_miss"] = 0x00c7,
["frontend_retired.l1i_miss"] = 0x00c7,
["frontend_retired.l2_miss"] = 0x00c7,
["frontend_retired.itlb_miss"] = 0x00c7,
["frontend_retired.stlb_miss"] = 0x00c7,
["frontend_retired.latency_ge_2"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_2"] = 0x00c7,
["frontend_retired.latency_ge_4"] = 0x00c7,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.x87"] = 0x00c1,
["uops_executed.stall_cycles"] = 0x00b2,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["exe_activity.exe_bound_0_ports"] = 0x00a7,
["exe_activity.1_ports_util"] = 0x00a8,
["exe_activity.2_ports_util"] = 0x00aa,
["exe_activity.3_ports_util"] = 0x00ae,
["exe_activity.4_ports_util"] = 0x00b6,
["exe_activity.bound_on_stores"] = 0x00e6,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cycle_activity.stalls_total"] = 0x00a7,
["ept.walk_pending"] = 0x005f,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_pending"] = 0x0095,
["itlb_misses.stlb_hit"] = 0x00a5,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_pending"] = 0x0018,
["dtlb_load_misses.stlb_hit"] = 0x0028,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_pending"] = 0x0059,
["dtlb_store_misses.stlb_hit"] = 0x0069,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["load_hit_pre.sw_pf"] = 0x004d,
["lock_cycles.cache_lock_duration"] = 0x0065,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["ld_blocks_partial.address_alias"] = 0x0008,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["offcore_requests.l3_miss_demand_data_rd"] = 0x00c0,
["offcore_requests.all_requests"] = 0x0130,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.l3_miss_demand_data_rd"] = 0x0070,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.cycles_mem_any"] = 0x00b3,
["cycle_activity.stalls_mem_any"] = 0x00b7,
["l2_trans.l2_wb"] = 0x0130,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["offcore_response"] = 0x00b8,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_rqsts.pf_miss"] = 0x005c,
["l2_rqsts.pf_hit"] = 0x00fc,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["idq.ms_switches"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_store_misses.walk_completed"] = 0x0057,
["idq.ms_uops"] = 0x00a9,
["l2_lines_in.all"] = 0x00f8,
["offcore_requests_outstanding.cycles_with_demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["arith.divider_active"] = 0x0015,
["cycle_activity.cycles_l3_miss"] = 0x00a5,
["cycle_activity.stalls_l3_miss"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["other_assists.any"] = 0x0100,
["offcore_requests_outstanding.cycles_with_l3_miss_demand_data_rd"] = 0x0070,
["offcore_requests_outstanding.l3_miss_demand_data_rd_ge_6"] = 0x0070,
["frontend_retired.latency_ge_8"] = 0x00c7,
["frontend_retired.latency_ge_16"] = 0x00c7,
["frontend_retired.latency_ge_32"] = 0x00c7,
["frontend_retired.latency_ge_64"] = 0x00c7,
["frontend_retired.latency_ge_128"] = 0x00c7,
["frontend_retired.latency_ge_256"] = 0x00c7,
["frontend_retired.latency_ge_512"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_1"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_3"] = 0x00c7,
["dtlb_store_misses.walk_active"] = 0x0059,
["dtlb_load_misses.walk_active"] = 0x0018,
["uops_issued.vector_width_mismatch"] = 0x0010,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x000e,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
},
},
{"GenuineIntel-6-5E", "V11", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["icache_16b.ifdata_stall"] = 0x0084,
["icache_64b.iftag_hit"] = 0x0084,
["icache_64b.iftag_miss"] = 0x0085,
["icache_64b.iftag_stall"] = 0x0087,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["baclears.any"] = 0x00e7,
["itlb.itlb_flush"] = 0x00af,
["lsd.uops"] = 0x00a9,
["ild_stall.lcp"] = 0x0088,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["int_misc.recovery_cycles"] = 0x000e,
["int_misc.clear_resteer_cycles"] = 0x008d,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.sb"] = 0x00aa,
["uops_issued.any"] = 0x000f,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.stall_cycles"] = 0x000f,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["rs_events.empty_end"] = 0x005f,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_mem"] = 0x00d0,
["hle_retired.aborted_timer"] = 0x00d8,
["hle_retired.aborted_unfriendly"] = 0x00e8,
["hle_retired.aborted_memtype"] = 0x0108,
["hle_retired.aborted_events"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_mem"] = 0x00d1,
["rtm_retired.aborted_timer"] = 0x00d9,
["rtm_retired.aborted_unfriendly"] = 0x00e9,
["rtm_retired.aborted_memtype"] = 0x0109,
["rtm_retired.aborted_events"] = 0x0149,
["machine_clears.count"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["hw_interrupts.received"] = 0x00cc,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.near_taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_arith_inst_retired.scalar_double"] = 0x00c8,
["fp_arith_inst_retired.scalar_single"] = 0x00c9,
["fp_arith_inst_retired.128b_packed_double"] = 0x00cb,
["fp_arith_inst_retired.128b_packed_single"] = 0x00cf,
["fp_arith_inst_retired.256b_packed_double"] = 0x00d7,
["fp_arith_inst_retired.256b_packed_single"] = 0x00e7,
["fp_assist.any"] = 0x00e8,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_inst_retired.stlb_miss_loads"] = 0x00e1,
["mem_inst_retired.stlb_miss_stores"] = 0x00e2,
["mem_inst_retired.lock_loads"] = 0x00f1,
["mem_inst_retired.split_loads"] = 0x0111,
["mem_inst_retired.split_stores"] = 0x0112,
["mem_inst_retired.all_loads"] = 0x0151,
["mem_inst_retired.all_stores"] = 0x0152,
["mem_load_retired.l1_hit"] = 0x00d2,
["mem_load_retired.l2_hit"] = 0x00d3,
["mem_load_retired.l3_hit"] = 0x00d5,
["mem_load_retired.l1_miss"] = 0x00d9,
["mem_load_retired.l2_miss"] = 0x00e1,
["mem_load_retired.l3_miss"] = 0x00f1,
["mem_load_retired.fb_hit"] = 0x0111,
["mem_load_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_l3_hit_retired.xsnp_none"] = 0x00da,
["frontend_retired.dsb_miss"] = 0x00c7,
["frontend_retired.l1i_miss"] = 0x00c7,
["frontend_retired.l2_miss"] = 0x00c7,
["frontend_retired.itlb_miss"] = 0x00c7,
["frontend_retired.stlb_miss"] = 0x00c7,
["frontend_retired.latency_ge_2"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_2"] = 0x00c7,
["frontend_retired.latency_ge_4"] = 0x00c7,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.x87"] = 0x00c1,
["uops_executed.stall_cycles"] = 0x00b2,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["exe_activity.exe_bound_0_ports"] = 0x00a7,
["exe_activity.1_ports_util"] = 0x00a8,
["exe_activity.2_ports_util"] = 0x00aa,
["exe_activity.3_ports_util"] = 0x00ae,
["exe_activity.4_ports_util"] = 0x00b6,
["exe_activity.bound_on_stores"] = 0x00e6,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cycle_activity.stalls_total"] = 0x00a7,
["ept.walk_pending"] = 0x005f,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_pending"] = 0x0095,
["itlb_misses.stlb_hit"] = 0x00a5,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_pending"] = 0x0018,
["dtlb_load_misses.stlb_hit"] = 0x0028,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_pending"] = 0x0059,
["dtlb_store_misses.stlb_hit"] = 0x0069,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["load_hit_pre.sw_pf"] = 0x004d,
["lock_cycles.cache_lock_duration"] = 0x0065,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["ld_blocks_partial.address_alias"] = 0x0008,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["offcore_requests.l3_miss_demand_data_rd"] = 0x00c0,
["offcore_requests.all_requests"] = 0x0130,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.l3_miss_demand_data_rd"] = 0x0070,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.cycles_mem_any"] = 0x00b3,
["cycle_activity.stalls_mem_any"] = 0x00b7,
["l2_trans.l2_wb"] = 0x0130,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["offcore_response"] = 0x00b8,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_rqsts.pf_miss"] = 0x005c,
["l2_rqsts.pf_hit"] = 0x00fc,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["idq.ms_switches"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_store_misses.walk_completed"] = 0x0057,
["idq.ms_uops"] = 0x00a9,
["l2_lines_in.all"] = 0x00f8,
["offcore_requests_outstanding.cycles_with_demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["arith.divider_active"] = 0x0015,
["cycle_activity.cycles_l3_miss"] = 0x00a5,
["cycle_activity.stalls_l3_miss"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["other_assists.any"] = 0x0100,
["offcore_requests_outstanding.cycles_with_l3_miss_demand_data_rd"] = 0x0070,
["offcore_requests_outstanding.l3_miss_demand_data_rd_ge_6"] = 0x0070,
["frontend_retired.latency_ge_8"] = 0x00c7,
["frontend_retired.latency_ge_16"] = 0x00c7,
["frontend_retired.latency_ge_32"] = 0x00c7,
["frontend_retired.latency_ge_64"] = 0x00c7,
["frontend_retired.latency_ge_128"] = 0x00c7,
["frontend_retired.latency_ge_256"] = 0x00c7,
["frontend_retired.latency_ge_512"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_1"] = 0x00c7,
["frontend_retired.latency_ge_2_bubbles_ge_3"] = 0x00c7,
["dtlb_store_misses.walk_active"] = 0x0059,
["dtlb_load_misses.walk_active"] = 0x0018,
["uops_issued.vector_width_mismatch"] = 0x0010,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x000e,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
},
},
{"GenuineIntel-6-2A", "V12", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.taken_direct_near_call"] = 0x0119,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_direct_near_call"] = 0x0159,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["itlb.itlb_flush"] = 0x00af,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["lsd.uops"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["insts_written_to_iq.insts"] = 0x0018,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["dsb2mite_switches.count"] = 0x00ac,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["dsb_fill.other_cancel"] = 0x00ae,
["dsb_fill.exceed_dsb_lines"] = 0x00b4,
["int_misc.rat_stall_cycles"] = 0x004d,
["partial_rat_stalls.flags_merge_uop"] = 0x0079,
["partial_rat_stalls.slow_lea_window"] = 0x0099,
["partial_rat_stalls.mul_single_uop"] = 0x00d9,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.lb"] = 0x00a4,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["resource_stalls2.bob_full"] = 0x009b,
["uops_issued.any"] = 0x000f,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["rs_events.empty_cycles"] = 0x005f,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring0_trans"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["inst_retired.any_p"] = 0x00c0,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.near_call"] = 0x00c7,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.not_taken"] = 0x00d5,
["br_misp_retired.taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["other_assists.itlb_miss_retired"] = 0x00c3,
["other_assists.avx_store"] = 0x00c9,
["other_assists.avx_to_sse"] = 0x00d1,
["other_assists.sse_to_avx"] = 0x00e1,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_trans_retired.precise_store"] = 0x00cf,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.llc_hit"] = 0x00d5,
["mem_load_uops_retired.llc_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_llc_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_llc_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_llc_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_llc_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_misc_retired.llc_miss"] = 0x00d6,
["arith.fpu_div_active"] = 0x0015,
["arith.fpu_div"] = 0x0015,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_comp_ops_exe.sse_packed_double"] = 0x0020,
["fp_comp_ops_exe.sse_scalar_single"] = 0x0030,
["fp_comp_ops_exe.sse_packed_single"] = 0x0050,
["fp_comp_ops_exe.sse_scalar_double"] = 0x0090,
["simd_fp_256.packed_single"] = 0x0012,
["simd_fp_256.packed_double"] = 0x0013,
["uops_dispatched.thread"] = 0x00b2,
["uops_dispatched.core"] = 0x00b3,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_4"] = 0x00e1,
["uops_dispatched_port.port_5"] = 0x0121,
["cycle_activity.cycles_no_dispatch"] = 0x00a7,
["cycle_activity.cycles_l1d_pending"] = 0x00a5,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.stalls_l1d_pending"] = 0x00a9,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["ept.walk_cycles"] = 0x005f,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0089,
["itlb_misses.stlb_hit"] = 0x0095,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_load_misses.walk_duration"] = 0x000c,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x004d,
["dtlb_store_misses.stlb_hit"] = 0x0059,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["page_walks.llc_miss"] = 0x00bf,
["l1d.replacement"] = 0x0052,
["l1d.allocated_in_m"] = 0x0053,
["l1d.eviction"] = 0x0055,
["l1d.all_m_replacement"] = 0x0059,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["hw_pre_req.dl1_miss"] = 0x0050,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["ld_blocks.data_unknown"] = 0x0004,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["ld_blocks.all_block"] = 0x0013,
["ld_blocks_partial.address_alias"] = 0x0008,
["ld_blocks_partial.all_sta_block"] = 0x000f,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["agu_bypass_cancel.count"] = 0x00b7,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["l2_rqsts.demand_data_rd_hit"] = 0x0025,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.code_rd_hit"] = 0x0034,
["l2_rqsts.code_rd_miss"] = 0x0044,
["l2_rqsts.pf_hit"] = 0x0064,
["l2_rqsts.pf_miss"] = 0x00a4,
["l2_store_lock_rqsts.miss"] = 0x0028,
["l2_store_lock_rqsts.hit_e"] = 0x002b,
["l2_store_lock_rqsts.hit_m"] = 0x002f,
["l2_store_lock_rqsts.all"] = 0x0036,
["l2_l1d_wb_rqsts.miss"] = 0x0029,
["l2_l1d_wb_rqsts.hit_s"] = 0x002a,
["l2_l1d_wb_rqsts.hit_e"] = 0x002c,
["l2_l1d_wb_rqsts.hit_m"] = 0x0030,
["l2_l1d_wb_rqsts.all"] = 0x0037,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.pf_clean"] = 0x00f6,
["l2_lines_out.pf_dirty"] = 0x00fa,
["l2_lines_out.dirty_all"] = 0x00fc,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["sq_misc.split_lock"] = 0x0104,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["br_inst_retired.near_call_r3"] = 0x00c6,
["uops_dispatched_port.port_0_core"] = 0x00a2,
["uops_dispatched_port.port_1_core"] = 0x00a3,
["uops_dispatched_port.port_4_core"] = 0x00e1,
["uops_dispatched_port.port_5_core"] = 0x0121,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["uops_dispatched_port.port_2"] = 0x00ad,
["uops_dispatched_port.port_3"] = 0x00d1,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["uops_dispatched_port.port_2_core"] = 0x00ad,
["uops_dispatched_port.port_3_core"] = 0x00d1,
["inst_retired.prec_dist"] = 0x00c1,
["l2_rqsts.all_demand_data_rd"] = 0x0027,
["l2_rqsts.all_rfo"] = 0x0030,
["l2_rqsts.all_code_rd"] = 0x0054,
["l2_rqsts.all_pf"] = 0x00e4,
["l1d_blocks.bank_conflict_cycles"] = 0x00c4,
["resource_stalls2.all_prf_control"] = 0x006a,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["resource_stalls2.all_fl_empty"] = 0x0067,
["resource_stalls.mem_rs"] = 0x00b0,
["resource_stalls.ooo_rsrc"] = 0x0192,
["resource_stalls2.ooo_rsrc"] = 0x00aa,
["resource_stalls.lb_sb"] = 0x00ac,
["int_misc.recovery_cycles"] = 0x0010,
["partial_rat_stalls.flags_merge_uop_cycles"] = 0x0079,
["idq_uops_not_delivered.cycles_ge_1_uop_deliv.core"] = 0x009d,
["int_misc.recovery_stalls_count"] = 0x0010,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["dsb_fill.all_cancel"] = 0x00b6,
["fp_assist.any"] = 0x00e8,
["baclears.any"] = 0x0105,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.all_branches"] = 0x0188,
["idq.mite_all_uops"] = 0x00b5,
["uops_retired.core_stall_cycles"] = 0x00c3,
["lsd.cycles_4_uops"] = 0x00a9,
["machine_clears.count"] = 0x00c4,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["offcore_requests_outstanding.demand_data_rd_c6"] = 0x0061,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-2A", "V12", "offcore",
{
},
},
{"GenuineIntel-6-2A", "V12", "uncore",
{
},
},
{"GenuineIntel-6-2D", "V18", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.taken_direct_near_call"] = 0x0119,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_direct_near_call"] = 0x0159,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["itlb.itlb_flush"] = 0x00af,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["lsd.uops"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["insts_written_to_iq.insts"] = 0x0018,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["dsb2mite_switches.count"] = 0x00ac,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["dsb_fill.other_cancel"] = 0x00ae,
["dsb_fill.exceed_dsb_lines"] = 0x00b4,
["int_misc.rat_stall_cycles"] = 0x004d,
["partial_rat_stalls.flags_merge_uop"] = 0x0079,
["partial_rat_stalls.slow_lea_window"] = 0x0099,
["partial_rat_stalls.mul_single_uop"] = 0x00d9,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.lb"] = 0x00a4,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["resource_stalls2.bob_full"] = 0x009b,
["uops_issued.any"] = 0x000f,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["rs_events.empty_cycles"] = 0x005f,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring0_trans"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["inst_retired.any_p"] = 0x00c0,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.near_call"] = 0x00c7,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.not_taken"] = 0x00d5,
["br_misp_retired.taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["other_assists.itlb_miss_retired"] = 0x00c3,
["other_assists.avx_store"] = 0x00c9,
["other_assists.avx_to_sse"] = 0x00d1,
["other_assists.sse_to_avx"] = 0x00e1,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_trans_retired.precise_store"] = 0x00cf,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.llc_hit"] = 0x00d5,
["mem_load_uops_retired.llc_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_llc_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_llc_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_llc_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_llc_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_llc_miss_retired.local_dram"] = 0x00d4,
["mem_load_uops_llc_miss_retired.remote_dram"] = 0x00d7,
["arith.fpu_div_active"] = 0x0015,
["arith.fpu_div"] = 0x0015,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_comp_ops_exe.sse_packed_double"] = 0x0020,
["fp_comp_ops_exe.sse_scalar_single"] = 0x0030,
["fp_comp_ops_exe.sse_packed_single"] = 0x0050,
["fp_comp_ops_exe.sse_scalar_double"] = 0x0090,
["simd_fp_256.packed_single"] = 0x0012,
["simd_fp_256.packed_double"] = 0x0013,
["uops_dispatched.thread"] = 0x00b2,
["uops_dispatched.core"] = 0x00b3,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_4"] = 0x00e1,
["uops_dispatched_port.port_5"] = 0x0121,
["cycle_activity.cycles_no_dispatch"] = 0x00a7,
["cycle_activity.cycles_l1d_pending"] = 0x00a5,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.stalls_l1d_pending"] = 0x00a9,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["ept.walk_cycles"] = 0x005f,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0089,
["itlb_misses.stlb_hit"] = 0x0095,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed"] = 0x000a,
["dtlb_load_misses.walk_duration"] = 0x000c,
["dtlb_load_misses.stlb_hit"] = 0x0018,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x004d,
["dtlb_store_misses.stlb_hit"] = 0x0059,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["l1d.replacement"] = 0x0052,
["l1d.allocated_in_m"] = 0x0053,
["l1d.eviction"] = 0x0055,
["l1d.all_m_replacement"] = 0x0059,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["hw_pre_req.dl1_miss"] = 0x0050,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["ld_blocks.data_unknown"] = 0x0004,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["ld_blocks.all_block"] = 0x0013,
["ld_blocks_partial.address_alias"] = 0x0008,
["ld_blocks_partial.all_sta_block"] = 0x000f,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["agu_bypass_cancel.count"] = 0x00b7,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["l2_rqsts.demand_data_rd_hit"] = 0x0025,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.code_rd_hit"] = 0x0034,
["l2_rqsts.code_rd_miss"] = 0x0044,
["l2_rqsts.pf_hit"] = 0x0064,
["l2_rqsts.pf_miss"] = 0x00a4,
["l2_store_lock_rqsts.miss"] = 0x0028,
["l2_store_lock_rqsts.hit_e"] = 0x002b,
["l2_store_lock_rqsts.hit_m"] = 0x002f,
["l2_store_lock_rqsts.all"] = 0x0036,
["l2_l1d_wb_rqsts.miss"] = 0x0029,
["l2_l1d_wb_rqsts.hit_s"] = 0x002a,
["l2_l1d_wb_rqsts.hit_e"] = 0x002c,
["l2_l1d_wb_rqsts.hit_m"] = 0x0030,
["l2_l1d_wb_rqsts.all"] = 0x0037,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.pf_clean"] = 0x00f6,
["l2_lines_out.pf_dirty"] = 0x00fa,
["l2_lines_out.dirty_all"] = 0x00fc,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["sq_misc.split_lock"] = 0x0104,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["br_inst_retired.near_call_r3"] = 0x00c6,
["uops_dispatched_port.port_0_core"] = 0x00a2,
["uops_dispatched_port.port_1_core"] = 0x00a3,
["uops_dispatched_port.port_4_core"] = 0x00e1,
["uops_dispatched_port.port_5_core"] = 0x0121,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["uops_dispatched_port.port_2"] = 0x00ad,
["uops_dispatched_port.port_3"] = 0x00d1,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["uops_dispatched_port.port_2_core"] = 0x00ad,
["uops_dispatched_port.port_3_core"] = 0x00d1,
["inst_retired.prec_dist"] = 0x00c1,
["l2_rqsts.all_demand_data_rd"] = 0x0027,
["l2_rqsts.all_rfo"] = 0x0030,
["l2_rqsts.all_code_rd"] = 0x0054,
["l2_rqsts.all_pf"] = 0x00e4,
["l1d_blocks.bank_conflict_cycles"] = 0x00c4,
["resource_stalls2.all_prf_control"] = 0x006a,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["resource_stalls2.all_fl_empty"] = 0x0067,
["resource_stalls.mem_rs"] = 0x00b0,
["resource_stalls.ooo_rsrc"] = 0x0192,
["resource_stalls2.ooo_rsrc"] = 0x00aa,
["resource_stalls.lb_sb"] = 0x00ac,
["int_misc.recovery_cycles"] = 0x0010,
["partial_rat_stalls.flags_merge_uop_cycles"] = 0x0079,
["idq_uops_not_delivered.cycles_ge_1_uop_deliv.core"] = 0x009d,
["int_misc.recovery_stalls_count"] = 0x0010,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["dsb_fill.all_cancel"] = 0x00b6,
["fp_assist.any"] = 0x00e8,
["baclears.any"] = 0x0105,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.all_branches"] = 0x0188,
["idq.mite_all_uops"] = 0x00b5,
["uops_retired.core_stall_cycles"] = 0x00c3,
["lsd.cycles_4_uops"] = 0x00a9,
["machine_clears.count"] = 0x00c4,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["offcore_requests_outstanding.demand_data_rd_c6"] = 0x0061,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-2D", "V18", "offcore",
{
},
},
{"GenuineIntel-6-2D", "V18", "uncore",
{
},
},
{"GenuineIntel-6-3A", "V15", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.large_page_walk_completed"] = 0x0090,
["int_misc.recovery_cycles"] = 0x0010,
["int_misc.recovery_stalls_count"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_comp_ops_exe.sse_packed_double"] = 0x0020,
["fp_comp_ops_exe.sse_scalar_single"] = 0x0030,
["fp_comp_ops_exe.sse_packed_single"] = 0x0050,
["fp_comp_ops_exe.sse_scalar_double"] = 0x0090,
["simd_fp_256.packed_single"] = 0x0012,
["simd_fp_256.packed_double"] = 0x0013,
["arith.fpu_div_active"] = 0x0015,
["arith.fpu_div"] = 0x0018,
["l2_rqsts.demand_data_rd_hit"] = 0x0025,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.code_rd_hit"] = 0x0034,
["l2_rqsts.code_rd_miss"] = 0x0044,
["l2_rqsts.pf_hit"] = 0x0064,
["l2_rqsts.pf_miss"] = 0x00a4,
["l2_rqsts.all_demand_data_rd"] = 0x0027,
["l2_rqsts.all_rfo"] = 0x0030,
["l2_rqsts.all_code_rd"] = 0x0054,
["l2_rqsts.all_pf"] = 0x00e4,
["l2_store_lock_rqsts.miss"] = 0x0028,
["l2_store_lock_rqsts.hit_m"] = 0x002f,
["l2_store_lock_rqsts.all"] = 0x0036,
["l2_l1d_wb_rqsts.miss"] = 0x0029,
["l2_l1d_wb_rqsts.hit_e"] = 0x002c,
["l2_l1d_wb_rqsts.hit_m"] = 0x0030,
["l2_l1d_wb_rqsts.all"] = 0x0037,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x004d,
["dtlb_store_misses.stlb_hit"] = 0x0059,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["rs_events.empty_cycles"] = 0x005f,
["dtlb_load_misses.stlb_hit"] = 0x0063,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0089,
["itlb_misses.stlb_hit"] = 0x0095,
["itlb_misses.large_page_walk_completed"] = 0x0105,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_4"] = 0x00e1,
["uops_dispatched_port.port_5"] = 0x0121,
["uops_dispatched_port.port_0_core"] = 0x00a2,
["uops_dispatched_port.port_1_core"] = 0x00a3,
["uops_dispatched_port.port_4_core"] = 0x00e1,
["uops_dispatched_port.port_5_core"] = 0x0121,
["uops_dispatched_port.port_2"] = 0x00ad,
["uops_dispatched_port.port_3"] = 0x00d1,
["uops_dispatched_port.port_2_core"] = 0x00ad,
["uops_dispatched_port.port_3_core"] = 0x00d1,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["dsb2mite_switches.count"] = 0x00ac,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["dsb_fill.exceed_dsb_lines"] = 0x00b4,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["page_walks.llc_miss"] = 0x00bf,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_store"] = 0x00c9,
["other_assists.avx_to_sse"] = 0x00d1,
["other_assists.sse_to_avx"] = 0x00e1,
["other_assists.any_wb_assist"] = 0x0141,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.near_taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.precise_store"] = 0x00cf,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.llc_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.llc_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_llc_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_llc_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_llc_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_llc_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_llc_miss_retired.local_dram"] = 0x00d4,
["baclears.any"] = 0x0105,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.pf_clean"] = 0x00f6,
["l2_lines_out.pf_dirty"] = 0x00fa,
["l2_lines_out.dirty_all"] = 0x00fc,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0089,
["dtlb_load_misses.walk_completed"] = 0x008a,
["dtlb_load_misses.walk_duration"] = 0x008c,
["rs_events.empty_end"] = 0x005f,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_4_uops"] = 0x00a9,
["mem_load_uops_llc_miss_retired.local_dram"] = 0x00d4,
["idq.ms_switches"] = 0x00a9,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.cycles_mem_any"] = 0x00a5,
["cycle_activity.stalls_total"] = 0x00a7,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.stalls_mem_any"] = 0x00a9,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-3A", "V15", "offcore",
{
},
},
{"GenuineIntel-6-3A", "V15", "uncore",
{
},
},
{"GenuineIntel-6-3E", "V17", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.demand_ld_walk_completed"] = 0x008a,
["dtlb_load_misses.demand_ld_walk_duration"] = 0x008c,
["dtlb_load_misses.large_page_walk_completed"] = 0x0090,
["int_misc.recovery_cycles"] = 0x0010,
["int_misc.recovery_stalls_count"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["fp_comp_ops_exe.x87"] = 0x0011,
["fp_comp_ops_exe.sse_packed_double"] = 0x0020,
["fp_comp_ops_exe.sse_scalar_single"] = 0x0030,
["fp_comp_ops_exe.sse_packed_single"] = 0x0050,
["fp_comp_ops_exe.sse_scalar_double"] = 0x0090,
["simd_fp_256.packed_single"] = 0x0012,
["simd_fp_256.packed_double"] = 0x0013,
["arith.fpu_div_active"] = 0x0015,
["arith.fpu_div"] = 0x0018,
["l2_rqsts.demand_data_rd_hit"] = 0x0025,
["l2_rqsts.rfo_hit"] = 0x0028,
["l2_rqsts.rfo_miss"] = 0x002c,
["l2_rqsts.code_rd_hit"] = 0x0034,
["l2_rqsts.code_rd_miss"] = 0x0044,
["l2_rqsts.pf_hit"] = 0x0064,
["l2_rqsts.pf_miss"] = 0x00a4,
["l2_rqsts.all_demand_data_rd"] = 0x0027,
["l2_rqsts.all_rfo"] = 0x0030,
["l2_rqsts.all_code_rd"] = 0x0054,
["l2_rqsts.all_pf"] = 0x00e4,
["l2_store_lock_rqsts.miss"] = 0x0028,
["l2_store_lock_rqsts.hit_m"] = 0x002f,
["l2_store_lock_rqsts.all"] = 0x0036,
["l2_l1d_wb_rqsts.miss"] = 0x0029,
["l2_l1d_wb_rqsts.hit_e"] = 0x002c,
["l2_l1d_wb_rqsts.hit_m"] = 0x0030,
["l2_l1d_wb_rqsts.all"] = 0x0037,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x004d,
["dtlb_store_misses.stlb_hit"] = 0x0059,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["rs_events.empty_cycles"] = 0x005f,
["dtlb_load_misses.stlb_hit"] = 0x0063,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.cycles_with_demand_rfo"] = 0x0064,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0089,
["itlb_misses.stlb_hit"] = 0x0095,
["itlb_misses.large_page_walk_completed"] = 0x0105,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_4"] = 0x00e1,
["uops_dispatched_port.port_5"] = 0x0121,
["uops_dispatched_port.port_0_core"] = 0x00a2,
["uops_dispatched_port.port_1_core"] = 0x00a3,
["uops_dispatched_port.port_4_core"] = 0x00e1,
["uops_dispatched_port.port_5_core"] = 0x0121,
["uops_dispatched_port.port_2"] = 0x00ad,
["uops_dispatched_port.port_3"] = 0x00d1,
["uops_dispatched_port.port_2_core"] = 0x00ad,
["uops_dispatched_port.port_3_core"] = 0x00d1,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["lsd.cycles_active"] = 0x00a9,
["dsb2mite_switches.count"] = 0x00ac,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["dsb_fill.exceed_dsb_lines"] = 0x00b4,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_store"] = 0x00c9,
["other_assists.avx_to_sse"] = 0x00d1,
["other_assists.sse_to_avx"] = 0x00e1,
["other_assists.any_wb_assist"] = 0x0141,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.near_taken"] = 0x00e5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.precise_store"] = 0x00cf,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.llc_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.llc_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_llc_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_llc_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_llc_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_llc_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_llc_miss_retired.local_dram"] = 0x00d4,
["mem_load_uops_llc_miss_retired.remote_dram"] = 0x00df,
["mem_load_uops_llc_miss_retired.remote_hitm"] = 0x00e3,
["mem_load_uops_llc_miss_retired.remote_fwd"] = 0x00f3,
["baclears.any"] = 0x0105,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f3,
["l2_lines_out.demand_dirty"] = 0x00f4,
["l2_lines_out.pf_clean"] = 0x00f6,
["l2_lines_out.pf_dirty"] = 0x00fa,
["l2_lines_out.dirty_all"] = 0x00fc,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0089,
["dtlb_load_misses.walk_completed"] = 0x008a,
["dtlb_load_misses.walk_duration"] = 0x008c,
["rs_events.empty_end"] = 0x005f,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_4_uops"] = 0x00a9,
["idq.ms_switches"] = 0x00a9,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.cycles_mem_any"] = 0x00a5,
["cycle_activity.stalls_total"] = 0x00a7,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.stalls_mem_any"] = 0x00a9,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-3E", "V17", "offcore",
{
},
},
{"GenuineIntel-6-3E", "V17", "uncore",
{
},
},
{"GenuineIntel-6-3C", "V20", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_completed_2m_4m"] = 0x000c,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["dtlb_load_misses.stlb_hit_2m"] = 0x0048,
["dtlb_load_misses.pde_cache_miss"] = 0x0088,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["arith.divider_uops"] = 0x0016,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.request_fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_completed_2m_4m"] = 0x004d,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["dtlb_store_misses.stlb_hit_2m"] = 0x0089,
["dtlb_store_misses.pde_cache_miss"] = 0x00c9,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_completed_2m_4m"] = 0x0089,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["itlb_misses.stlb_hit_2m"] = 0x00c5,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.ept_dtlb_l1"] = 0x00fd,
["page_walker_loads.ept_itlb_l1"] = 0x013d,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.ept_dtlb_l2"] = 0x00fe,
["page_walker_loads.ept_itlb_l2"] = 0x013e,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.ept_dtlb_l3"] = 0x0100,
["page_walker_loads.ept_itlb_l3"] = 0x0140,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["page_walker_loads.itlb_memory"] = 0x00e4,
["page_walker_loads.ept_dtlb_memory"] = 0x0104,
["page_walker_loads.ept_itlb_memory"] = 0x0144,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["l2_lines_out.demand_dirty"] = 0x00f8,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["avx_insts.all"] = 0x00cd,
["icache.ifdata_stall"] = 0x0084,
},
},
{"GenuineIntel-6-45", "V20", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_completed_2m_4m"] = 0x000c,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["dtlb_load_misses.stlb_hit_2m"] = 0x0048,
["dtlb_load_misses.pde_cache_miss"] = 0x0088,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["arith.divider_uops"] = 0x0016,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.request_fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_completed_2m_4m"] = 0x004d,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["dtlb_store_misses.stlb_hit_2m"] = 0x0089,
["dtlb_store_misses.pde_cache_miss"] = 0x00c9,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_completed_2m_4m"] = 0x0089,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["itlb_misses.stlb_hit_2m"] = 0x00c5,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.ept_dtlb_l1"] = 0x00fd,
["page_walker_loads.ept_itlb_l1"] = 0x013d,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.ept_dtlb_l2"] = 0x00fe,
["page_walker_loads.ept_itlb_l2"] = 0x013e,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.ept_dtlb_l3"] = 0x0100,
["page_walker_loads.ept_itlb_l3"] = 0x0140,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["page_walker_loads.itlb_memory"] = 0x00e4,
["page_walker_loads.ept_dtlb_memory"] = 0x0104,
["page_walker_loads.ept_itlb_memory"] = 0x0144,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["l2_lines_out.demand_dirty"] = 0x00f8,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["avx_insts.all"] = 0x00cd,
["icache.ifdata_stall"] = 0x0084,
},
},
{"GenuineIntel-6-46", "V20", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_completed_2m_4m"] = 0x000c,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["dtlb_load_misses.stlb_hit_2m"] = 0x0048,
["dtlb_load_misses.pde_cache_miss"] = 0x0088,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["arith.divider_uops"] = 0x0016,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.request_fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_completed_2m_4m"] = 0x004d,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["dtlb_store_misses.stlb_hit_2m"] = 0x0089,
["dtlb_store_misses.pde_cache_miss"] = 0x00c9,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_completed_2m_4m"] = 0x0089,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["itlb_misses.stlb_hit_2m"] = 0x00c5,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.ept_dtlb_l1"] = 0x00fd,
["page_walker_loads.ept_itlb_l1"] = 0x013d,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.ept_dtlb_l2"] = 0x00fe,
["page_walker_loads.ept_itlb_l2"] = 0x013e,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.ept_dtlb_l3"] = 0x0100,
["page_walker_loads.ept_itlb_l3"] = 0x0140,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["page_walker_loads.itlb_memory"] = 0x00e4,
["page_walker_loads.ept_dtlb_memory"] = 0x0104,
["page_walker_loads.ept_itlb_memory"] = 0x0144,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["l2_lines_out.demand_dirty"] = 0x00f8,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["avx_insts.all"] = 0x00cd,
["icache.ifdata_stall"] = 0x0084,
},
},
{"GenuineIntel-6-3C", "V20", "offcore",
{
},
},
{"GenuineIntel-6-45", "V20", "offcore",
{
},
},
{"GenuineIntel-6-46", "V20", "offcore",
{
},
},
{"GenuineIntel-6-3C", "V20", "uncore",
{
},
},
{"GenuineIntel-6-45", "V20", "uncore",
{
},
},
{"GenuineIntel-6-46", "V20", "uncore",
{
},
},
{"GenuineIntel-6-3F", "V14", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_completed_2m_4m"] = 0x000c,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["dtlb_load_misses.stlb_hit_2m"] = 0x0048,
["dtlb_load_misses.pde_cache_miss"] = 0x0088,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["uops_issued.core_stall_cycles"] = 0x000f,
["arith.divider_uops"] = 0x0016,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.request_fb_full"] = 0x004a,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_completed_2m_4m"] = 0x004d,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["dtlb_store_misses.stlb_hit_2m"] = 0x0089,
["dtlb_store_misses.pde_cache_miss"] = 0x00c9,
["load_hit_pre.sw_pf"] = 0x004d,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifetch_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_completed_2m_4m"] = 0x0089,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["itlb_misses.stlb_hit_2m"] = 0x00c5,
["ild_stall.lcp"] = 0x0088,
["ild_stall.iq_full"] = 0x008b,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.taken_return_near"] = 0x0111,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.ept_dtlb_l1"] = 0x00fd,
["page_walker_loads.ept_itlb_l1"] = 0x013d,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.ept_dtlb_l2"] = 0x00fe,
["page_walker_loads.ept_itlb_l2"] = 0x013e,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.ept_dtlb_l3"] = 0x0100,
["page_walker_loads.ept_itlb_l3"] = 0x0140,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["page_walker_loads.itlb_memory"] = 0x00e4,
["page_walker_loads.ept_dtlb_memory"] = 0x0104,
["page_walker_loads.ept_itlb_memory"] = 0x0144,
["tlb_flush.dtlb_thread"] = 0x00be,
["tlb_flush.stlb_any"] = 0x00dd,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["uops_retired.core_stall_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["mem_load_uops_l3_miss_retired.remote_dram"] = 0x00d7,
["mem_load_uops_l3_miss_retired.remote_hitm"] = 0x00e3,
["mem_load_uops_l3_miss_retired.remote_fwd"] = 0x00f3,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["l2_lines_out.demand_dirty"] = 0x00f8,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_active"] = 0x00a9,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["idq.ms_switches"] = 0x00a9,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
["avx_insts.all"] = 0x00cd,
["icache.ifdata_stall"] = 0x0084,
},
},
{"GenuineIntel-6-3F", "V14", "offcore",
{
},
},
{"GenuineIntel-6-3F", "V14", "uncore",
{
},
},
{"GenuineIntel-6-3D", "V11", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["int_misc.rat_stall_cycles"] = 0x0015,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["arith.fpu_div_active"] = 0x0015,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifdata_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["ild_stall.lcp"] = 0x0088,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.x87"] = 0x00c2,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.ret"] = 0x00cd,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_arith_inst_retired.scalar_double"] = 0x00c8,
["fp_arith_inst_retired.scalar_single"] = 0x00c9,
["fp_arith_inst_retired.128b_packed_double"] = 0x00cb,
["fp_arith_inst_retired.128b_packed_single"] = 0x00cf,
["fp_arith_inst_retired.256b_packed_double"] = 0x00d7,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["fp_arith_inst_retired.256b_packed_single"] = 0x00e7,
["idq.ms_switches"] = 0x00a9,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.cycles_mem_any"] = 0x00a5,
["cycle_activity.stalls_total"] = 0x00a7,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.stalls_mem_any"] = 0x00a9,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["lsd.cycles_active"] = 0x00a9,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["uop_dispatches_cancelled.simd_prf"] = 0x00a3,
["fp_arith_inst_retired.scalar"] = 0x00ca,
["fp_arith_inst_retired.packed"] = 0x0103,
["fp_arith_inst_retired.single"] = 0x00dc,
["fp_arith_inst_retired.double"] = 0x00f1,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-3D", "V11", "offcore",
{
},
},
{"GenuineIntel-6-3D", "V11", "uncore",
{
},
},
{"GenuineIntel-6-3D", "V11", "fp_arith_inst",
{
},
},
{"GenuineIntel-6-47", "V11", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["int_misc.rat_stall_cycles"] = 0x0015,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["arith.fpu_div_active"] = 0x0015,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifdata_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["ild_stall.lcp"] = 0x0088,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.x87"] = 0x00c2,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.ret"] = 0x00cd,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_arith_inst_retired.scalar_double"] = 0x00c8,
["fp_arith_inst_retired.scalar_single"] = 0x00c9,
["fp_arith_inst_retired.128b_packed_double"] = 0x00cb,
["fp_arith_inst_retired.128b_packed_single"] = 0x00cf,
["fp_arith_inst_retired.256b_packed_double"] = 0x00d7,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["fp_arith_inst_retired.256b_packed_single"] = 0x00e7,
["idq.ms_switches"] = 0x00a9,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.cycles_mem_any"] = 0x00a5,
["cycle_activity.stalls_total"] = 0x00a7,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.stalls_mem_any"] = 0x00a9,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["lsd.cycles_active"] = 0x00a9,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["uop_dispatches_cancelled.simd_prf"] = 0x00a3,
["fp_arith_inst_retired.scalar"] = 0x00ca,
["fp_arith_inst_retired.packed"] = 0x0103,
["fp_arith_inst_retired.single"] = 0x00dc,
["fp_arith_inst_retired.double"] = 0x00f1,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
{"GenuineIntel-6-47", "V11", "offcore",
{
},
},
{"GenuineIntel-6-47", "V11", "uncore",
{
},
},
{"GenuineIntel-6-47", "V11", "fp_arith_inst",
{
},
},
{"GenuineIntel-6-56", "V1", "core",
{
["inst_retired.any"] = 0x0001,
["cpu_clk_unhalted.thread"] = 0x0002,
["cpu_clk_unhalted.ref_tsc"] = 0x0003,
["ld_blocks.store_forward"] = 0x0005,
["ld_blocks.no_sr"] = 0x000b,
["misalign_mem_ref.loads"] = 0x0006,
["misalign_mem_ref.stores"] = 0x0007,
["ld_blocks_partial.address_alias"] = 0x0008,
["dtlb_load_misses.miss_causes_a_walk"] = 0x0009,
["dtlb_load_misses.walk_completed_4k"] = 0x000a,
["dtlb_load_misses.walk_duration"] = 0x0018,
["dtlb_load_misses.stlb_hit_4k"] = 0x0028,
["int_misc.rat_stall_cycles"] = 0x0015,
["int_misc.recovery_cycles"] = 0x0010,
["uops_issued.any"] = 0x000f,
["uops_issued.flags_merge"] = 0x001e,
["uops_issued.slow_lea"] = 0x002e,
["uops_issued.single_mul"] = 0x004e,
["uops_issued.stall_cycles"] = 0x000f,
["arith.fpu_div_active"] = 0x0015,
["l2_rqsts.demand_data_rd_miss"] = 0x0045,
["l2_rqsts.demand_data_rd_hit"] = 0x0065,
["l2_rqsts.l2_pf_miss"] = 0x0054,
["l2_rqsts.l2_pf_hit"] = 0x0074,
["l2_rqsts.all_demand_data_rd"] = 0x0105,
["l2_rqsts.all_rfo"] = 0x0106,
["l2_rqsts.all_code_rd"] = 0x0108,
["l2_rqsts.all_pf"] = 0x011c,
["l2_demand_rqsts.wb_hit"] = 0x0077,
["longest_lat_cache.miss"] = 0x006f,
["longest_lat_cache.reference"] = 0x007d,
["cpu_clk_thread_unhalted.ref_xclk"] = 0x003d,
["cpu_clk_thread_unhalted.one_thread_active"] = 0x003e,
["l1d_pend_miss.pending"] = 0x0049,
["l1d_pend_miss.pending_cycles"] = 0x0049,
["dtlb_store_misses.miss_causes_a_walk"] = 0x004a,
["dtlb_store_misses.walk_completed_4k"] = 0x004b,
["dtlb_store_misses.walk_duration"] = 0x0059,
["dtlb_store_misses.stlb_hit_4k"] = 0x0069,
["load_hit_pre.hw_pf"] = 0x004e,
["ept.walk_cycles"] = 0x005f,
["l1d.replacement"] = 0x0052,
["tx_mem.abort_conflict"] = 0x0055,
["tx_mem.abort_capacity_write"] = 0x0056,
["tx_mem.abort_hle_store_to_elided_lock"] = 0x0058,
["tx_mem.abort_hle_elision_buffer_not_empty"] = 0x005c,
["tx_mem.abort_hle_elision_buffer_mismatch"] = 0x0064,
["tx_mem.abort_hle_elision_buffer_unsupported_alignment"] = 0x0074,
["tx_mem.hle_elision_buffer_full"] = 0x0094,
["move_elimination.int_eliminated"] = 0x0059,
["move_elimination.simd_eliminated"] = 0x005a,
["move_elimination.int_not_eliminated"] = 0x005c,
["move_elimination.simd_not_eliminated"] = 0x0060,
["cpl_cycles.ring0"] = 0x005d,
["cpl_cycles.ring123"] = 0x005e,
["cpl_cycles.ring0_trans"] = 0x005d,
["tx_exec.misc1"] = 0x005e,
["tx_exec.misc2"] = 0x005f,
["tx_exec.misc3"] = 0x0061,
["tx_exec.misc4"] = 0x0065,
["tx_exec.misc5"] = 0x006d,
["rs_events.empty_cycles"] = 0x005f,
["offcore_requests_outstanding.demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.demand_code_rd"] = 0x0062,
["offcore_requests_outstanding.demand_rfo"] = 0x0064,
["offcore_requests_outstanding.all_data_rd"] = 0x0068,
["offcore_requests_outstanding.cycles_with_demand_data_rd"] = 0x0061,
["offcore_requests_outstanding.cycles_with_data_rd"] = 0x0068,
["lock_cycles.split_lock_uc_lock_duration"] = 0x0064,
["lock_cycles.cache_lock_duration"] = 0x0065,
["idq.empty"] = 0x007b,
["idq.mite_uops"] = 0x007d,
["idq.dsb_uops"] = 0x0081,
["idq.ms_dsb_uops"] = 0x0089,
["idq.ms_mite_uops"] = 0x0099,
["idq.ms_uops"] = 0x00a9,
["idq.ms_cycles"] = 0x00a9,
["idq.mite_cycles"] = 0x007d,
["idq.dsb_cycles"] = 0x0081,
["idq.ms_dsb_cycles"] = 0x0089,
["idq.ms_dsb_occur"] = 0x0089,
["idq.all_dsb_cycles_4_uops"] = 0x0091,
["idq.all_dsb_cycles_any_uops"] = 0x0091,
["idq.all_mite_cycles_4_uops"] = 0x009d,
["idq.all_mite_cycles_any_uops"] = 0x009d,
["idq.mite_all_uops"] = 0x00b5,
["icache.hit"] = 0x0081,
["icache.misses"] = 0x0082,
["icache.ifdata_stall"] = 0x0084,
["itlb_misses.miss_causes_a_walk"] = 0x0086,
["itlb_misses.walk_completed_4k"] = 0x0087,
["itlb_misses.walk_duration"] = 0x0095,
["itlb_misses.stlb_hit_4k"] = 0x00a5,
["ild_stall.lcp"] = 0x0088,
["br_inst_exec.nontaken_conditional"] = 0x00c9,
["br_inst_exec.taken_conditional"] = 0x0109,
["br_inst_exec.taken_direct_jump"] = 0x010a,
["br_inst_exec.taken_indirect_jump_non_call_ret"] = 0x010c,
["br_inst_exec.taken_indirect_near_return"] = 0x0110,
["br_inst_exec.taken_direct_near_call"] = 0x0118,
["br_inst_exec.taken_indirect_near_call"] = 0x0128,
["br_inst_exec.all_conditional"] = 0x0149,
["br_inst_exec.all_direct_jmp"] = 0x014a,
["br_inst_exec.all_indirect_jump_non_call_ret"] = 0x014c,
["br_inst_exec.all_indirect_near_return"] = 0x0150,
["br_inst_exec.all_direct_near_call"] = 0x0158,
["br_inst_exec.all_branches"] = 0x0187,
["br_misp_exec.nontaken_conditional"] = 0x00ca,
["br_misp_exec.taken_conditional"] = 0x010a,
["br_misp_exec.taken_indirect_jump_non_call_ret"] = 0x010d,
["br_misp_exec.all_conditional"] = 0x014a,
["br_misp_exec.all_indirect_jump_non_call_ret"] = 0x014d,
["br_misp_exec.all_branches"] = 0x0188,
["idq_uops_not_delivered.core"] = 0x009d,
["idq_uops_not_delivered.cycles_0_uops_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_1_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_2_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_le_3_uop_deliv.core"] = 0x009d,
["idq_uops_not_delivered.cycles_fe_was_ok"] = 0x009d,
["uops_dispatched_port.port_0"] = 0x00a2,
["uops_dispatched_port.port_1"] = 0x00a3,
["uops_dispatched_port.port_2"] = 0x00a5,
["uops_dispatched_port.port_3"] = 0x00a9,
["uops_dispatched_port.port_4"] = 0x00b1,
["uops_dispatched_port.port_5"] = 0x00c1,
["uops_dispatched_port.port_6"] = 0x00e1,
["uops_dispatched_port.port_7"] = 0x0121,
["resource_stalls.any"] = 0x00a3,
["resource_stalls.rs"] = 0x00a6,
["resource_stalls.sb"] = 0x00aa,
["resource_stalls.rob"] = 0x00b2,
["cycle_activity.cycles_l2_pending"] = 0x00a4,
["cycle_activity.cycles_l1d_pending"] = 0x00ab,
["cycle_activity.cycles_ldm_pending"] = 0x00a5,
["cycle_activity.cycles_no_execute"] = 0x00a7,
["cycle_activity.stalls_l2_pending"] = 0x00a8,
["cycle_activity.stalls_ldm_pending"] = 0x00a9,
["cycle_activity.stalls_l1d_pending"] = 0x00af,
["lsd.uops"] = 0x00a9,
["dsb2mite_switches.penalty_cycles"] = 0x00ad,
["itlb.itlb_flush"] = 0x00af,
["offcore_requests.demand_data_rd"] = 0x00b1,
["offcore_requests.demand_code_rd"] = 0x00b2,
["offcore_requests.demand_rfo"] = 0x00b4,
["offcore_requests.all_data_rd"] = 0x00b8,
["uops_executed.thread"] = 0x00b2,
["uops_executed.core"] = 0x00b3,
["uops_executed.stall_cycles"] = 0x00b2,
["offcore_requests_buffer.sq_full"] = 0x00b3,
["page_walker_loads.dtlb_l1"] = 0x00cd,
["page_walker_loads.itlb_l1"] = 0x00dd,
["page_walker_loads.dtlb_l2"] = 0x00ce,
["page_walker_loads.itlb_l2"] = 0x00de,
["page_walker_loads.dtlb_l3"] = 0x00d0,
["page_walker_loads.itlb_l3"] = 0x00e0,
["page_walker_loads.dtlb_memory"] = 0x00d4,
["inst_retired.any_p"] = 0x00c0,
["inst_retired.x87"] = 0x00c2,
["inst_retired.prec_dist"] = 0x00c1,
["other_assists.avx_to_sse"] = 0x00c9,
["other_assists.sse_to_avx"] = 0x00d1,
["other_assists.any_wb_assist"] = 0x0101,
["uops_retired.all"] = 0x00c3,
["uops_retired.retire_slots"] = 0x00c4,
["uops_retired.stall_cycles"] = 0x00c3,
["uops_retired.total_cycles"] = 0x00c3,
["machine_clears.cycles"] = 0x00c4,
["machine_clears.memory_ordering"] = 0x00c5,
["machine_clears.smc"] = 0x00c7,
["machine_clears.maskmov"] = 0x00e3,
["br_inst_retired.conditional"] = 0x00c5,
["br_inst_retired.near_call"] = 0x00c6,
["br_inst_retired.all_branches"] = 0x00c4,
["br_inst_retired.near_return"] = 0x00cc,
["br_inst_retired.not_taken"] = 0x00d4,
["br_inst_retired.near_taken"] = 0x00e4,
["br_inst_retired.far_branch"] = 0x0104,
["br_inst_retired.all_branches_pebs"] = 0x00c8,
["br_inst_retired.near_call_r3"] = 0x00c6,
["br_misp_retired.conditional"] = 0x00c6,
["br_misp_retired.all_branches"] = 0x00c5,
["br_misp_retired.ret"] = 0x00cd,
["br_misp_retired.all_branches_pebs"] = 0x00c9,
["fp_arith_inst_retired.scalar_double"] = 0x00c8,
["fp_arith_inst_retired.scalar_single"] = 0x00c9,
["fp_arith_inst_retired.128b_packed_double"] = 0x00cb,
["fp_arith_inst_retired.128b_packed_single"] = 0x00cf,
["fp_arith_inst_retired.256b_packed_double"] = 0x00d7,
["hle_retired.start"] = 0x00c9,
["hle_retired.commit"] = 0x00ca,
["hle_retired.aborted"] = 0x00cc,
["hle_retired.aborted_misc1"] = 0x00d0,
["hle_retired.aborted_misc2"] = 0x00d8,
["hle_retired.aborted_misc3"] = 0x00e8,
["hle_retired.aborted_misc4"] = 0x0108,
["hle_retired.aborted_misc5"] = 0x0148,
["rtm_retired.start"] = 0x00ca,
["rtm_retired.commit"] = 0x00cb,
["rtm_retired.aborted"] = 0x00cd,
["rtm_retired.aborted_misc1"] = 0x00d1,
["rtm_retired.aborted_misc2"] = 0x00d9,
["rtm_retired.aborted_misc3"] = 0x00e9,
["rtm_retired.aborted_misc4"] = 0x0109,
["rtm_retired.aborted_misc5"] = 0x0149,
["fp_assist.x87_output"] = 0x00cc,
["fp_assist.x87_input"] = 0x00ce,
["fp_assist.simd_output"] = 0x00d2,
["fp_assist.simd_input"] = 0x00da,
["fp_assist.any"] = 0x00e8,
["rob_misc_events.lbr_inserts"] = 0x00ec,
["mem_trans_retired.load_latency_gt_4"] = 0x00ce,
["mem_trans_retired.load_latency_gt_8"] = 0x00ce,
["mem_trans_retired.load_latency_gt_16"] = 0x00ce,
["mem_trans_retired.load_latency_gt_32"] = 0x00ce,
["mem_trans_retired.load_latency_gt_64"] = 0x00ce,
["mem_trans_retired.load_latency_gt_128"] = 0x00ce,
["mem_trans_retired.load_latency_gt_256"] = 0x00ce,
["mem_trans_retired.load_latency_gt_512"] = 0x00ce,
["mem_uops_retired.stlb_miss_loads"] = 0x00e1,
["mem_uops_retired.stlb_miss_stores"] = 0x00e2,
["mem_uops_retired.lock_loads"] = 0x00f1,
["mem_uops_retired.split_loads"] = 0x0111,
["mem_uops_retired.split_stores"] = 0x0112,
["mem_uops_retired.all_loads"] = 0x0151,
["mem_uops_retired.all_stores"] = 0x0152,
["mem_load_uops_retired.l1_hit"] = 0x00d2,
["mem_load_uops_retired.l2_hit"] = 0x00d3,
["mem_load_uops_retired.l3_hit"] = 0x00d5,
["mem_load_uops_retired.l1_miss"] = 0x00d9,
["mem_load_uops_retired.l2_miss"] = 0x00e1,
["mem_load_uops_retired.l3_miss"] = 0x00f1,
["mem_load_uops_retired.hit_lfb"] = 0x0111,
["mem_load_uops_l3_hit_retired.xsnp_miss"] = 0x00d3,
["mem_load_uops_l3_hit_retired.xsnp_hit"] = 0x00d4,
["mem_load_uops_l3_hit_retired.xsnp_hitm"] = 0x00d6,
["mem_load_uops_l3_hit_retired.xsnp_none"] = 0x00da,
["mem_load_uops_l3_miss_retired.local_dram"] = 0x00d4,
["cpu_clk_unhalted.thread_p"] = 0x003c,
["l2_trans.demand_data_rd"] = 0x00f1,
["l2_trans.rfo"] = 0x00f2,
["l2_trans.code_rd"] = 0x00f4,
["l2_trans.all_pf"] = 0x00f8,
["l2_trans.l1d_wb"] = 0x0100,
["l2_trans.l2_fill"] = 0x0110,
["l2_trans.l2_wb"] = 0x0130,
["l2_trans.all_requests"] = 0x0170,
["l2_lines_in.i"] = 0x00f2,
["l2_lines_in.s"] = 0x00f3,
["l2_lines_in.e"] = 0x00f5,
["l2_lines_in.all"] = 0x00f8,
["l2_lines_out.demand_clean"] = 0x00f7,
["br_misp_exec.taken_indirect_near_call"] = 0x0129,
["uops_executed_port.port_0_core"] = 0x00a2,
["uops_executed_port.port_1_core"] = 0x00a3,
["uops_executed_port.port_2_core"] = 0x00a5,
["uops_executed_port.port_3_core"] = 0x00a9,
["uops_executed_port.port_4_core"] = 0x00b1,
["uops_executed_port.port_5_core"] = 0x00c1,
["uops_executed_port.port_6_core"] = 0x00e1,
["uops_executed_port.port_7_core"] = 0x0121,
["br_misp_retired.near_taken"] = 0x00e5,
["dtlb_load_misses.walk_completed"] = 0x0016,
["dtlb_load_misses.stlb_hit"] = 0x0068,
["l2_rqsts.rfo_hit"] = 0x0066,
["l2_rqsts.rfo_miss"] = 0x0046,
["l2_rqsts.code_rd_hit"] = 0x0068,
["l2_rqsts.code_rd_miss"] = 0x0048,
["l2_rqsts.all_demand_miss"] = 0x004b,
["l2_rqsts.all_demand_references"] = 0x010b,
["l2_rqsts.miss"] = 0x0063,
["l2_rqsts.references"] = 0x0123,
["dtlb_store_misses.walk_completed"] = 0x0057,
["dtlb_store_misses.stlb_hit"] = 0x00a9,
["itlb_misses.walk_completed"] = 0x0093,
["itlb_misses.stlb_hit"] = 0x00e5,
["uops_executed.cycles_ge_1_uop_exec"] = 0x00b2,
["uops_executed.cycles_ge_2_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_3_uops_exec"] = 0x00b2,
["uops_executed.cycles_ge_4_uops_exec"] = 0x00b2,
["baclears.any"] = 0x0105,
["offcore_response"] = 0x00b8,
["fp_arith_inst_retired.256b_packed_single"] = 0x00e7,
["idq.ms_switches"] = 0x00a9,
["cycle_activity.cycles_l1d_miss"] = 0x00ab,
["cycle_activity.cycles_l2_miss"] = 0x00a4,
["cycle_activity.cycles_mem_any"] = 0x00a5,
["cycle_activity.stalls_total"] = 0x00a7,
["cycle_activity.stalls_l1d_miss"] = 0x00af,
["cycle_activity.stalls_l2_miss"] = 0x00a8,
["cycle_activity.stalls_mem_any"] = 0x00a9,
["machine_clears.count"] = 0x00c4,
["lsd.cycles_4_uops"] = 0x00a9,
["rs_events.empty_end"] = 0x005f,
["lsd.cycles_active"] = 0x00a9,
["uops_executed_port.port_0"] = 0x00a2,
["uops_executed_port.port_1"] = 0x00a3,
["uops_executed_port.port_2"] = 0x00a5,
["uops_executed_port.port_3"] = 0x00a9,
["uops_executed_port.port_4"] = 0x00b1,
["uops_executed_port.port_5"] = 0x00c1,
["uops_executed_port.port_6"] = 0x00e1,
["uops_executed_port.port_7"] = 0x0121,
["uop_dispatches_cancelled.simd_prf"] = 0x00a3,
["fp_arith_inst_retired.scalar"] = 0x00ca,
["fp_arith_inst_retired.packed"] = 0x0103,
["fp_arith_inst_retired.single"] = 0x00dc,
["fp_arith_inst_retired.double"] = 0x00f1,
["cpu_clk_unhalted.thread_any"] = 0x0002,
["cpu_clk_unhalted.thread_p_any"] = 0x003c,
["cpu_clk_thread_unhalted.ref_xclk_any"] = 0x003d,
["int_misc.recovery_cycles_any"] = 0x0010,
["uops_executed.core_cycles_ge_1"] = 0x00b3,
["uops_executed.core_cycles_ge_2"] = 0x00b3,
["uops_executed.core_cycles_ge_3"] = 0x00b3,
["uops_executed.core_cycles_ge_4"] = 0x00b3,
["uops_executed.core_cycles_none"] = 0x00b3,
["offcore_requests_outstanding.demand_data_rd_ge_6"] = 0x0061,
["l1d_pend_miss.pending_cycles_any"] = 0x0049,
["l1d_pend_miss.fb_full"] = 0x004a,
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment