Searched refs:index_of (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.hpp140 int index_of(const etype x) const { \
148 bool contains(const etype x) const { return index_of(x) >= 0; } \
154 int find(const etype x) { return index_of(x); } \
232 void remove(etype x) { remove_at(index_of(x)); } \
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp73 int index_of(methodOop m) const { return index_of(m, _length); } function in class:klassVtable
129 int index_of(methodOop m, int len) const; // same as index_of, but search only up to len
H A DcpCacheOop.hpp456 int index_of(ConstantPoolCacheEntry* e) { function in class:constantPoolCacheOopDesc
463 const int cpc_index = index_of(e);
H A DklassVtable.cpp115 int klassVtable::index_of(methodOop m, int len) const { function in class:klassVtable
/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.hpp173 int index_of(Stub* s) const { int i = (address)s - _stub_buffer; check_index(i); return i; } function in class:StubQueue
220 Stub* next(Stub* s) const { int i = index_of(s) + stub_size(s);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp790 assert(_linear_scan_order->index_of(cur) == -1, "block already processed (block can be ready only once)");
791 assert(_work_list.index_of(cur) == -1, "block already in work-list (block can be ready only once)");
796 assert(_work_list.index_of(cur) == -1, "block already in work list");
832 assert(_linear_scan_order->index_of(cur) == -1, "cannot add the same block twice");
1028 assert(cur->linear_scan_number() >= 0 && cur->linear_scan_number() == _linear_scan_order->index_of(cur), "incorrect linear_scan_number");
1034 assert(sux->linear_scan_number() >= 0 && sux->linear_scan_number() == _linear_scan_order->index_of(sux), "incorrect linear_scan_number");
1046 assert(pred->linear_scan_number() >= 0 && pred->linear_scan_number() == _linear_scan_order->index_of(pred), "incorrect linear_scan_number");
H A Dc1_Instruction.cpp565 int index = sux->_predecessors.index_of(from);
659 while ((idx = _successors.index_of(pred)) >= 0) {
672 while ((idx = _predecessors.index_of(pred)) >= 0) {
H A Dc1_LinearScan.cpp5504 if (processed->index_of(it) == -1) {
6175 if (_original_preds.index_of(pred) == -1) {
6322 assert(op_branch->block() == NULL || code->index_of(op_branch->block()) != -1, "branch target not valid");
6323 assert(op_branch->ublock() == NULL || code->index_of(op_branch->ublock()) != -1, "branch target not valid");
6329 assert(code->index_of(sux) != -1, "successor not valid");
6334 assert(code->index_of(pred) != -1, "successor not valid");

Completed in 68 milliseconds