Searched defs:check_index (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.hpp139 void check_index(size_t index, const char* msg) const { function in class:G1BlockOffsetSharedArray
156 check_index(index, "index out of range");
161 check_index(index, "index out of range");
167 check_index(index, "index out of range");
174 check_index(index_for(right - 1), "right address out of range");
189 check_index(right, "right index out of range");
204 check_index(index, "index out of range");
/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.hpp171 void check_index(int i) const { assert(0 <= i && i < _buffer_limit && i % CodeEntryAlignment == 0, "illegal index"); } function in class:StubQueue
173 int index_of(Stub* s) const { int i = (address)s - _stub_buffer; check_index(i); return i; }
174 Stub* stub_at(int i) const { check_index(i); return (Stub*)(_stub_buffer + i); }
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeTracer.cpp70 bool check_index(int i, int& cp_index, outputStream* st = tty);
219 bool BytecodePrinter::check_index(int i, int& cp_index, outputStream* st) { function in class:BytecodePrinter
292 if (!check_index(orig_i, i, st)) return;
334 if (!check_index(orig_i, i, st)) return;
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp481 static void check_index(int index) { assert( 0 <= index && index < count, "Invalid index"); } function in class:dfa_shared_preds
517 static bool found(int index){ check_index(index); return _found[index]; }
518 static void set_found(int index, bool val) { check_index(index); _found[index] = val; }
523 static const char* type(int index) { check_index(index); return _type[index]; }
524 static const char* var (int index) { check_index(index); return _var [index]; }
525 static const char* pred(int index) { check_index(index); return _pred[index]; }

Completed in 123 milliseconds