From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7181 invoked by alias); 18 Apr 2013 15:40:08 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 7170 invoked by uid 89); 18 Apr 2013 15:40:07 -0000 X-Spam-SWARE-Status: No, score=-4.7 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL autolearn=ham version=3.3.1 Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Thu, 18 Apr 2013 15:40:06 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1USqwO-0000se-6Y from Hafiz_Abid@mentor.com ; Thu, 18 Apr 2013 08:40:04 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Thu, 18 Apr 2013 08:40:03 -0700 Received: from abidh-ubunto1104 (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server (TLS) id 14.2.247.3; Thu, 18 Apr 2013 16:40:02 +0100 Date: Fri, 19 Apr 2013 14:27:00 -0000 From: "Abid, Hafiz" Subject: Re: [patch] circ.exp To: Pedro Alves CC: In-Reply-To: <516EC437.5060400@redhat.com> (from palves@redhat.com on Wed Apr 17 16:48:07 2013) Message-ID: <1366299596.16770.1@abidh-ubunto1104> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-r31H2Rk4TqsIYYj9tCcL" X-Virus-Found: No X-SW-Source: 2013-04/txt/msg00571.txt.bz2 --=-r31H2Rk4TqsIYYj9tCcL Content-Type: text/plain; charset="us-ascii"; delsp=Yes; format=Flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-length: 2657 Hi Pedro, Thanks for your review and explanation. Here is an updated patch. On 17/04/13 16:48:07, Pedro Alves wrote: > We should update the comments and test messages too then: Done. > Then might as well make all similar tfinds in the non-circular cases > use "tfind tracepoint" too for consistency. Done. > I feel that we should only use commands. There's no good reason > to limit the test to the remote protocol. As soon as someone=20=20 > implements > tracepoints on some other target (native or something else), we'd > need to stop using direct RSP packets anyway. The test used a direct > packet because there was no user-accessible support for changing the > trace buffer size. It was just a hack. Done. > BTW, I realized this is the existing style in the test, but > these "if (...) then return 1" sprinkled around are really > unnecessary. >=20 > + if [setup_tracepoints] then { return 1 } > + if [gdb_test "break end" "Breakpoint $decimal.*" \ > + "breakpoint at end"] then { return 1 } > + if [gdb_test "tstart" \ > + "\[\r\n\]*" \ > + "start trace experiment"] then { return 1 } >=20 > I'd zap them. Done. > I see. The issue is that when haven't collected any registers in the > the tracepoint (collect $regs), we end up with a frames that are > un-unwindable (UNWIND_UNAVAILABLE). All frames in that case have the=20= =20 > same > id (outer_frame_id), even if they represent different functions. I=20=20 > started > out with a local fix in tfind_1, but that got ugly quick. I think we > should fix this in the frame machinery itself. Here's a WIP patch=20=20 > for that. > It makes us build a frame id that represents a function, with an=20=20 > > stack address. I haven't thought every detail through, but I think=20=20 > it's > on the right path. Your wip patch seems to solve the problem. I run the testsuite with it=20=20 and no regression. However, this testcase does not depend on this behavior and both=20=20 patches can go in independantly. Regards, Abid 2013-04-18 Hafiz Abid Qadeer * gdb.trace/circ.exp: Remove unnecessary 'if then' checks. (run_trace_experiment): Test setup_tracepoints and 'break end' in it. (trace_buffer_normal): Remove. (gdb_trace_circular_tests): Remove. Move tests to... (top level): ...here. Call 'runto_main' before checking for trace support. Use commands to check the support for circular trace buffer and changing of trace buffer size. Add test to calculate size of single frame. Use this size to calculate the size of trace buffer. Use 'tfind tracepoint 9' instead of 'tfind 9'. Use 'with_test_prefix'. --=-r31H2Rk4TqsIYYj9tCcL Content-Type: text/x-patch; charset="us-ascii"; name="circ_v3.patch" Content-Disposition: attachment; filename="circ_v3.patch" Content-Transfer-Encoding: quoted-printable Content-length: 13166 diff --git a/gdb/testsuite/gdb.trace/circ.exp b/gdb/testsuite/gdb.trace/cir= c.exp index 4c47228..c2d1575 100644 --- a/gdb/testsuite/gdb.trace/circ.exp +++ b/gdb/testsuite/gdb.trace/circ.exp @@ -15,7 +15,6 @@ =20 load_lib "trace-support.exp" =20 - standard_testfile =20 if {[prepare_for_testing $testfile.exp $testfile $srcfile {debug nowarning= s}]} { @@ -23,194 +22,232 @@ if {[prepare_for_testing $testfile.exp $testfile $src= file {debug nowarnings}]} { } =20 # Tests: -# 1) Set up a trace experiment that will collect approximately 10 frames, +# 1) Calculate the size taken by one trace frame. +# 2) Set up a trace experiment that will collect approximately 10 frames, # requiring more than 512 but less than 1024 bytes of cache buffer. # (most targets should have at least 1024 bytes of cache buffer!) # Run and confirm that it collects all 10 frames. -# 2) Artificially limit the trace buffer to 512 bytes, and rerun the -# experiment. Confirm that the first several frames are collected, -# but that the last several are not. -# 3) Set trace buffer to circular mode, still with the artificial limit -# of 512 bytes, and rerun the experiment. Confirm that the last=20 -# several frames are collected, but the first several are not. +# 3) Artificially limit the trace buffer to 4x + a bytes. Here x is the s= ize +# of single trace frame and a is a small constant. Rerun the +# experiment. Confirm that the frame for the first tracepoint is colle= cted, +# but frames for the last several tracepoints are not. +# 4) Set trace buffer to circular mode, with the size buffer size as in +# step 3 above. Rerun the experiment. Confirm that the frame for the = last +# tracepoint is collected but not for the first one. # =20 -# return 0 for success, 1 for failure -proc run_trace_experiment { pass } { - gdb_run_cmd=20 - - if [gdb_test "tstart" \ - "\[\r\n\]*" \ - "start trace experiment, pass $pass"] then { return 1 } - if [gdb_test "continue" \ - "Continuing.*Breakpoint \[0-9\]+, end.*" \ - "run to end, pass $pass"] then { return 1 } - if [gdb_test "tstop" \ - "\[\r\n\]*" \ - "stop trace experiment, pass $pass"] then { return 1 } - return 0 +# Set a tracepoint on given func. Return 0 for success, +# 1 for failure. +proc set_a_tracepoint { func } { + gdb_test "trace $func" "Tracepoint \[0-9\]+ at .*" \ + "set tracepoint at $func" + gdb_trace_setactions "set actions for $func" "" "collect testload" "^$" } =20 -# return 0 for success, 1 for failure -proc set_a_tracepoint { func } { - if [gdb_test "trace $func" \ - "Tracepoint \[0-9\]+ at .*" \ - "set tracepoint at $func"] then { +# Sets the tracepoints from func0 to func9 using +# set_a_tracepoint. Return 0 for success, 1 for failure. +proc setup_tracepoints { } { + gdb_delete_tracepoints + set_a_tracepoint func0 + set_a_tracepoint func1 + set_a_tracepoint func2 + set_a_tracepoint func3 + set_a_tracepoint func4 + set_a_tracepoint func5 + set_a_tracepoint func6 + set_a_tracepoint func7 + set_a_tracepoint func8 + set_a_tracepoint func9 +} + +# Start the trace, run to end and then stop the trace. +# Return 0 for success, 1 for failure. +proc run_trace_experiment { } { + global decimal + + setup_tracepoints + gdb_test "break end" "Breakpoint $decimal.*" "breakpoint at end" + gdb_test "tstart" "\[\r\n\]*" "start trace experiment" + gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, end.*" \ + "run to end" + gdb_test "tstop" "\[\r\n\]*" "stop trace experiment" +} + +if { ![runto_main] } { + fail "can't run to main to check for trace support" + return -1 +} + +if { ![gdb_target_supports_trace] } { + unsupported "target does not support trace" + return 1 +} + +gdb_test_no_output "set circular-trace-buffer on" \ + "set circular-trace-buffer on" + +gdb_test "show circular-trace-buffer" \ + "Target's use of circular trace buffer is on." \ + "show circular-trace-buffer (on)" + +if [gdb_test "tstatus" ".*Trace buffer is circular.*" \ + "circular buffer is supported"] { + unsupported "target does not support circular trace buffer" return 1 - } - if [gdb_trace_setactions "set actions for $func" \ - "" \ - "collect testload" "^$"] then { +} + +# Check if changing trace buffer size is supported. This step is +# repeated twice. This helps in case if trace buffer size is 100. +set test_size 100 +gdb_test_no_output "set trace-buffer-size $test_size" \ + "change buffer size to $test_size" + +if [gdb_test "tstatus" \ + ".*Trace buffer has $decimal bytes of $test_size bytes free.*" \ + "buffer size is $test_size"] { + unsupported "target does not support changing trace buffer size" return 1 - } - return 0 } =20 -# return 0 for success, 1 for failure -proc setup_tracepoints { } { - gdb_delete_tracepoints - if [set_a_tracepoint func0] then { return 1 } - if [set_a_tracepoint func1] then { return 1 } - if [set_a_tracepoint func2] then { return 1 } - if [set_a_tracepoint func3] then { return 1 } - if [set_a_tracepoint func4] then { return 1 } - if [set_a_tracepoint func5] then { return 1 } - if [set_a_tracepoint func6] then { return 1 } - if [set_a_tracepoint func7] then { return 1 } - if [set_a_tracepoint func8] then { return 1 } - if [set_a_tracepoint func9] then { return 1 } - return 0 +set test_size 200 +gdb_test_no_output "set trace-buffer-size $test_size" \ + "change buffer size to $test_size" + +if [gdb_test "tstatus" \ + ".*Trace buffer has $decimal bytes of $test_size bytes free.*" \ + "buffer size is $test_size"] { + unsupported "target does not support changing trace buffer size" + return 1 } =20 -# return 0 for success, 1 for failure -proc trace_buffer_normal { } { - global gdb_prompt +gdb_test_no_output "set circular-trace-buffer off" \ + "set circular-trace-buffer off" + +gdb_test "show circular-trace-buffer" \ + "Target's use of circular trace buffer is off." \ + "show circular-trace-buffer (off)" + +set total_size -1 +set free_size -1 +set frame_size -1 =20 - set ok 0 - set test "maint packet QTBuffer:size:ffffffff" - gdb_test_multiple $test $test { - -re "received: .OK.\r\n$gdb_prompt $" { - set ok 1 +# Determine the size used by a single frame. Put single tracepoint, +# run and then check the total and free size using tstatus command. +# Then subtracting free from total gives us the size of a frame. +with_test_prefix "frame size" { + set_a_tracepoint func0 + + gdb_test "break end" "Breakpoint $decimal.*" "breakpoint at end" + + gdb_test "tstart" "\[\r\n\]*" "start trace" + + gdb_test "continue" "Continuing.*Breakpoint \[0-9\]+, end.*" \ + "run to end" + + gdb_test "tstop" "\[\r\n\]*" "stop trace" + + set test "get buffer size" + + gdb_test_multiple "tstatus" $test { + -re ".*Trace buffer has ($decimal) bytes of ($decimal) bytes free.*$gdb_p= rompt $" { + set free_size $expect_out(1,string) + set total_size $expect_out(2,string) pass $test } - -re "\r\n$gdb_prompt $" { - } } - if { !$ok } { - unsupported $test + + # Check that we get the total_size and free_size + if { $total_size < 0 } { return 1 } =20 - set ok 0 - set test "maint packet QTBuffer:circular:0" - gdb_test_multiple $test $test { - -re "received: .OK.\r\n$gdb_prompt $" { - set ok 1 - pass $test - } - -re "\r\n$gdb_prompt $" { - } - } - if { !$ok } { - unsupported $test + if { $free_size < 0 } { return 1 } - - return 0 } =20 -# return 0 for success, 1 for failure -proc gdb_trace_circular_tests { } { - if { ![gdb_target_supports_trace] } then {=20 - unsupported "Current target does not support trace" +# Calculate the size of a single frame +set frame_size "($total_size - $free_size)" + +with_test_prefix "normal buffer" { + clean_restart $testfile + + if { ![runto_main] } { + fail "can't run to main" return 1 } =20 - if [trace_buffer_normal] then { return 1 } - - gdb_test "break begin" ".*" "" - gdb_test "break end" ".*" "" - gdb_test "tstop" ".*" "" - gdb_test "tfind none" ".*" "" + run_trace_experiment =20 - if [setup_tracepoints] then { return 1 } + # Check that frame 0 is actually at func0. + gdb_test "tfind start" ".*#0 func0 .*" \ + "find first frame" =20 - # First, run the trace experiment with default attributes: - # Make sure it behaves as expected. - if [run_trace_experiment 1] then { return 1 } - if [gdb_test "tfind start" \ - "#0 func0 .*" \ - "find frame zero, pass 1"] then { return 1 } + gdb_test "tfind tracepoint 9" \ + ".*Found trace frame $decimal, tracepoint 9.*" \ + "find frame for tracepoint 9" +} =20 - if [gdb_test "tfind 9" \ - "#0 func9 .*" \ - "find frame nine, pass 1"] then { return 1 } +# Shrink the trace buffer so that it will not hold +# all ten trace frames. Verify that frame zero is still +# collected, but frame nine is not. =20 - if [gdb_test "tfind none" \ - "#0 end .*" \ - "quit trace debugging, pass 1"] then { return 1 } +set buffer_size "((4 * $frame_size) + 10)" +with_test_prefix "small buffer" { + clean_restart $testfile =20 - # Then, shrink the trace buffer so that it will not hold - # all ten trace frames. Verify that frame zero is still - # collected, but frame nine is not. - if [gdb_test "maint packet QTBuffer:size:200" \ - "received: .OK." "shrink the target trace buffer"] then {=20 - return 1 - } - if [run_trace_experiment 2] then { return 1 } - if [gdb_test "tfind start" \ - "#0 func0 .*" \ - "find frame zero, pass 2"] then { return 1 } - - if [gdb_test "tfind 9" \ - ".* failed to find .*" \ - "fail to find frame nine, pass 2"] then { return 1 } - - if [gdb_test "tfind none" \ - "#0 end .*" \ - "quit trace debugging, pass 2"] then { return 1 } - - # Finally, make the buffer circular. Now when it runs out of - # space, it should wrap around and overwrite the earliest frames. - # This means that: - # 1) frame zero will be overwritten and therefore unavailable - # 2) the earliest frame in the buffer will be other-than-zero - # 3) frame nine will be available (unlike on pass 2). - if [gdb_test "maint packet QTBuffer:circular:1" \ - "received: .OK." "make the target trace buffer circular"] then {=20 + if { ![runto_main] } { + fail "can't run to main" return 1 } - if [run_trace_experiment 3] then { return 1 } - if [gdb_test "tfind start" \ - "#0 func\[1-9\] .*" \ - "first frame is NOT frame zero, pass 3"] then { return 1 } =20 - if [gdb_test "tfind 9" \ - "#0 func9 .*" \ - "find frame nine, pass 3"] then { return 1 } + gdb_test_no_output "set trace-buffer-size $buffer_size" \ + "shrink the target trace buffer" + + run_trace_experiment =20 - if [gdb_test "tfind none" \ - "#0 end .*" \ - "quit trace debugging, pass 3"] then { return 1 } + gdb_test "tfind start" ".*#0 func0 .*" \ + "find first frame" =20 - return 0 + gdb_test "tfind none" ".*" + + gdb_test "tfind tracepoint 9" ".* failed to find .*" \ + "find frame for tracepoint 9"; } =20 -gdb_test_no_output "set circular-trace-buffer on" \ - "set circular-trace-buffer on" +# Finally, make the buffer circular. Now when it runs out of +# space, it should wrap around and overwrite the earliest frames. +# This means that: +# 1) frame zero will be overwritten and therefore unavailable +# 2) the earliest frame in the buffer will be for a tracepoint other than 1 +# 3) the frame for tracepoint 9 will be available (unlike "small buffer" c= ase). +with_test_prefix "circular buffer" { + clean_restart $testfile + + if { ![runto_main] } { + fail "can't run to main" + return 1 + } =20 -gdb_test "show circular-trace-buffer" "Target's use of circular trace buff= er is on." "show circular-trace-buffer (on)" + gdb_test_no_output "set trace-buffer-size $buffer_size" \ + "shrink the target trace buffer" =20 -gdb_test_no_output "set circular-trace-buffer off" \ - "set circular-trace-buffer off" + gdb_test_no_output "set circular-trace-buffer on" \ + "make the target trace buffer circular" =20 -gdb_test "show circular-trace-buffer" "Target's use of circular trace buff= er is off." "show circular-trace-buffer (off)" + run_trace_experiment =20 -# Body of test encased in a proc so we can return prematurely. -if { ![gdb_trace_circular_tests] } then { - # Set trace buffer attributes back to normal - trace_buffer_normal; -} + gdb_test "tstatus" \ + ".*Buffer contains $decimal trace frames \\(of $decimal created total\\).= *Trace buffer is circular.*" \ + "trace buffer is circular" =20 -# Finished! -gdb_test "tfind none" ".*" "" + # Frame 0 should not be at func0 + gdb_test "tfind start" ".*#0 func\[1-9\] .*" \ + "first frame is NOT at func0"; + + gdb_test "tfind none" ".*" + + gdb_test \ + "tfind tracepoint 9" ".*Found trace frame $decimal, tracepoint 9.*" \ + "find frame for tracepoint nine" +} --=-r31H2Rk4TqsIYYj9tCcL--