Searched defs:trap (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DUncommonTrapEvent.java48 public void updateCount(UncommonTrapEvent trap) { argument
49 setCount(Math.max(getCount(), trap.getCount()));
53 stream.printf("%s uncommon trap %s %s\n", getId(), getReason(), getAction());
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJVM_MANAGEMENT_MIB_IMPL.java108 * Translate each JMX notification in SNMP trap.
133 "No trap emitted for " + type);
137 SnmpOid trap = null;
146 trap = new SnmpOid(mibTable.
158 trap = new SnmpOid(mibTable.
188 sendTrap(trap, list);
217 private synchronized void sendTrap(SnmpOid trap, SnmpVarBindList list) { argument
223 log.error("sendTrap", "Cannot send trap: adaptor is null.");
228 log.config("sendTrap", "Adaptor is not active: trap not sent.");
241 log.debug("handleNotification", "Sending trap t
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp84 int trap = trap_state(); local
85 if (trap != 0) {
87 st->print("trap(%s) ", Deoptimization::format_trap_state(buf, sizeof(buf), trap));
766 // Initialize flags and trap history.
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp563 trap(str, array_klass,
572 trap(str, element_klass,
614 trap(str, field->holder(), str->get_field_holder_index());
620 // We used to do this: trap(str, str->get_field_signature_index());
622 // There is one good reason not to trap here. Execution can
630 // compiler throws an uncommon trap at this bytecode, you can
632 // needs to do is load a series of null values. Also, a trap
654 trap(str, NULL,
660 trap(str, unloaded_holder, str->get_method_holder_index());
694 // We used to do this: trap(st
820 void ciTypeFlow::StateVector::trap(ciBytecodeStream* str, ciKlass* klass, int index) { function in class:ciTypeFlow::StateVector
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp30 // <sys/trap.h> promises that the system will not use traps 16-31
1771 void trap( Condition c, CC cc, Register s1, Register s2 ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | rs2(s2)); } function in class:Assembler
1772 void trap( Condition c, CC cc, Register s1, int trapa ) { v8_no_cc(cc); emit_long( op(arith_op) | cond(c) | op3(trap_op3) | rs1(s1) | trapcc(cc) | immed(true) | u_field(trapa, 6, 0)); } function in class:Assembler
1773 // simple uncond. trap
1774 void trap( int trapa ) { trap( always, icc, G0, trapa ); } function in class:Assembler
2221 // traps as per trap.h (SPARC ABI?)

Completed in 59 milliseconds