Searched defs:slow (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A DjniFastGetField_x86_64.cpp70 Label slow; local
76 __ jcc (Assembler::notZero, slow);
108 __ jcc (Assembler::notEqual, slow);
113 __ bind (slow);
168 Label slow;
174 __ jcc (Assembler::notZero, slow);
203 __ jcc (Assembler::notEqual, slow);
208 __ bind (slow);
H A DjniFastGetField_x86_32.cpp66 Label slow; local
77 __ jcc (Assembler::notZero, slow);
114 __ jcc (Assembler::notEqual, slow);
124 __ bind (slow);
180 Label slow;
194 __ jcc (Assembler::notZero, slow);
229 __ jcc (Assembler::notEqual, slow);
242 __ bind (slow);
271 Label slow_with_pop, slow;
283 __ jcc (Assembler::notZero, slow);
[all...]
H A Dc1_LIRAssembler_x86.cpp463 // Emit the slow path assembly
501 // OSR-entry and therefore, we generate a slow version for OSR's
3078 // reload the register args properly if we go slow path. Yuck
3272 Label cont, slow; local
3280 __ check_klass_subtype_fast_path(src, dst, tmp, &cont, &slow, NULL);
3291 __ bind(slow);
/openjdk7/langtools/test/tools/apt/mirror/declaration/
H A DEnumDecl.java109 @Test(result={"stop", "slow", "go"})
120 slow("amber"), enum constant in enum:E
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp157 // If they do not match we jump to slow case.
232 // OSR-entry and therefore, we generate a slow version for OSR's
367 // try inlined fast unlocking first, revert to slow locking if it fails
372 // always do slow unlocking
373 // note: the slow unlocking code could be inlined here, however if we use
374 // slow unlocking, speed doesn't matter anyway and this solution is
376 // slow unlocking code is the same in either case which simplifies
463 // Emit the slow path assembly
2196 Label cont, slow; local
2202 __ check_klass_subtype_fast_path(G3, G1, tmp, tmp2, &cont, copyfunc_addr == NULL ? stub->entry() : &slow, NUL
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp640 // for slow path, use debug info for state after successful locking
1488 CodeStub* slow; local
1503 slow = new G1PreBarrierStub(addr_opr, pre_val, pre_val_patch_code, info);
1510 slow = new G1PreBarrierStub(pre_val);
1513 __ branch(lir_cond_notEqual, T_INT, slow);
1514 __ branch_destination(slow->continuation());
1573 CodeStub* slow = new G1PostBarrierStub(addr, new_val); local
1574 __ branch(lir_cond_notEqual, LP64_ONLY(T_LONG) NOT_LP64(T_INT), slow);
1575 __ branch_destination(slow->continuation());
2240 // the slow stu
[all...]

Completed in 604 milliseconds