Searched refs:bpr (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/com/sun/jdi/
H A DRequestReflectionTest.java168 BreakpointRequest bpr =
170 bpr.setSuspendPolicy(EventRequest.SUSPEND_NONE);
171 bpr.enable();
172 if (!bpr.location().method().equals(barMethod)) {
175 barMethod + " != " + bpr.location().method());
177 if (bpr.suspendPolicy() != EventRequest.SUSPEND_NONE) {
180 bpr.suspendPolicy());
182 if (!bpr.isEnabled()) {
H A DExpiredRequestDeletionTest.java132 BreakpointRequest bpr =
134 bpr.addCountFilter(1);
135 bpr.enable();
H A DMultiBreakpointsTest.java264 BreakpointRequest bpr = erm.createBreakpointRequest(method.location());
265 bpr.setSuspendPolicy(EventRequest.SUSPEND_ALL);
266 //bpr.setSuspendPolicy(EventRequest.SUSPEND_EVENT_THREAD);
267 bpr.enable();
268 return bpr;
H A DEarlyReturnNegativeTest.java204 BreakpointRequest bpr = eventRequestManager().createBreakpointRequest(method.location());
205 bpr.setSuspendPolicy(EventRequest.SUSPEND_ALL);
206 bpr.enable();
207 return bpr;
H A DTestScaffold.java376 BreakpointEvent bpr = resumeTo(targetName, methodName,
378 Location loc = bpr.location();
408 return bpr;
H A DEarlyReturnTest.java554 BreakpointRequest bpr = eventRequestManager().createBreakpointRequest(method.location());
555 bpr.setSuspendPolicy(EventRequest.SUSPEND_ALL);
556 bpr.enable();
557 return bpr;
/openjdk7/hotspot/agent/test/jdi/
H A DTestScaffold.java328 BreakpointEvent bpr = resumeTo(targetName, "main", "([Ljava/lang/String;)V");
330 return bpr;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.cpp114 s = "bpr";
224 bpr( rc_z, true, pn, L4, pc(), relocInfo::oop_type );
226 bpr( rc_lez, false, pt, L5, lbl1);
2144 bpr( rc_z, a, p, s1, L );
2154 bpr( rc_nz, a, p, s1, L );
2981 bpr(Assembler::rc_z, false, Assembler::pn, method_result, did_save ? L_no_such_interface_restore : L_no_such_interface);
4774 bpr(rc_nz, true, Assembler::pt, src, done);
4779 bpr(rc_z, false, Assembler::pn, src, done);
4821 bpr(rc_nz, true, Assembler::pt, dst, done);
H A Dassembler_sparc.inline.hpp83 inline void Assembler::bpr( RCondition c, bool a, Predict p, Register s1, address d, relocInfo::relocType rt ) { v9_only(); cti(); emit_data( op(branch_op) | annul(a) | cond(c) | op2(bpr_op2) | wdisp16(intptr_t(d), intptr_t(pc())) | predict(p) | rs1(s1), rt); has_delay_slot(); } function in class:Assembler
84 inline void Assembler::bpr( RCondition c, bool a, Predict p, Register s1, Label& L) { bpr( c, a, p, s1, target(L)); } function in class:Assembler
H A Dassembler_sparc.hpp1248 inline void bpr(RCondition c, bool a, Predict p, Register s1, address d, relocInfo::relocType rt = relocInfo::none);
1249 inline void bpr(RCondition c, bool a, Predict p, Register s1, Label& L);

Completed in 109 milliseconds