aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.rocm/code-object-load-while-breakpoint-hit.exp
blob: 3fe6a952c1d586272223847ce4b1a5460daf2e06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Copyright 2025 Free Software Foundation, Inc.

# This file is part of GDB.

# 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/>.

# This test verifies what happens when a code object list update happens at the
# same time as some wave stop events are reported.  It was added following a
# performance bug fix, where forward progress requirement disabled when
# pulling events from amd-dbgapi in amd_dbgapi_target_breakpoint::check_status.
#
# The test launches a kernel that hits a breakpoint with an always false
# condition a certain number of times.  Meanwhile, the host loads and unloads
# a code object in a loop, causing check_status to be called.  The hope is that
# check_status, when calling process_event_queue, will pull many WAVE_STOP
# events from the kernel hitting the breakpoint.
#
# Without the appropriate fix (of disabling forward progress requirement in
# check_status), GDB would hit the newly-added assert in process_event_queue,
# which verifies that forward progress requirement is disabled.  Even without
# this assert, the test would likely time out (depending on the actual timeout
# value).

load_lib rocm.exp
standard_testfile .cpp
require allow_hipcc_tests

# Build the host executable.
if { [build_executable "failed to prepare" \
	  $testfile $srcfile {debug hip}] == -1 } {
    return -1
}

set hipmodule_path [standard_output_file ${testfile}.co]

# Build the kernel object file.
if { [gdb_compile $srcdir/$subdir/$srcfile \
	$hipmodule_path object \
	{ debug hip additional_flags=--genco additional_flags=-DDEVICE } ] != "" } {
    return -1
}

proc do_test { } {
    with_rocm_gpu_lock {
	clean_restart $::binfile
	gdb_test_no_output "set args $::hipmodule_path" "set args"

	if { ![runto_main] } {
		return
	}

	gdb_test "with breakpoint pending on -- break break_here if 0"
	gdb_continue_to_end "continue to end" "continue" 1
    }
}

do_test