]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Import Intel Processor Trace library.
authorbr <br@FreeBSD.org>
Mon, 19 Mar 2018 18:34:08 +0000 (18:34 +0000)
committerbr <br@FreeBSD.org>
Mon, 19 Mar 2018 18:34:08 +0000 (18:34 +0000)
commit3525260076b17c7a4006b2372825f87e7db61d36
tree515035e74d1880c27ceb0cfa619f5066bb2a33b3
Import Intel Processor Trace library.

Git ID 24982c1a6fce48f1e416461d42899805f74fbb26

Sponsored by: DARPA, AFRL
Differential Revision: https://reviews.freebsd.org/D12815
370 files changed:
.gitignore [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
CONTRIBUTING [new file with mode: 0755]
LICENSE [new file with mode: 0644]
README [new file with mode: 0644]
doc/getting_started.md [new file with mode: 0755]
doc/howto_build.md [new file with mode: 0755]
doc/howto_capture.md [new file with mode: 0644]
doc/howto_libipt.md [new file with mode: 0644]
doc/howto_pttc.md [new file with mode: 0755]
doc/man/CMakeLists.txt [new file with mode: 0644]
doc/man/pt_alloc_encoder.3.md [new file with mode: 0644]
doc/man/pt_blk_alloc_decoder.3.md [new file with mode: 0644]
doc/man/pt_blk_get_offset.3.md [new file with mode: 0644]
doc/man/pt_blk_next.3.md [new file with mode: 0644]
doc/man/pt_blk_sync_forward.3.md [new file with mode: 0644]
doc/man/pt_config.3.md [new file with mode: 0644]
doc/man/pt_enc_get_config.3.md [new file with mode: 0644]
doc/man/pt_enc_get_offset.3.md [new file with mode: 0644]
doc/man/pt_image_add_file.3.md [new file with mode: 0644]
doc/man/pt_image_alloc.3.md [new file with mode: 0644]
doc/man/pt_image_remove_by_filename.3.md [new file with mode: 0644]
doc/man/pt_image_set_callback.3.md [new file with mode: 0644]
doc/man/pt_insn_alloc_decoder.3.md [new file with mode: 0644]
doc/man/pt_insn_get_image.3.md [new file with mode: 0644]
doc/man/pt_insn_get_offset.3.md [new file with mode: 0644]
doc/man/pt_insn_next.3.md [new file with mode: 0644]
doc/man/pt_insn_sync_forward.3.md [new file with mode: 0644]
doc/man/pt_iscache_add_file.3.md [new file with mode: 0644]
doc/man/pt_iscache_alloc.3.md [new file with mode: 0644]
doc/man/pt_iscache_read.3.md [new file with mode: 0644]
doc/man/pt_iscache_set_limit.3.md [new file with mode: 0644]
doc/man/pt_library_version.3.md [new file with mode: 0644]
doc/man/pt_packet.3.md [new file with mode: 0644]
doc/man/pt_pkt_alloc_decoder.3.md [new file with mode: 0644]
doc/man/pt_pkt_get_offset.3.md [new file with mode: 0644]
doc/man/pt_pkt_sync_forward.3.md [new file with mode: 0644]
doc/man/pt_qry_alloc_decoder.3.md [new file with mode: 0644]
doc/man/pt_qry_cond_branch.3.md [new file with mode: 0644]
doc/man/pt_qry_event.3.md [new file with mode: 0644]
doc/man/pt_qry_get_offset.3.md [new file with mode: 0644]
doc/man/pt_qry_sync_forward.3.md [new file with mode: 0644]
doc/man/pt_qry_time.3.md [new file with mode: 0644]
include/posix/threads.h [new file with mode: 0644]
include/pt_compiler.h [new file with mode: 0644]
include/windows/inttypes.h [new file with mode: 0644]
include/windows/threads.h [new file with mode: 0644]
libipt/CMakeLists.txt [new file with mode: 0644]
libipt/include/intel-pt.h.in [new file with mode: 0755]
libipt/internal/include/posix/pt_section_posix.h [new file with mode: 0644]
libipt/internal/include/pt_asid.h [new file with mode: 0644]
libipt/internal/include/pt_block_cache.h [new file with mode: 0644]
libipt/internal/include/pt_block_decoder.h [new file with mode: 0644]
libipt/internal/include/pt_config.h [new file with mode: 0644]
libipt/internal/include/pt_cpu.h [new file with mode: 0644]
libipt/internal/include/pt_cpuid.h [new file with mode: 0644]
libipt/internal/include/pt_decoder_function.h [new file with mode: 0644]
libipt/internal/include/pt_encoder.h [new file with mode: 0644]
libipt/internal/include/pt_event_queue.h [new file with mode: 0644]
libipt/internal/include/pt_ild.h [new file with mode: 0644]
libipt/internal/include/pt_image.h [new file with mode: 0644]
libipt/internal/include/pt_image_section_cache.h [new file with mode: 0644]
libipt/internal/include/pt_insn.h [new file with mode: 0644]
libipt/internal/include/pt_insn_decoder.h [new file with mode: 0644]
libipt/internal/include/pt_last_ip.h [new file with mode: 0644]
libipt/internal/include/pt_mapped_section.h [new file with mode: 0644]
libipt/internal/include/pt_msec_cache.h [new file with mode: 0644]
libipt/internal/include/pt_opcodes.h [new file with mode: 0644]
libipt/internal/include/pt_packet.h [new file with mode: 0644]
libipt/internal/include/pt_packet_decoder.h [new file with mode: 0644]
libipt/internal/include/pt_query_decoder.h [new file with mode: 0644]
libipt/internal/include/pt_retstack.h [new file with mode: 0644]
libipt/internal/include/pt_section.h [new file with mode: 0644]
libipt/internal/include/pt_section_file.h [new file with mode: 0644]
libipt/internal/include/pt_sync.h [new file with mode: 0644]
libipt/internal/include/pt_time.h [new file with mode: 0644]
libipt/internal/include/pt_tnt_cache.h [new file with mode: 0644]
libipt/internal/include/pti-disp-defs.h [new file with mode: 0644]
libipt/internal/include/pti-disp.h [new file with mode: 0644]
libipt/internal/include/pti-imm-defs.h [new file with mode: 0644]
libipt/internal/include/pti-imm.h [new file with mode: 0644]
libipt/internal/include/pti-modrm-defs.h [new file with mode: 0644]
libipt/internal/include/pti-modrm.h [new file with mode: 0644]
libipt/internal/include/windows/pt_section_windows.h [new file with mode: 0644]
libipt/src/posix/init.c [new file with mode: 0644]
libipt/src/posix/pt_cpuid.c [new file with mode: 0644]
libipt/src/posix/pt_section_posix.c [new file with mode: 0644]
libipt/src/pt_asid.c [new file with mode: 0644]
libipt/src/pt_block_cache.c [new file with mode: 0644]
libipt/src/pt_block_decoder.c [new file with mode: 0644]
libipt/src/pt_config.c [new file with mode: 0644]
libipt/src/pt_cpu.c [new file with mode: 0644]
libipt/src/pt_decoder_function.c [new file with mode: 0644]
libipt/src/pt_encoder.c [new file with mode: 0644]
libipt/src/pt_error.c [new file with mode: 0644]
libipt/src/pt_event_queue.c [new file with mode: 0644]
libipt/src/pt_ild.c [new file with mode: 0644]
libipt/src/pt_image.c [new file with mode: 0644]
libipt/src/pt_image_section_cache.c [new file with mode: 0644]
libipt/src/pt_insn.c [new file with mode: 0644]
libipt/src/pt_insn_decoder.c [new file with mode: 0644]
libipt/src/pt_last_ip.c [new file with mode: 0644]
libipt/src/pt_msec_cache.c [new file with mode: 0644]
libipt/src/pt_packet.c [new file with mode: 0644]
libipt/src/pt_packet_decoder.c [new file with mode: 0644]
libipt/src/pt_query_decoder.c [new file with mode: 0644]
libipt/src/pt_retstack.c [new file with mode: 0644]
libipt/src/pt_section.c [new file with mode: 0644]
libipt/src/pt_section_file.c [new file with mode: 0644]
libipt/src/pt_sync.c [new file with mode: 0644]
libipt/src/pt_time.c [new file with mode: 0644]
libipt/src/pt_tnt_cache.c [new file with mode: 0644]
libipt/src/pt_version.c [new file with mode: 0644]
libipt/src/windows/init.c [new file with mode: 0644]
libipt/src/windows/pt_cpuid.c [new file with mode: 0644]
libipt/src/windows/pt_section_windows.c [new file with mode: 0644]
libipt/test/src/ptunit-asid.c [new file with mode: 0644]
libipt/test/src/ptunit-block_cache.c [new file with mode: 0644]
libipt/test/src/ptunit-config.c [new file with mode: 0644]
libipt/test/src/ptunit-cpp.cpp [new file with mode: 0644]
libipt/test/src/ptunit-cpu.c [new file with mode: 0644]
libipt/test/src/ptunit-event_queue.c [new file with mode: 0644]
libipt/test/src/ptunit-fetch.c [new file with mode: 0644]
libipt/test/src/ptunit-ild.c [new file with mode: 0644]
libipt/test/src/ptunit-image.c [new file with mode: 0644]
libipt/test/src/ptunit-image_section_cache.c [new file with mode: 0644]
libipt/test/src/ptunit-last_ip.c [new file with mode: 0644]
libipt/test/src/ptunit-mapped_section.c [new file with mode: 0644]
libipt/test/src/ptunit-msec_cache.c [new file with mode: 0644]
libipt/test/src/ptunit-packet.c [new file with mode: 0644]
libipt/test/src/ptunit-query.c [new file with mode: 0644]
libipt/test/src/ptunit-retstack.c [new file with mode: 0644]
libipt/test/src/ptunit-section-file.c [new file with mode: 0644]
libipt/test/src/ptunit-section.c [new file with mode: 0644]
libipt/test/src/ptunit-sync.c [new file with mode: 0644]
libipt/test/src/ptunit-time.c [new file with mode: 0644]
libipt/test/src/ptunit-tnt_cache.c [new file with mode: 0644]
pevent/CMakeLists.txt [new file with mode: 0644]
pevent/include/pevent.h [new file with mode: 0644]
pevent/src/pevent.c [new file with mode: 0644]
pevent/test/src/ptunit-pevent.c [new file with mode: 0644]
ptdump/CMakeLists.txt [new file with mode: 0644]
ptdump/src/ptdump.c [new file with mode: 0644]
pttc/CMakeLists.txt [new file with mode: 0644]
pttc/include/errcode.h [new file with mode: 0644]
pttc/include/file.h [new file with mode: 0644]
pttc/include/parse.h [new file with mode: 0644]
pttc/include/pttc.h [new file with mode: 0644]
pttc/include/util.h [new file with mode: 0644]
pttc/include/yasm.h [new file with mode: 0644]
pttc/src/errcode.c [new file with mode: 0644]
pttc/src/file.c [new file with mode: 0644]
pttc/src/main.c [new file with mode: 0644]
pttc/src/parse.c [new file with mode: 0644]
pttc/src/posix/util.c [new file with mode: 0644]
pttc/src/pttc.c [new file with mode: 0644]
pttc/src/util.c [new file with mode: 0644]
pttc/src/windows/util.c [new file with mode: 0644]
pttc/src/yasm.c [new file with mode: 0644]
pttc/test/src/test_all_directives.ptt [new file with mode: 0644]
pttc/test/src/test_exp_labels.ptt [new file with mode: 0644]
pttc/test/src/test_label_addr.ptt [new file with mode: 0644]
ptunit/CMakeLists.txt [new file with mode: 0644]
ptunit/include/ptunit.h [new file with mode: 0644]
ptunit/include/ptunit_mkfile.h [new file with mode: 0644]
ptunit/include/ptunit_threads.h [new file with mode: 0644]
ptunit/src/posix/ptunit_mkfile.c [new file with mode: 0644]
ptunit/src/ptunit.c [new file with mode: 0644]
ptunit/src/windows/ptunit_mkfile.c [new file with mode: 0644]
ptunit/test/src/ptunit-selftest.c [new file with mode: 0644]
ptxed/CMakeLists.txt [new file with mode: 0644]
ptxed/include/load_elf.h [new file with mode: 0644]
ptxed/src/load_elf.c [new file with mode: 0644]
ptxed/src/ptxed.c [new file with mode: 0644]
script/perf-copy-mapped-files.bash [new file with mode: 0755]
script/perf-get-opts.bash [new file with mode: 0755]
script/perf-read-aux.bash [new file with mode: 0755]
script/perf-read-sideband.bash [new file with mode: 0755]
script/test.bash [new file with mode: 0755]
sideband/CMakeLists.txt [new file with mode: 0644]
sideband/include/libipt-sb.h.in [new file with mode: 0644]
sideband/internal/include/pt_sb_context.h [new file with mode: 0644]
sideband/internal/include/pt_sb_decoder.h [new file with mode: 0644]
sideband/internal/include/pt_sb_file.h [new file with mode: 0644]
sideband/internal/include/pt_sb_pevent.h [new file with mode: 0644]
sideband/internal/include/pt_sb_session.h [new file with mode: 0644]
sideband/src/pt_sb_context.c [new file with mode: 0644]
sideband/src/pt_sb_file.c [new file with mode: 0644]
sideband/src/pt_sb_pevent.c [new file with mode: 0644]
sideband/src/pt_sb_session.c [new file with mode: 0644]
test/CMakeLists.txt [new file with mode: 0644]
test/pevent/CMakeLists.txt [new file with mode: 0644]
test/pevent/src/pevent-comm_exec-mmap-tsc-iret.ptt [new file with mode: 0644]
test/pevent/src/pevent-dump.ptt [new file with mode: 0644]
test/pevent/src/pevent-dump_verbose.ptt [new file with mode: 0644]
test/pevent/src/pevent-fork.ptt [new file with mode: 0644]
test/pevent/src/pevent-mmap-tip_cached.ptt [new file with mode: 0644]
test/pevent/src/pevent-mmap_secondary-tsc.ptt [new file with mode: 0644]
test/pevent/src/pevent-split.ptt [new file with mode: 0644]
test/pevent/src/pevent-tip_pgd-comm_exec-mmap-tsc-tip_pge.ptt [new file with mode: 0644]
test/pevent/src/pevent-tip_pgd-mmap-tsc-tip_pge.ptt [new file with mode: 0644]
test/pevent/src/pevent-tip_pgd-switch-tsc-tip_pge.ptt [new file with mode: 0644]
test/pevent/src/pevent-tip_pgd-switch_cpu_wide-tsc-tip_pge.ptt [new file with mode: 0644]
test/pevent/src/pevent-warn.ptt [new file with mode: 0644]
test/src/apl11.ptt [new file with mode: 0644]
test/src/apl12-psb.ptt [new file with mode: 0644]
test/src/apl12-tip_pge.ptt [new file with mode: 0644]
test/src/bad_cpu.ptt [new file with mode: 0644]
test/src/bdm64-tip-xabort.ptt [new file with mode: 0644]
test/src/bdm64-tnt-cond-xabort.ptt [new file with mode: 0644]
test/src/bdm64-tnt-ind_call-xabort.ptt [new file with mode: 0644]
test/src/bdm70-psb_fup-tip_pge.ptt [new file with mode: 0644]
test/src/bdm70-tip_pgd-psb_fup-tip_pge.ptt [new file with mode: 0644]
test/src/call_direct-ret_compressed-pic.ptt [new file with mode: 0644]
test/src/call_direct-ret_compressed.ptt [new file with mode: 0644]
test/src/call_direct-ret_uncompressed.ptt [new file with mode: 0644]
test/src/call_indirect-ret_compressed.ptt [new file with mode: 0644]
test/src/call_indirect-ret_uncompressed.ptt [new file with mode: 0644]
test/src/call_indirect_deferred-ret_compressed.ptt [new file with mode: 0644]
test/src/cbr-cyc.ptt [new file with mode: 0644]
test/src/cbr-mtc-cyc-mtc.ptt [new file with mode: 0644]
test/src/cbr-tsc-cyc-tma.ptt [new file with mode: 0644]
test/src/cbr-tsc-tma-mtc-cyc.ptt [new file with mode: 0644]
test/src/direct_call-tip_pgd_noip-syscall.ptt [new file with mode: 0644]
test/src/direct_jump-tip_pgd_noip-far_call.ptt [new file with mode: 0644]
test/src/dump-all-packets.ptt [new file with mode: 0644]
test/src/exstop_ip-tip_pgd.ptt [new file with mode: 0644]
test/src/fup-pip-vmcs-tip.ptt [new file with mode: 0644]
test/src/fup-pip-vmcs-tip_pgd.ptt [new file with mode: 0644]
test/src/fup-tip-eos.ptt [new file with mode: 0644]
test/src/fup-tip-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/fup-tip.ptt [new file with mode: 0644]
test/src/fup-tip_pgd-stop.ptt [new file with mode: 0644]
test/src/fup-tip_pgd-tip_pge.ptt [new file with mode: 0644]
test/src/fup-tip_pgd-tip_pge_other_ip.ptt [new file with mode: 0644]
test/src/fup-tip_pgd.ptt [new file with mode: 0644]
test/src/fup-tip_pgd_noip.ptt [new file with mode: 0644]
test/src/int-iret-cpl_0.ptt [new file with mode: 0644]
test/src/int-iret-cpl_3.ptt [new file with mode: 0644]
test/src/int-iret.ptt [new file with mode: 0644]
test/src/linear-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/linear-tip.ptt [new file with mode: 0644]
test/src/loop-tnt-64.ptt [new file with mode: 0644]
test/src/loop-tnt-tnt.ptt [new file with mode: 0644]
test/src/loop-tnt.ptt [new file with mode: 0644]
test/src/mode_exec-tip.ptt [new file with mode: 0644]
test/src/mtc-cyc_calibrate.ptt [new file with mode: 0644]
test/src/mtc.ptt [new file with mode: 0644]
test/src/mwait-pwre-exstop_ip-fup-ovf.ptt [new file with mode: 0644]
test/src/mwait-pwre-exstop_ip-ovf.ptt [new file with mode: 0644]
test/src/mwait-pwre-exstop_ip-pwrx.ptt [new file with mode: 0644]
test/src/ovf-fup.ptt [new file with mode: 0644]
test/src/ovf-mnt-fup.ptt [new file with mode: 0644]
test/src/ovf-mnt-tip_pge.ptt [new file with mode: 0644]
test/src/ovf-pwre-pwrx-tip_pge.ptt [new file with mode: 0644]
test/src/ovf-timing-fup.ptt [new file with mode: 0644]
test/src/ovf-timing-tip_pge.ptt [new file with mode: 0644]
test/src/ovf-tip_pge.ptt [new file with mode: 0644]
test/src/ovf.ptt [new file with mode: 0644]
test/src/pip-far_call.ptt [new file with mode: 0644]
test/src/pip-pip_mov_cr3-fail.ptt [new file with mode: 0644]
test/src/pip-vmcs-tip_pgd.ptt [new file with mode: 0755]
test/src/pip_mov_cr3-pip_mov_cr3.ptt [new file with mode: 0644]
test/src/psb-empty.ptt [new file with mode: 0644]
test/src/psb-exstop.ptt [new file with mode: 0644]
test/src/psb-fup-psbend.ptt [new file with mode: 0644]
test/src/psb-fup-tip_pgd-stop.ptt [new file with mode: 0644]
test/src/psb-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/psb-mnt-fup-psbend.ptt [new file with mode: 0644]
test/src/psb-mnt-psbend.ptt [new file with mode: 0644]
test/src/psb-ovf-fup.ptt [new file with mode: 0644]
test/src/psb-ovf-tip_pge.ptt [new file with mode: 0644]
test/src/psb-pip-psb.ptt [new file with mode: 0644]
test/src/psb-pip-tip_pge.ptt [new file with mode: 0644]
test/src/psb-psb.ptt [new file with mode: 0644]
test/src/psb-stop.ptt [new file with mode: 0644]
test/src/psb-tnt-psb.ptt [new file with mode: 0644]
test/src/psb-tsx.ptt [new file with mode: 0644]
test/src/psb-tsx_abort-tip-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/psb-tsx_abort-tip_pgd.ptt [new file with mode: 0644]
test/src/psb-tsx_abort.ptt [new file with mode: 0644]
test/src/psb-vmcs.ptt [new file with mode: 0644]
test/src/psb_nofup-psb.ptt [new file with mode: 0644]
test/src/ptdump-exec-mode.ptt [new file with mode: 0644]
test/src/ptdump-last-ip.ptt [new file with mode: 0644]
test/src/ptdump-no-offset-raw.ptt [new file with mode: 0644]
test/src/ptdump-no-offset.ptt [new file with mode: 0644]
test/src/ptw-fup.ptt [new file with mode: 0644]
test/src/ptw.ptt [new file with mode: 0644]
test/src/ptxed-block-stat.ptt [new file with mode: 0644]
test/src/ptxed-block-stat_blocks.ptt [new file with mode: 0644]
test/src/ptxed-end_on_call-fup-tip.ptt [new file with mode: 0644]
test/src/ptxed-end_on_call-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/ptxed-end_on_call-ret_tip.ptt [new file with mode: 0644]
test/src/ptxed-end_on_call-ret_tnt.ptt [new file with mode: 0644]
test/src/ptxed-end_on_call-tip_pgd.ptt [new file with mode: 0644]
test/src/ptxed-end_on_jump-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/ptxed-insn-stat.ptt [new file with mode: 0644]
test/src/ptxed-stat_insn.ptt [new file with mode: 0644]
test/src/ptxed-tick.ptt [new file with mode: 0644]
test/src/pwre-exstop_ip-pwrx.ptt [new file with mode: 0644]
test/src/ret_near_far.ptt [new file with mode: 0644]
test/src/skd007.ptt [new file with mode: 0644]
test/src/skd010-mode_tsx-fup.ptt [new file with mode: 0644]
test/src/skd010-psb.ptt [new file with mode: 0644]
test/src/skd010-tip.ptt [new file with mode: 0644]
test/src/skd010-tip_pgd.ptt [new file with mode: 0644]
test/src/skd022.ptt [new file with mode: 0644]
test/src/skl014-call.ptt [new file with mode: 0644]
test/src/skl014-jmp-jmp.ptt [new file with mode: 0644]
test/src/skl014-jmp.ptt [new file with mode: 0644]
test/src/skl014-no_filter.ptt [new file with mode: 0644]
test/src/syscall-sysret-cpl_0.ptt [new file with mode: 0644]
test/src/syscall-sysret-cpl_3.ptt [new file with mode: 0644]
test/src/syscall-sysret.ptt [new file with mode: 0644]
test/src/sysenter-sysexit-cpl_0.ptt [new file with mode: 0644]
test/src/sysenter-sysexit-cpl_3.ptt [new file with mode: 0644]
test/src/sysenter-sysexit.ptt [new file with mode: 0644]
test/src/tip-eos.ptt [new file with mode: 0644]
test/src/tip_pgd-direct_call.ptt [new file with mode: 0644]
test/src/tip_pgd-direct_jump.ptt [new file with mode: 0644]
test/src/tip_pgd-exstop-tip_pge.ptt [new file with mode: 0644]
test/src/tip_pgd-indirect_call.ptt [new file with mode: 0644]
test/src/tip_pgd-indirect_jump.ptt [new file with mode: 0644]
test/src/tip_pgd-pip-tip_pge.ptt [new file with mode: 0644]
test/src/tip_pgd-psb-stop.ptt [new file with mode: 0644]
test/src/tip_pgd-stop.ptt [new file with mode: 0644]
test/src/tip_pgd-tnt_not_taken.ptt [new file with mode: 0644]
test/src/tip_pgd-tnt_taken.ptt [new file with mode: 0644]
test/src/tip_pgd-tsx.ptt [new file with mode: 0644]
test/src/tip_pgd_noip-far_jump.ptt [new file with mode: 0644]
test/src/tip_pgd_noip-mov_cr3.ptt [new file with mode: 0644]
test/src/tip_pge-exstop.ptt [new file with mode: 0644]
test/src/tip_pge-fup-tip_pgd-tip_pge.ptt [new file with mode: 0644]
test/src/tip_pge-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/tip_pge-ptw-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/tip_pge-ptw-tip_pgd.ptt [new file with mode: 0644]
test/src/tip_pge-pwre-pwrx-tip_pgd.ptt [new file with mode: 0644]
test/src/tip_pge-tsx_abort-tip-fup-tip_pgd.ptt [new file with mode: 0644]
test/src/tip_pge-tsx_abort-tip_pgd.ptt [new file with mode: 0644]
test/src/tnt-tip_pgd_noip-sysret.ptt [new file with mode: 0644]
test/src/tnt_n-eos.ptt [new file with mode: 0644]
test/src/tnt_t-eos.ptt [new file with mode: 0644]
test/src/truncated.ptt [new file with mode: 0644]
test/src/tsc-cbr-cyc-tsc.ptt [new file with mode: 0644]
test/src/tsc-cyc_calibrate.ptt [new file with mode: 0644]
test/src/tsc-mtc-tma-mtc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-cyc-mtc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-cyc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-cyc-mtc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-cyc-no_cyc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-cyc-tsc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-cyc.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-cyc_calibrate.ptt [new file with mode: 0644]
test/src/tsc-tma-cbr-mtc-mtc-cyc.ptt [new file with mode: 0644]
test/src/tsc-tma-cyc.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc-cyc_calibrate.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc-mtc-cyc_calibrate.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc-tsc.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc_absolute.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc_infreq.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc_infreq_wrap.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc_relative.ptt [new file with mode: 0644]
test/src/tsc-tma-mtc_wrap.ptt [new file with mode: 0644]
test/src/tsc-tma_zero_fc-cbr-cyc.ptt [new file with mode: 0644]
test/src/tsc_tma_mtc_gap.ptt [new file with mode: 0644]
test/src/tsx-abort.ptt [new file with mode: 0644]
test/src/tsx-commit.ptt [new file with mode: 0644]
test/src/tsx-no_spurious_commit.ptt [new file with mode: 0644]
test/src/vmcs-far_call.ptt [new file with mode: 0644]