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

/openjdk10/hotspot/src/share/vm/utilities/
H A DbitMap.inline.hpp52 const bm_word_t cur_val = Atomic::cmpxchg(new_val, addr, old_val); local
53 if (cur_val == old_val) {
56 old_val = cur_val; // The value changed, try again.
71 const bm_word_t cur_val = Atomic::cmpxchg(new_val, addr, old_val); local
72 if (cur_val == old_val) {
75 old_val = cur_val; // The value changed, try again.
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp1001 void LIRGenerator::move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val) { argument
1003 // cur_val can be null without phi being null in conjunction with inlining
1004 if (phi != NULL && cur_val != NULL && cur_val != phi && !phi->is_illegal()) {
1005 Phi* cur_phi = cur_val->as_Phi();
1013 LIR_Opr operand = cur_val->operand();
1015 assert(cur_val->as_Constant() != NULL || cur_val->as_Local() != NULL,
1017 operand = operand_for_instruction(cur_val);
H A Dc1_LIRGenerator.hpp233 void move_to_phi(PhiResolver* resolver, Value cur_val, Value sux_val);
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DconcurrentMarkSweepGeneration.cpp4743 HeapWord* cur_val = cur_sca->nth(_cursor[j]);
4744 assert(surv->used_region().contains(cur_val), "Out of bounds value");
4745 if (cur_val < min_val) {
4747 min_val = cur_val;
4749 assert(cur_val < top, "All recorded addresses should be less");

Completed in 118 milliseconds