2014-01-01 03:54:24 +00:00
|
|
|
# Copyright 2009-2014 Free Software Foundation, Inc.
|
2009-12-28 23:39:10 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2013-06-07 17:31:09 +00:00
|
|
|
load_lib "trace-support.exp"
|
2009-12-28 23:39:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
2012-06-26 18:25:19 +00:00
|
|
|
standard_testfile actions.c
|
2009-12-28 23:39:10 +00:00
|
|
|
if { [gdb_compile "$srcdir/$subdir/$srcfile" $binfile \
|
|
|
|
executable {debug nowarnings}] != "" } {
|
2010-12-13 05:29:32 +00:00
|
|
|
untested tsv.exp
|
2009-12-28 23:39:10 +00:00
|
|
|
return -1
|
|
|
|
}
|
2010-12-13 05:29:32 +00:00
|
|
|
gdb_load $binfile
|
2009-12-28 23:39:10 +00:00
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar1" \
|
|
|
|
"Trace state variable \\\$tvar1 created, with initial value 0." \
|
|
|
|
"Create a trace state variable"
|
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar2 = 45" \
|
|
|
|
"Trace state variable \\\$tvar2 created, with initial value 45." \
|
|
|
|
"Create a trace state variable with initial value"
|
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar2 = -92" \
|
|
|
|
"Trace state variable \\\$tvar2 now has initial value -92." \
|
|
|
|
"Change initial value of a trace state variable"
|
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar3 = 2 + 3" \
|
|
|
|
"Trace state variable \\\$tvar3 created, with initial value 5." \
|
|
|
|
"Create a trace state variable with expression"
|
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar3 = 1234567000000" \
|
|
|
|
"Trace state variable \\\$tvar3 now has initial value 1234567000000." \
|
|
|
|
"Init trace state variable to a 64-bit value"
|
|
|
|
|
2013-02-14 10:19:39 +00:00
|
|
|
gdb_test "tvariable $" \
|
|
|
|
"Must supply a non-empty variable name" \
|
|
|
|
"tvariable syntax error, not empty variable name"
|
|
|
|
|
2009-12-28 23:39:10 +00:00
|
|
|
gdb_test "tvariable main" \
|
2013-02-14 10:19:39 +00:00
|
|
|
"Name of trace variable should start with '\\\$'" \
|
2009-12-28 23:39:10 +00:00
|
|
|
"tvariable syntax error, bad name"
|
|
|
|
|
2013-02-14 10:19:39 +00:00
|
|
|
gdb_test "tvariable \$\$" \
|
|
|
|
"Syntax must be \\\$NAME \\\[ = EXPR \\\]" \
|
|
|
|
"tvariable syntax error, bad name 2"
|
|
|
|
|
|
|
|
gdb_test "tvariable \$123" \
|
|
|
|
"\\\$123 is not a valid trace state variable name" \
|
|
|
|
"tvariable syntax error, bad name 3"
|
|
|
|
|
2009-12-28 23:39:10 +00:00
|
|
|
gdb_test "tvariable \$tvar1 - 93" \
|
|
|
|
"Syntax must be \\\$NAME \\\[ = EXPR \\\]" \
|
|
|
|
"tvariable syntax error, not an assignment"
|
|
|
|
|
2013-02-14 10:19:39 +00:00
|
|
|
gdb_test "tvariable \$tvar0 = 1 = 1" \
|
|
|
|
"Left operand of assignment is not an lvalue\." \
|
|
|
|
"tvariable creation fails with invalid expression"
|
|
|
|
|
2009-12-28 23:39:10 +00:00
|
|
|
gdb_test "info tvariables" \
|
|
|
|
"Name\[\t \]+Initial\[\t \]+Current.*
|
|
|
|
\\\$tvar1\[\t \]+0\[\t \]+<undefined>.*
|
|
|
|
\\\$tvar2\[\t \]+-92\[\t \]+<undefined>.*
|
|
|
|
\\\$tvar3\[\t \]+1234567000000\[\t \]+.*<undefined>.*" \
|
|
|
|
"List tvariables"
|
|
|
|
|
2010-12-13 05:29:32 +00:00
|
|
|
gdb_test "print \$tvar2" " = void" \
|
|
|
|
"Print a trace state variable before run"
|
|
|
|
|
2010-06-02 21:55:28 +00:00
|
|
|
gdb_test_no_output "delete tvariable \$tvar2" \
|
2009-12-28 23:39:10 +00:00
|
|
|
"delete trace state variable"
|
|
|
|
|
|
|
|
gdb_test "info tvariables" \
|
|
|
|
"Name\[\t \]+Initial\[\t \]+Current.*
|
|
|
|
\\\$tvar1\[\t \]+0\[\t \]+<undefined>.*
|
|
|
|
\\\$tvar3\[\t \]+1234567000000\[\t \]+.*<undefined>.*" \
|
|
|
|
"List tvariables after deletion"
|
|
|
|
|
2010-06-02 19:41:11 +00:00
|
|
|
gdb_test "delete tvariable" \
|
|
|
|
"" \
|
|
|
|
"Delete all trace state variables" \
|
|
|
|
"Delete all trace state variables.*y or n.*$" \
|
|
|
|
"y"
|
2009-12-28 23:39:10 +00:00
|
|
|
|
|
|
|
gdb_test "info tvariables" \
|
|
|
|
"No trace state variables.*" \
|
|
|
|
"List tvariables after deleting all"
|
|
|
|
|
2010-12-13 05:29:32 +00:00
|
|
|
# Now try running a trace.
|
|
|
|
|
|
|
|
runto_main
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
|
|
|
|
# The rest of the testing needs actual tracing to work.
|
|
|
|
if { ![gdb_target_supports_trace] } then {
|
2012-02-15 18:09:20 +00:00
|
|
|
unsupported "Current target does not support trace"
|
gdb/testsuite/
* config/monitor.exp (gdb_target_cmd): Remove semicolon after
'return'.
(gdb_target_monitor, gdb_load): Likewise.
* config/sid.exp (gdb_load): Likewise.
* config/slite.exp (gdb_load): Likewise.
* config/vx.exp (gdb_start, spawn_vxgdb): Likewise.
* gdb.ada/arrayidx.exp, gdb.ada/null_array.exp: Likewise.
* gdb.arch/mips-octeon-bbit.exp (single_step): Likewise.
(single_step_until): Likewise.
* gdb.arch/powerpc-d128-regs.exp: Likewise.
* gdb.arch/system-gcore.exp: Likewise.
* gdb.base/bigcore.exp (extract_heap): Likewise.
* gdb.base/break-on-linker-gcd-function.exp: Likewise.
* gdb.base/call-ar-st.exp: Likewise.
* gdb.base/call-rt-st.exp: Likewise.
* gdb.base/call-sc.exp, gdb.base/call-strs.exp: Likewise.
* gdb.base/callfuncs.exp, gdb.base/completion.exp: Likewise.
* gdb.base/condbreak.exp, gdb.base/constvars.exp: Likewise.
* gdb.base/corefile.exp: Likewise.
* gdb.base/dbx.exp (gdb_file_cmd): Likewise.
* gdb.base/exprs.exp, gdb.base/fileio.exp: Likewise.
* gdb.base/fixsection.exp: Likewise.
* gdb.base/funcargs.exp: Likewise.
* gdb.base/gcore-buffer-overflow.exp: Likewise.
* gdb.base/gcore-relro.exp: Likewise.
* gdb.base/gcore.exp, gdb.base/gdb11530.exp: Likewise.
* gdb.base/gdb11531.exp, gdb.base/gnu-ifunc.exp: Likewise.
* gdb.base/info-os.exp, gdb.base/info-proc.exp: Likewise.
* gdb.base/interp.exp, gdb.base/langs.exp:: Likewise.
* gdb.base/list.exp: Likewise.
(set_listsize): Likewise.
* gdb.base/logical.exp, gdb.base/mips_pro.exp: Likewise.
* gdb.base/miscexprs.exp, gdb.base/nodebug.exp: Likewise.
* gdb.base/opaque.exp, gdb.base/pointers.exp: Likewise.
* gdb.base/psymtab.exp, gdb.base/ptype.exp: Likewise.
* gdb.base/relational.exp, gdb.base/scope.exp: Likewise.
* gdb.base/setvar.exp: Likewise.
(test_set): Likewise.
* gdb.base/signals.exp, gdb.base/sizeof.exp: Likewise.
* gdb.base/solib-overlap.exp: Likewise.
* gdb.base/store.exp, gdb.base/structs.exp: Likewise.
* gdb.base/structs2.exp, gdb.base/volatile.exp: Likewise.
* gdb.base/watchpoint.exp (initialize): Likewise.
(test_simple_watchpoint): Likewise.
(test_disabling_watchpoints): Likewise.
(test_watchpoint_triggered_in_syscall): Likewise.
* gdb.base/whatis.exp, gdb.cp/ambiguous.exp: Likewise.
* gdb.cp/casts.exp, gdb.cp/ctti.exp: Likewise.
* gdb.cp/namespace.exp, gdb.cp/nsdecl.exp: Likewise.
* gdb.cp/psmang.exp, gdb.dwarf2/dw2-ranges.exp: Likewise.
* gdb.hp/gdb.aCC/optimize.exp: Likewise.
* gdb.hp/gdb.aCC/watch-cmd.exp: Likewise.
* gdb.hp/gdb.base-hp/callfwmall.exp: Likewise.
* gdb.hp/gdb.base-hp/pxdb.exp: Likewise.
* gdb.hp/gdb.compat/xdb1.exp: Likewise.
* gdb.hp/gdb.compat/xdb2.exp: Likewise.
* gdb.hp/gdb.compat/xdb3.exp: Likewise.
* gdb.hp/gdb.defects/bs14602.exp: Likewise.
* gdb.hp/gdb.defects/solib-d.exp: Likewise.
* gdb.mi/gdb792.exp: Likewise.
* gdb.mi/mi-inheritance-syntax-error.exp: Likewise.
* gdb.mi/mi-logging.exp, gdb.mi/mi-var-cp.exp : Likewise.
* gdb.mi/mi-var-rtti.exp, gdb.python/py-type.exp: Likewise.
* gdb.threads/gcore-thread.exp: Likewise.
(load_core): Likewise.
* gdb.threads/pthreads.exp (all_threads_running): Likewise.
(test_startup, check_control_c): Likewise.
* gdb.threads/sigstep-threads.exp: Likewise.
* gdb.threads/thread_check.exp: Likewise.
* gdb.trace/backtrace.exp, gdb.trace/change-loc.exp: Likewise.
* gdb.trace/circ.exp (run_trace_experiment): Likewise.
(set_a_tracepoint, trace_buffer_normal): Likewise.
(gdb_trace_circular_tests): Likewise.
* gdb.trace/collection.exp: Likewise.
* gdb.trace/disconnected-tracing.exp: Likewise.
* gdb.trace/infotrace.exp: Likewise.
* gdb.trace/mi-traceframe-changed.exp: Likewise.
* gdb.trace/mi-tracepoint-changed.exp: Likewise.
* gdb.trace/mi-tsv-changed.exp (test_create_delete_modify_tsv): Likewise.
* gdb.trace/packetlen.exp, gdb.trace/passc-dyn.exp: Likewise.
* gdb.trace/pending.exp, gdb.trace/report.exp: Likewise.
* gdb.trace/stap-trace.exp: Likewise.
* gdb.trace/status-stop.exp,gdb.trace/strace.exp: Likewise.
* gdb.trace/tfind.exp, gdb.trace/trace-break.exp: Likewise.
* gdb.trace/trace-buffer-size.exp: Likewise.
* gdb.trace/tspeed.exp, gdb.trace/tsv.exp: Likewise.
* gdb.trace/unavailable.exp: Likewise.
* gdb.trace/while-dyn.exp: Likewise.
* lib/fortran.exp (set_lang_fortran): Likewise.
* lib/gdb.exp (default_gdb_version, gdb_start_cmd): Likewise.
(gdb_breakpoint, gdb_reinitialize_dir): Likewise.
(default_gdb_start, get_compiler_info): Likewise.
(gdb_compile, gdb_compile_objc, gdb_reload, gdb_init): Likewise.
(get_debug_format, setup_xfail_format): Likewise.
(rerun_to_main, gdb_skip_float_test): Likewise.
(build_id_debug_filename_get, get_remotetimeout): Likewise.
* lib/java.exp (set_lang_java): Likewise.
* lib/mi-support.exp (default_mi_gdb_start): Likewise.
(mi_gdb_reinitialize_dir, mi_gdb_target_cmd): Likewise.
(mi_gdb_file_cmd, mi_gdb_test): Likewise.
(mi_run_cmd_full, mi_expect_interrupt): Likewise.
* lib/objc.exp (set_lang_objc): Likewise.
* lib/pascal.exp (set_lang_pascal): Likewise.
* lib/prompt.exp (default_prompt_gdb_start): Likewise.
* lib/trace-support.exp (gdb_trace_setactions, gdb_tfind_test): Likewise.
(gdb_readexpr, gdb_gettpnum, gdb_find_recursion_test_baseline): Likewise.
2013-03-14 13:34:06 +00:00
|
|
|
return 1
|
2010-12-13 05:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_delete_tracepoints
|
2013-06-07 17:31:09 +00:00
|
|
|
set trcpt1 [gdb_gettpnum gdb_c_test]
|
2013-03-13 03:25:13 +00:00
|
|
|
|
|
|
|
if { $trcpt1 <= 0 } then {
|
2010-12-13 05:29:32 +00:00
|
|
|
fail "setting tracepoints"
|
2013-06-07 17:31:09 +00:00
|
|
|
return
|
2010-12-13 05:29:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "tvariable \$tvar5 = 15" \
|
|
|
|
"Trace state variable \\\$tvar5 created, with initial value 15." \
|
|
|
|
"Create a trace state variable tvar5"
|
|
|
|
|
|
|
|
gdb_trace_setactions "collect tsv for first tracepoint" \
|
|
|
|
"$trcpt1" \
|
|
|
|
"collect \$tvar5 += 1" "^$"
|
|
|
|
|
2013-03-13 03:25:13 +00:00
|
|
|
gdb_test_no_output "tstart" ""
|
2010-12-13 05:29:32 +00:00
|
|
|
|
|
|
|
gdb_test "print \$tvar5" " = 15" \
|
|
|
|
"Print a trace state variable at start of run"
|
|
|
|
|
|
|
|
# Be sure not to fall off the end of the program.
|
|
|
|
gdb_test "break end" ".*" ""
|
|
|
|
gdb_test "continue" \
|
|
|
|
"Continuing.*Breakpoint $decimal, end.*" \
|
|
|
|
"run trace experiment"
|
|
|
|
|
|
|
|
gdb_test "print \$tvar5" " = 16" \
|
|
|
|
"Print a trace state variable during run"
|
|
|
|
|
2013-03-13 03:25:13 +00:00
|
|
|
gdb_test_no_output "tstop" ""
|
2010-12-13 05:29:32 +00:00
|
|
|
|
2013-03-13 03:40:27 +00:00
|
|
|
# Save trace frames to tfile.
|
|
|
|
set tracefile [standard_output_file ${testfile}]
|
|
|
|
gdb_test "tsave ${tracefile}.tf" \
|
|
|
|
"Trace data saved to file '${tracefile}.tf'.*" \
|
|
|
|
"save tfile trace file"
|
gdb/
2013-04-10 Hui Zhu <hui@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* configure.ac: Check libbabeltrace is installed.
* config.in: Regenerate.
* configure: Regenerate.
* Makefile.in (LIBBABELTRACE): New.
(CLIBS): Add LIBBABELTRACE.
* ctf.c: Include "exec.h".
(CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
(CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
(ctf_save_metadata_header): Define new type aliases in
metadata.
(ctf_write_header): Define event type "tsv_def" and "tp_def"
in metadata. Start a new faked packet for trace status.
(ctf_write_status): Write trace status to CTF.
(ctf_write_uploaded_tsv): Write TSV to CTF.
(ctf_write_uploaded_tp): Write tracepoint definition to CTF.
(ctf_write_definition_end): End the faked packet.
(ctx, ctf_iter, trace_dirname): New.
(start_pos): New variable.
(ctf_destroy, ctf_open_dir, ctf_open): New.
(SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
macros.
(ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
(ctf_fetch_registers, ctf_xfer_partial): New.
(ctf_get_trace_state_variable_value): New.
(ctf_get_tpnum_from_frame_event): New.
(ctf_get_traceframe_address): New.
(ctf_trace_find, ctf_has_stack): New.
(ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
(ctf_get_trace_status, ctf_read_status): New.
(_initialize_ctf): New.
* tracepoint.c (get_tracepoint_number): New
(get_uploaded_tsv): Remove 'static'.
(struct traceframe_info, trace_regblock_size): Move it to ...
* tracepoint.h: ... here.
(get_tracepoint_number): Declare it.
(get_uploaded_tsv): Declare it.
* NEWS: Mention new configure option.
gdb/doc/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.texinfo (Trace Files): Add "target ctf".
gdb/testsuite/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.trace/actions.exp: Save trace data to CTF.
Change to ctf target if GDB supports, read CTF data in ctf
target, and check the actions of tracepoints.
* gdb.trace/while-stepping.exp: Likewise.
* gdb.trace/report.exp: Test GDB saves trace data to CTF
format and read CTF trace file if GDB supports.
* gdb.trace/tstatus.exp: Save trace data to CTF. If ctf
target is supported, change to ctf target, read trace data and
check output of command "tstatus".
* gdb.trace/tsv.exp: Save trace frame to CTF. If GDB supports,
read CTF data by target ctf and call check_tsv.
2013-04-10 09:42:57 +00:00
|
|
|
# Save trace frames to ctf.
|
|
|
|
gdb_test "tsave -ctf ${tracefile}.ctf" \
|
|
|
|
"Trace data saved to directory '${tracefile}.ctf'.*" \
|
|
|
|
"save ctf trace file"
|
2013-03-13 03:40:27 +00:00
|
|
|
|
|
|
|
proc check_tsv { data_source } {
|
|
|
|
with_test_prefix "${data_source}" {
|
|
|
|
gdb_test "tfind 0"
|
|
|
|
gdb_test "print \$tvar5" " = 16" \
|
|
|
|
"Print a trace state variable"
|
|
|
|
gdb_test "tfind" \
|
|
|
|
"Target failed to find requested trace frame.*"
|
|
|
|
}
|
|
|
|
}
|
2010-12-13 05:29:32 +00:00
|
|
|
|
2013-03-13 03:40:27 +00:00
|
|
|
# Check the tsv from the live inferior.
|
|
|
|
check_tsv "live"
|
|
|
|
|
|
|
|
# Change target to tfile.
|
|
|
|
set test "change to tfile target"
|
|
|
|
gdb_test_multiple "target tfile ${tracefile}.tf" "$test" {
|
|
|
|
-re "A program is being debugged already. Kill it. .y or n. " {
|
|
|
|
send_gdb "y\n"
|
|
|
|
exp_continue
|
|
|
|
}
|
|
|
|
-re "$gdb_prompt $" {
|
|
|
|
pass "$test"
|
|
|
|
}
|
|
|
|
}
|
2009-12-28 23:39:10 +00:00
|
|
|
|
2013-03-13 03:40:27 +00:00
|
|
|
# Check the tsv from tfile.
|
gdb/
2013-04-10 Hui Zhu <hui@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* configure.ac: Check libbabeltrace is installed.
* config.in: Regenerate.
* configure: Regenerate.
* Makefile.in (LIBBABELTRACE): New.
(CLIBS): Add LIBBABELTRACE.
* ctf.c: Include "exec.h".
(CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
(CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
(ctf_save_metadata_header): Define new type aliases in
metadata.
(ctf_write_header): Define event type "tsv_def" and "tp_def"
in metadata. Start a new faked packet for trace status.
(ctf_write_status): Write trace status to CTF.
(ctf_write_uploaded_tsv): Write TSV to CTF.
(ctf_write_uploaded_tp): Write tracepoint definition to CTF.
(ctf_write_definition_end): End the faked packet.
(ctx, ctf_iter, trace_dirname): New.
(start_pos): New variable.
(ctf_destroy, ctf_open_dir, ctf_open): New.
(SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
macros.
(ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
(ctf_fetch_registers, ctf_xfer_partial): New.
(ctf_get_trace_state_variable_value): New.
(ctf_get_tpnum_from_frame_event): New.
(ctf_get_traceframe_address): New.
(ctf_trace_find, ctf_has_stack): New.
(ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
(ctf_get_trace_status, ctf_read_status): New.
(_initialize_ctf): New.
* tracepoint.c (get_tracepoint_number): New
(get_uploaded_tsv): Remove 'static'.
(struct traceframe_info, trace_regblock_size): Move it to ...
* tracepoint.h: ... here.
(get_tracepoint_number): Declare it.
(get_uploaded_tsv): Declare it.
* NEWS: Mention new configure option.
gdb/doc/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.texinfo (Trace Files): Add "target ctf".
gdb/testsuite/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.trace/actions.exp: Save trace data to CTF.
Change to ctf target if GDB supports, read CTF data in ctf
target, and check the actions of tracepoints.
* gdb.trace/while-stepping.exp: Likewise.
* gdb.trace/report.exp: Test GDB saves trace data to CTF
format and read CTF trace file if GDB supports.
* gdb.trace/tstatus.exp: Save trace data to CTF. If ctf
target is supported, change to ctf target, read trace data and
check output of command "tstatus".
* gdb.trace/tsv.exp: Save trace frame to CTF. If GDB supports,
read CTF data by target ctf and call check_tsv.
2013-04-10 09:42:57 +00:00
|
|
|
|
2013-03-13 03:40:27 +00:00
|
|
|
check_tsv "tfile"
|
gdb/
2013-04-10 Hui Zhu <hui@codesourcery.com>
Yao Qi <yao@codesourcery.com>
* configure.ac: Check libbabeltrace is installed.
* config.in: Regenerate.
* configure: Regenerate.
* Makefile.in (LIBBABELTRACE): New.
(CLIBS): Add LIBBABELTRACE.
* ctf.c: Include "exec.h".
(CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
(CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
(ctf_save_metadata_header): Define new type aliases in
metadata.
(ctf_write_header): Define event type "tsv_def" and "tp_def"
in metadata. Start a new faked packet for trace status.
(ctf_write_status): Write trace status to CTF.
(ctf_write_uploaded_tsv): Write TSV to CTF.
(ctf_write_uploaded_tp): Write tracepoint definition to CTF.
(ctf_write_definition_end): End the faked packet.
(ctx, ctf_iter, trace_dirname): New.
(start_pos): New variable.
(ctf_destroy, ctf_open_dir, ctf_open): New.
(SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
macros.
(ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
(ctf_fetch_registers, ctf_xfer_partial): New.
(ctf_get_trace_state_variable_value): New.
(ctf_get_tpnum_from_frame_event): New.
(ctf_get_traceframe_address): New.
(ctf_trace_find, ctf_has_stack): New.
(ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
(ctf_get_trace_status, ctf_read_status): New.
(_initialize_ctf): New.
* tracepoint.c (get_tracepoint_number): New
(get_uploaded_tsv): Remove 'static'.
(struct traceframe_info, trace_regblock_size): Move it to ...
* tracepoint.h: ... here.
(get_tracepoint_number): Declare it.
(get_uploaded_tsv): Declare it.
* NEWS: Mention new configure option.
gdb/doc/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.texinfo (Trace Files): Add "target ctf".
gdb/testsuite/
2013-04-10 Yao Qi <yao@codesourcery.com>
* gdb.trace/actions.exp: Save trace data to CTF.
Change to ctf target if GDB supports, read CTF data in ctf
target, and check the actions of tracepoints.
* gdb.trace/while-stepping.exp: Likewise.
* gdb.trace/report.exp: Test GDB saves trace data to CTF
format and read CTF trace file if GDB supports.
* gdb.trace/tstatus.exp: Save trace data to CTF. If ctf
target is supported, change to ctf target, read trace data and
check output of command "tstatus".
* gdb.trace/tsv.exp: Save trace frame to CTF. If GDB supports,
read CTF data by target ctf and call check_tsv.
2013-04-10 09:42:57 +00:00
|
|
|
# Try to read ctf data if GDB supports.
|
|
|
|
gdb_test_multiple "target ctf ${tracefile}.ctf" "" {
|
|
|
|
-re "Undefined target command: \"ctf ${tracefile}.ctf\"\. Try \"help target\"\.\r\n$gdb_prompt $" {
|
|
|
|
}
|
|
|
|
-re ".*\r\n$gdb_prompt $" {
|
|
|
|
check_tsv "ctf"
|
|
|
|
}
|
|
|
|
}
|
2013-06-25 13:01:28 +00:00
|
|
|
|
|
|
|
# Restart.
|
|
|
|
clean_restart ${binfile}
|
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
fail "Can't run to main"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
# If there are predefined TSVs, test these predefined TSVs are correctly
|
|
|
|
# uploaded.
|
|
|
|
if [target_info exists gdb,predefined_tsv] {
|
|
|
|
set tsv [target_info gdb,predefined_tsv]
|
|
|
|
|
|
|
|
# Test predefined TSVs are uploaded.
|
|
|
|
gdb_test "info tvariables" ".*${tsv}.*" "predefined tsvs are uploaded"
|
|
|
|
} else {
|
|
|
|
# Otherwise (the predefined TSVs are not defined in the board file),
|
|
|
|
# test there is no TSVs in GDB.
|
|
|
|
gdb_test "info tvariables" "No trace state variables\." \
|
|
|
|
"no predefined tsvs"
|
|
|
|
}
|