Searched refs:_limit (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciCallProfile.hpp42 int _limit; // number of receivers have been determined member in class:ciCallProfile
50 _limit = 0;
62 bool has_receiver(int i) const { return _limit > i; }
67 assert(i < _limit, "out of Call Profile MorphismLimit");
71 assert(i < _limit, "out of Call Profile MorphismLimit");
75 assert(i < _limit, "out of Call Profile MorphismLimit");
79 assert(i < _limit, "out of Call Profile MorphismLimit");
H A DciExceptionHandler.hpp44 int _limit; member in class:ciExceptionHandler
57 _limit = limit;
64 int limit() { return _limit; }
H A DciMethod.cpp512 if (morphism > 0 && morphism == result._limit) {
548 int i = _limit;
555 if (_limit < MorphismLimit) _limit++;
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldStreams.hpp44 int _limit; member in class:FieldStreamBase
85 _limit = num_fields;
87 _limit = limit;
95 _limit = init_generic_signature_start_slot();
103 _limit = klass->java_fields_count();
110 _limit = klass->java_fields_count();
124 bool done() const { return _index >= _limit; }
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp89 address _limit; // last possible (allocated) end address member in class:VALUE_OBJ_CLASS_SPEC
105 _limit = NULL;
127 _limit = start + size;
140 _limit = cs->_limit;
148 address limit() const { return _limit; }
152 csize_t capacity() const { return (csize_t)(_limit - _start); }
153 csize_t remaining() const { return (csize_t)(_limit - _end); }
175 bool allocates(address pc) const { return pc >= _start && pc < _limit; }
176 bool allocates2(address pc) const { return pc >= _start && pc <= _limit; }
[all...]
H A DcodeBuffer.cpp41 // _limit -> | |
53 // The _end (resp. _limit) pointer refers to the first
155 address limit = _insts._limit;
159 _insts._limit = middle - slop; // subtract desired space, plus slop
178 cs->_limit = new_limit;
460 prev_dest_cs->_limit += padding;
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp50 debug_only(uint _limit;) // limit to formal domain
59 debug_only(_limit=0);
71 uint Max() const { debug_only(return _limit); return _size; }
H A Dblock.cpp44 debug_only(_limit = i+1);
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp532 address _limit; // stop producing relocations after this _addr member in class:RelocIterator
594 if (_limit != NULL && _addr >= _limit) {
604 address limit() const { return _limit; }
H A DrelocInfo.cpp260 iter._limit = (address)(intptr_t)(ncards * indexCardSize);
296 _limit = limit;
357 _limit = limit;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp7959 _limit(_sp->sweep_limit()),
7980 assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
7981 "sweep _limit out of bounds");
7984 _limit);
7991 tty->print_cr("_limit = " PTR_FORMAT, _limit);
8005 assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
8006 "sweep _limit ou
[all...]
H A DconcurrentMarkSweepGeneration.hpp1728 HeapWord* _limit;// the address at or above which the sweep should stop member in class:SweepClosure
1779 // premptive flush if crossing over _limit.

Completed in 97 milliseconds