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

/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp48 address _begin; // points to the first byte of the stub code (included) member in class:StubCodeDesc
52 assert(_begin <= end, "begin & end not properly ordered");
57 assert(begin >= _begin, "begin may not decrease");
59 _begin = begin;
76 _begin = begin;
84 address begin() const { return _begin; }
86 int size_in_bytes() const { return _end - _begin; }
87 bool contains(address pc) const { return _begin <= pc && pc < _end; }
H A Dsignature.cpp255 _begin = _end = (is_method ? 1 : 0); // skip first '(' in method signatures
322 // Create a symbol from for string _begin _end
323 int begin = _begin;
326 if ( _signature->byte_at(_begin) == 'L'
361 // Create a symbol from for string _begin _end
364 int begin = _begin;
367 if ( _signature->byte_at(_begin) == 'L'
H A Dsignature.hpp353 int _begin; member in class:SignatureStream
371 _begin = _end;
372 int t = sig->byte_at(_begin);
399 const jbyte* raw_bytes() { return _signature->bytes() + _begin; }
400 int raw_length() { return _end - _begin; }
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableRS.cpp364 HeapWord* _begin; member in class:VerifyCleanCardClosure
369 assert(jp >= _begin && jp < _end,
371 "[_begin, _end) = [" PTR_FORMAT "," PTR_FORMAT ")",
372 jp, _begin, _end));
382 _boundary(b), _begin(begin), _end(end) {
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp44 AllocateNode* _begin; // The allocation the begins the pattern member in class:StringConcat
68 _begin(NULL),
104 _begin = alloc;
193 AllocateNode* begin() { return _begin; }
207 JVMState* p = _begin->jvms();
290 assert(result->_control.contains(_begin), "what?");
303 result->set_allocation(other->_begin);
716 if (Compile::current()->too_many_traps(_begin->jvms()->method(), _begin->jvms()->bci(),
730 assert(_control.contains(_begin), "missin
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp936 } else if (_begin != NULL) {
938 BlockList* sux = new BlockList(_begin->number_of_sux());
939 for (int i = 0; i < _begin->number_of_sux(); i++) {
940 sux->append(_begin->sux_at(i));
944 _begin = begin;
H A Dc1_Instruction.hpp1731 BlockBegin* _begin;
1749 , _begin(NULL)
1757 BlockBegin* begin() const { return _begin; }
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp913 if ((intptr_t)name##_end() - (intptr_t)name##_begin()) \
915 (intptr_t)name##_begin() - (intptr_t)this)

Completed in 905 milliseconds