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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeStream.java36 private int _next_bci; // bci of next bytecode field in class:BytecodeStream
57 _next_bci = beg_bci;
69 _bci = _next_bci;
88 _next_bci += l;
90 Assert.that(_bci < _next_bci, "length must be > 0");
110 public int nextBCI() { return _next_bci; }
115 public boolean isLastBytecode() { return _next_bci >= _end_bci; }
122 _next_bci = bci;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp70 int _next_bci; // bci of next bytecode member in class:BaseBytecodeStream
92 _next_bci = beg_bci;
105 int next_bci() const { return _next_bci; }
110 int instruction_size() const { return (_next_bci - _bci); }
111 bool is_last_bytecode() const { return _next_bci >= _end_bci; }
117 void set_next_bci(int bci) { assert(0 <= bci && bci <= method()->code_size(), "illegal bci"); _next_bci = bci; }
144 _bci = _next_bci;
156 _next_bci += l;
191 _bci = _next_bci;
207 _next_bci
[all...]
H A DbytecodeStream.cpp38 _next_bci += l;
39 assert(_bci < _next_bci, "length must be > 0"); argument

Completed in 50 milliseconds