Searched defs:_bci (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.hpp34 int _bci; member in class:Canonicalizer
38 void set_bci(int bci) { _bci = bci; }
53 Canonicalizer(Compilation* c, Value x, int bci) : _compilation(c), _canonical(x), _bci(bci) {
58 int bci() const { return _bci; }
H A Dc1_ValueStack.hpp45 int _bci; member in class:ValueStack
72 ValueStack* copy() { return new ValueStack(this, _kind, _bci); }
88 int bci() const { return _bci; }
H A Dc1_CodeStubs.hpp96 int _bci; member in class:CounterOverflowStub
100 CounterOverflowStub(CodeEmitInfo* info, int bci, LIR_Opr method) : _info(info), _bci(bci), _method(method) {
H A Dc1_IR.hpp201 int _bci; member in class:IRScopeDebugInfo
216 , _bci(bci)
223 int bci() { return _bci; }
/openjdk7/hotspot/src/share/vm/ci/
H A DciType.hpp101 int _bci; member in class:ciReturnAddress
112 int bci() { return _bci; }
H A DciStreams.hpp323 int _bci; member in class:ciExceptionHandlerStream
336 _bci = -1;
353 _bci = bci;
354 assert(_bci >= 0, "bci out of range");
377 if (_bci != -1) {
381 if (handler->is_in_range(_bci)) {
/openjdk7/hotspot/src/share/vm/code/
H A DexceptionHandlerTable.hpp44 int _bci; member in class:HandlerTableEntry
52 _bci = bci;
57 int len() const { return _bci; } // for entry at subtable begin
58 int bci() const { return _bci; }
H A DscopeDesc.hpp41 int _bci; member in class:SimpleScopeDesc
50 _bci = buffer.read_bci();
54 int bci() { return _bci; }
72 int bci() const { return _bci; }
98 int _bci; member in class:ScopeDesc
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.hpp96 int _bci; member in class:jvmtiDeferredLocalVariableSet
103 int bci() const { return _bci; }
H A DvframeArray.hpp55 int _bci; // raw bci for this vframe member in class:vframeArrayElement
68 int raw_bci(void) const { return _bci; }
H A Dvframe.hpp290 int _bci; member in class:vframeStreamCommon
315 int bci() const { return _bci; }
418 _bci = buffer.read_bci();
429 _bci = 0;
522 _bci = bci;
H A Drelocator.cpp43 int _bci; member in class:ChangeItem
45 ChangeItem(int bci) { _bci = bci; }
54 int bci() { return _bci; }
55 void relocate(int break_bci, int delta) { if (_bci > break_bci) { _bci += delta; } }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeStream.java35 private int _bci; // bci if current bytecode field in class:BytecodeStream
56 _bci = beg_bci;
69 _bci = _next_bci;
75 int rawCode = Bytecodes.codeAt(_method, _bci);
81 Assert.that(false, "Failure occurred at bci " + _bci + " in method " + _method.externalNameAndSignature());
87 if (l == 0) l = Bytecodes.lengthAt(_method, _bci);
90 Assert.that(_bci < _next_bci, "length must be > 0");
96 code = _method.getBytecodeOrBPAt(_bci + 1);
109 public int bci() { return _bci; }
114 public boolean isActiveBreakpoint() { return Bytecodes.isActiveBreakpointAt(_method, _bci); }
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeStream.hpp69 int _bci; // bci if current bytecode member in class:BaseBytecodeStream
91 _bci = beg_bci;
104 int bci() const { return _bci; }
110 int instruction_size() const { return (_next_bci - _bci); }
113 address bcp() const { return method()->code_base() + _bci; }
144 _bci = _next_bci;
152 if (l > 0 && (_bci + l) <= _end_bci) {
191 _bci = _next_bci;
208 assert(_bci < _next_bci, "length must be > 0");
H A DoopMapCache.hpp87 unsigned short _bci; // the bci for which the mask is valid member in class:InterpreterOopMap
105 int bci() const { return _bci; }
106 void set_bci(int v) { _bci = v; }
128 bool match(methodHandle method, int bci) { return _method == method() && _bci == bci; }
H A DoopMapCache.cpp69 int _bci; member in class:OopMapForCacheEntry
92 _bci = bci;
106 result_for_basicblock(_bci);
136 if (bcs->bci() == _bci) {
183 assert(_method != NULL || (_bci == 0 &&
192 _bci = 0;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkFunction.cpp143 _bci(block->bci()),
153 int _bci; member in class:DeferredZeroCheck
166 return _bci;
H A DsharkValue.hpp288 : _bci(bci) {}
291 int _bci; member in class:SharkAddressValue
H A DsharkCacheDecache.hpp66 : SharkCacherDecacher(function), _bci(bci) {}
69 int _bci; member in class:SharkDecacher
73 return _bci;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvThreadState.cpp262 int _bci; member in class:VM_GetCurrentLocation
276 _bci = vf->bci();
280 *bci = _bci;
H A DjvmtiImpl.hpp165 typedef void (methodOopDesc::*method_action)(int _bci);
170 int _bci; member in class:JvmtiBreakpoint
/openjdk7/hotspot/src/share/vm/classfile/
H A Dverifier.hpp159 int _bci; member in class:VALUE_OBJ_CLASS_SPEC
165 _bci(bci), _fault(fault) {}
167 _bci(bci), _fault(fault), _type(type) {}
169 _bci(bci), _fault(fault), _type(type), _expected(exp) {}
172 ErrorContext() : _bci(-1), _fault(NO_FAULT) {}
220 int bci() const { return _bci; }
231 str->print("error_context(%d, %d,", _bci, _fault);
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp262 int _bci; // Start of basic block member in class:BasicBlock
H A DmethodDataOop.hpp86 u2 _bci; member in struct:VALUE_OBJ_CLASS_SPEC::__anon284::__anon285
180 return _header._struct._bci;
228 return byte_offset_of(DataLayout, _header._struct._bci);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java269 int _bci; // Start of basic block field in class:GenerateOopMap.BasicBlock
723 Assert.that(bb._bci == bci, "should have found BB");
734 int mbci = bbs[m]._bci;
743 nbci = bbs[m+1]._bci;
773 itr.setInterval(bb._bci, lim_bci);
778 ", BCI interval [" + bb._bci + ", " + lim_bci + ")");
781 for (int i = bb._bci; i < lim_bci; i++) {
789 Assert.that(lim_bci != bb._bci, "must be at least one instruction in a basicblock");
838 Assert.that(lim_bci == _basic_blocks[bbIndex(bb) + 1]._bci, "there must be another bb");
858 return _basic_blocks[bbNum]._bci;
[all...]

Completed in 134 milliseconds

12