Searched defs:values_do (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp115 // apply function to all values of a list; factored out from values_do(f)
133 void ValueStack::values_do(ValueVisitor* f) { function in class:ValueStack
H A Dc1_Instruction.cpp87 state_before()->values_do(f);
90 exception_state()->values_do(f);
331 if (state() != NULL) state()->values_do(f);
340 exception_state_at(i)->values_do(f);
365 values_do(&assert_value);
383 if (state_before() != NULL) state_before()->values_do(f);
384 if (state() != NULL) state()->values_do(f);
729 for (Instruction* n = this; n != NULL; n = n->next()) n->values_do(f);
910 void BlockList::values_do(ValueVisitor* f) { function in class:BlockList
987 if (state() != NULL) state()->values_do(
[all...]
H A Dc1_Instruction.hpp150 void values_do(ValueVisitor* f);
520 void values_do(ValueVisitor* f) { input_values_do(f); state_values_do(f); other_values_do(f); } function in class:Instruction
561 #define ASSERT_VALUES { AssertValues assert_value; values_do(&assert_value); }

Completed in 40 milliseconds