Searched refs:_sp (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DspaceDecorator.hpp126 ContiguousSpace* _sp; member in class:GenSpaceMangler
128 ContiguousSpace* sp() { return _sp; }
130 HeapWord* top() const { return _sp->top(); }
131 HeapWord* end() const { return _sp->end(); }
134 GenSpaceMangler(ContiguousSpace* sp) : SpaceMangler(), _sp(sp) {}
139 MutableSpace* _sp; member in class:MutableSpaceMangler
141 MutableSpace* sp() { return _sp; }
143 HeapWord* top() const { return _sp->top(); }
144 HeapWord* end() const { return _sp->end(); }
147 MutableSpaceMangler(MutableSpace* sp) : SpaceMangler(), _sp(s
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A Dstack_zero.hpp35 intptr_t *_sp; // the top word on the stack member in class:ZeroStack
42 : _base(NULL), _top(NULL), _sp(NULL) {
58 _sp = _top;
62 assert(_sp == _top, "stuff on stack at teardown");
66 _sp = NULL;
70 return _sp;
74 _sp = new_sp;
81 return _sp - _base;
85 assert(_sp > _base, "stack overflow");
86 *(--_sp)
[all...]
H A Dframe_zero.inline.hpp33 _sp = NULL;
43 _sp = sp;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkState.hpp57 SharkValue** _sp; member in class:SharkState
92 return &_sp[-(slot + 1)];
103 return _sp - _stack;
107 *(_sp++) = value;
111 return *(--_sp);
H A DsharkInliner.cpp155 bool* _sp; member in class:SharkInlinerHelper
159 return _sp - _stack;
163 return &_sp[-(slot + 1)];
167 *(_sp++) = value;
171 return *(--_sp);
692 _sp = _stack;
H A DsharkState.cpp45 _sp = _stack;
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp362 _sp->is_free_block(start) ||
548 assert(q >= _sp->bottom(),
550 q, _sp->bottom()));
551 assert(q < _sp->end(),
553 q, _sp->end()));
560 assert(q >= _sp->bottom(),
562 q, _sp->bottom()));
563 assert(q < _sp->end(),
565 q, _sp->end()));
571 n += _sp
[all...]
H A Dspace.cpp50 if (_sp->block_is_obj(top_obj)) {
70 assert(top == _sp->end(), "only case where top_obj == NULL");
86 for (; bottom < top; bottom += _sp->block_size(bottom)) {
93 if (_sp->block_is_obj(bottom) &&
94 !_sp->obj_allocated_since_save_marks(oop(bottom))) {
116 MemRegionClosure* pCl = _sp->preconsumptionDirtyCardClosure();
137 bottom_obj = _sp->block_start(bottom);
138 top_obj = _sp->block_start(last);
189 if (top_obj != NULL && top_obj < (_sp->toContiguousSpace())->top()) {
198 assert(_sp
[all...]
H A DblockOffsetTable.hpp312 Space* _sp;
348 void set_space(Space* sp) { _sp = sp; }
421 // The portion [_unallocated_block, _sp.end()) of the space that
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.inline.hpp88 assert(q >= _sp->bottom(), "Went below bottom!");
114 n += _sp->block_size(q);
126 HeapWord* n = q + _sp->block_size(q);
H A Dg1BlockOffsetTable.cpp119 _sp = sp;
379 HeapWord* n = q + _sp->block_size(q);
418 n += _sp->block_size(q);
631 HeapWord* n = q + _sp->block_size(q);
H A Dg1BlockOffsetTable.hpp284 Space* _sp;
286 // If "_sp" is a contiguous space, the field below is the view of "_sp"
294 // The portion [_unallocated_block, _sp.end()) of the space that
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.inline.hpp34 _sp = NULL;
42 _sp = sp;
60 _sp = sp;
79 _sp = sp;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseIterators.java1253 protected int _sp, _oldsp; field in class:DTMDefaultBaseIterators.PrecedingIterator
1339 _oldsp = _sp = index;
1358 _sp>=0;
1361 if(_currentNode < _stack[_sp])
1368 --_sp;
1384 _sp = _oldsp;
1390 _markedsp = _sp;
1396 _sp = _markedsp;
1437 if (_sp < 0) {
1440 } else if (node >= _stack[_sp]) {
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.hpp76 intptr_t* _sp; // stack pointer (from Thread::last_Java_sp) member in class:VALUE_OBJ_CLASS_SPEC
107 intptr_t* sp() const { return _sp; }
108 void set_sp( intptr_t* newsp ) { _sp = newsp; }
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.hpp68 int _sp; // JVM Expression Stack Pointer; don't modify directly! member in class:GraphKit
137 int sp() const { return _sp; }
144 _sp = jvms->sp();
148 void set_sp(int sp) { assert(sp >= 0, err_msg_res("sp must be non-negative: %d", sp)); _sp = sp; }
397 void push(Node* n) { map_not_null(); _map->set_stack(_map->_jvms, _sp++ , n); }
398 Node* pop() { map_not_null(); return _map->stack( _map->_jvms, --_sp ); }
399 Node* peek(int off = 0) { map_not_null(); return _map->stack( _map->_jvms, _sp - off - 1 ); }
854 uint _sp; member in class:PreserveJVMState
870 // Helper class to preserve the original _reexecute bit and _sp and restore
875 uint _sp; member in class:PreserveReexecuteState
[all...]
H A Dcallnode.hpp206 uint _sp; // Jave Expression Stack Pointer for this state member in class:JVMState
230 uint argoff() const { return _stkoff + _sp; }
247 uint sp() const { return _sp; }
293 void set_sp(uint sp) { _sp = sp; }
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java811 protected int _sp, _oldsp; field in class:SAX2DTM2.PrecedingIterator
896 _oldsp = _sp = index;
914 for(++_currentNode; _sp>=0; ++_currentNode)
916 if(_currentNode < _stack[_sp])
923 --_sp;
939 _sp = _oldsp;
945 _markedsp = _sp;
951 _sp = _markedsp;
992 if (_sp < 0) {
996 else if (node >= _stack[_sp]) {
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp7958 _sp(g->cmsSpace()),
7959 _limit(_sp->sweep_limit()),
7960 _freelistLock(_sp->freelistLock()),
7977 _sp->initializeIndexedFreeListArrayReturnedBytes();
7978 _sp->dictionary()->initialize_dict_returned_bytes();
7980 assert(_limit >= _sp->bottom() && _limit <= _sp->end(),
7989 tty->print_cr("_sp = [" PTR_FORMAT "," PTR_FORMAT ")",
7990 _sp->bottom(), _sp
[all...]
H A DcompactibleFreeListSpace.cpp484 const CompactibleFreeListSpace* _sp; member in class:BlkPrintingClosure
494 _sp(sp),
502 size_t sz = _sp->block_size_no_stall(addr, _collector);
504 if (_sp->block_is_obj(addr)) {
2341 const CompactibleFreeListSpace* _sp; member in class:VerifyAllBlksClosure
2350 MemRegion span) : _sp(sp), _span(span),
2358 if (_sp->block_is_obj(addr)) {
2362 res = _sp->adjustObjectSize(p->size());
2363 if (_sp->obj_is_alive(addr)) {
2371 guarantee(_sp
2396 const CompactibleFreeListSpace* _sp; member in class:VerifyAllOopsClosure
[all...]
H A DconcurrentMarkSweepGeneration.hpp1727 CompactibleFreeListSpace* _sp; // Space being swept member in class:SweepClosure
1908 const CompactibleFreeListSpace* _sp; member in class:MarkDeadObjectsClosure
1917 _sp(sp),
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerReordering.cpp65 _sp = KhmerClassTable::CC_SIGN_AFTER | KhmerClassTable::CF_DOTTED_CIRCLE| KhmerClassTable::CF_POS_AFTER, enumerator in enum:__anon804
86 // _sp Sign placed after the base
107 _vr, _dl, _dl, _dl, _vr, _vr, _sa, _sp, _sp, _cs, _cs, _sa, _rb, _sa, _sa, _sa, // 17C0 - 17CF
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.cpp349 _sp = sp;
368 _sp(sp),
471 assert(jfa->last_Java_sp() > _sp, "must be above this frame on stack");
477 jfa->capture_last_Java_pc(_sp);
H A Dframe_sparc.inline.hpp34 _sp = NULL;
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dos_solaris_sparc.cpp136 address _sp = (address)((intptr_t)suspect->uc_mcontext.gregs[REG_SP] + STACK_BIAS); local
137 if (!valid_stack_address(thread, _sp) ||
138 !frame::is_valid_stack_pointer(((JavaThread*)thread)->base_of_stack_pointer(), (intptr_t*)_sp)) {

Completed in 127 milliseconds

12