Lines Matching refs:run

86 	struct kvm_run *run;
104 run = vcpu->run;
111 TEST_ASSERT(run->exit_reason == KVM_EXIT_DEBUG &&
112 run->debug.arch.exception == BP_VECTOR &&
113 run->debug.arch.pc == CAST_TO_RIP(sw_bp),
115 run->exit_reason, run->debug.arch.exception,
116 run->debug.arch.pc, CAST_TO_RIP(sw_bp));
128 TEST_ASSERT(run->exit_reason == KVM_EXIT_DEBUG &&
129 run->debug.arch.exception == DB_VECTOR &&
130 run->debug.arch.pc == CAST_TO_RIP(hw_bp) &&
131 run->debug.arch.dr6 == target_dr6,
134 i, run->exit_reason, run->debug.arch.exception,
135 run->debug.arch.pc, CAST_TO_RIP(hw_bp),
136 run->debug.arch.dr6, target_dr6);
151 TEST_ASSERT(run->exit_reason == KVM_EXIT_DEBUG &&
152 run->debug.arch.exception == DB_VECTOR &&
153 run->debug.arch.pc == CAST_TO_RIP(write_data) &&
154 run->debug.arch.dr6 == target_dr6,
157 i, run->exit_reason, run->debug.arch.exception,
158 run->debug.arch.pc, CAST_TO_RIP(write_data),
159 run->debug.arch.dr6, target_dr6);
177 TEST_ASSERT(run->exit_reason == KVM_EXIT_DEBUG &&
178 run->debug.arch.exception == DB_VECTOR &&
179 run->debug.arch.pc == target_rip &&
180 run->debug.arch.dr6 == target_dr6,
183 i, run->exit_reason, run->debug.arch.exception,
184 run->debug.arch.pc, target_rip, run->debug.arch.dr6,
195 TEST_ASSERT(run->exit_reason == KVM_EXIT_DEBUG &&
196 run->debug.arch.exception == DB_VECTOR &&
197 run->debug.arch.pc == CAST_TO_RIP(bd_start) &&
198 run->debug.arch.dr6 == target_dr6,
201 run->exit_reason, run->debug.arch.exception,
202 run->debug.arch.pc, target_rip, run->debug.arch.dr6,
205 /* Disable all debug controls, run to the end */