Searched refs:cur_val (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.inline.hpp64 const idx_t cur_val = (idx_t) Atomic::cmpxchg_ptr((void*) new_val,
67 if (cur_val == old_val) {
70 old_val = cur_val; // The value changed, try again.
85 const idx_t cur_val = (idx_t) Atomic::cmpxchg_ptr((void*) new_val,
88 if (cur_val == old_val) {
91 old_val = cur_val; // The value changed, try again.
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp996 void LIRGenerator::move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val) { argument
998 // cur_val can be null without phi being null in conjunction with inlining
999 if (phi != NULL && cur_val != NULL && cur_val != phi && !phi->is_illegal()) {
1000 LIR_Opr operand = cur_val->operand();
1001 if (cur_val->operand()->is_illegal()) {
1002 assert(cur_val->as_Constant() != NULL || cur_val->as_Local() != NULL,
1004 operand = operand_for_instruction(cur_val);
H A Dc1_LIRGenerator.hpp229 void move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp5500 HeapWord* cur_val = cur_sca->nth(_cursor[j]);
5501 assert(surv->used_region().contains(cur_val), "Out of bounds value");
5502 if (cur_val < min_val) {
5504 min_val = cur_val;
5506 assert(cur_val < top, "All recorded addresses should be less");

Completed in 63 milliseconds