Searched refs:false_cnt (Results 1 - 3 of 3) sorted by relevance

/openjdk9/hotspot/src/share/vm/opto/
H A Dopaquenode.hpp102 ProfileBooleanNode(Node *n, uint false_cnt, uint true_cnt) : Node(0, n), argument
103 _false_cnt(false_cnt), _true_cnt(true_cnt), _delay_removal(true), _consumed(false) {}
H A Dparse2.cpp795 int false_cnt = profile->false_count(); local
801 taken = (btest == BoolTest::eq) ? false_cnt : true_cnt;
802 not_taken = (btest == BoolTest::eq) ? true_cnt : false_cnt;
H A Dlibrary_call.cpp6807 jint false_cnt = aobj->element_value(0).as_int(); local
6812 false_cnt, true_cnt);
6815 if (false_cnt + true_cnt == 0) {
6822 // result is a boolean (0 or 1) and its profile (false_cnt & true_cnt)
6825 if (false_cnt == 0 || true_cnt == 0) {
6827 int expected_val = (false_cnt == 0) ? 1 : 0;
6860 Node* profile = _gvn.transform(new ProfileBooleanNode(result, false_cnt, true_cnt));

Completed in 68 milliseconds