Searched defs:_top (Results 1 - 13 of 13) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A Dstack_zero.hpp34 intptr_t *_top; // the word past the end of the stack member in class:ZeroStack
42 : _base(NULL), _top(NULL), _sp(NULL) {
57 _top = _base + (size >> LogBytesPerWord);
58 _sp = _top;
62 assert(_sp == _top, "stuff on stack at teardown");
65 _top = NULL;
73 assert(_top >= new_sp && new_sp >= _base, "bad stack pointer");
78 return _top - _base;
89 assert(_sp < _top, "stack underflow");
116 return byte_offset_of(ZeroStack, _top);
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfMemory.cpp47 char* PerfMemory::_top = NULL; member in class:PerfMemory
130 _top = _start + sizeof(PerfDataPrologue);
196 _top = NULL;
214 if ((_top + size) >= _end) {
221 char* result = _top;
223 _top += size;
H A DjniHandles.hpp122 int _top; // Index of next unused handle member in class:JNIHandleBlock
145 void clear() { _top = 0; }
164 static int top_offset_in_bytes() { return offset_of(JNIHandleBlock, _top); }
H A DperfMemory.hpp119 static char* _top; member in class:PerfMemory
136 static size_t used() { return (size_t) (_top - _start); }
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp49 HeapWord* _top; member in class:PSPromotionLAB
54 void set_top(HeapWord* value) { _top = value; }
61 PSPromotionLAB() : _top(NULL), _bottom(NULL), _end(NULL) { }
72 HeapWord* top() const { return _top; }
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DmutableSpace.hpp54 HeapWord* _top; member in class:MutableSpace
69 HeapWord* top() const { return _top; }
70 virtual void set_top(HeapWord* value) { _top = value; }
72 HeapWord** top_addr() { return &_top; }
H A DparGCAllocBuffer.hpp43 HeapWord* _top; member in class:ParGCAllocBuffer
77 HeapWord* res = _top;
78 if (pointer_delta(_end, _top) >= word_sz) {
79 _top = _top + word_sz;
89 assert(pointer_delta(_top, _bottom) >= word_sz, "Bad undo");
90 assert(pointer_delta(_top, obj) == word_sz, "Bad undo");
91 _top = obj;
107 assert(_end >= _top, "Negative buffer");
108 return pointer_delta(_end, _top, HeapWordSiz
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.hpp43 HeapWord* _top; // address after last allocation member in class:ThreadLocalAllocBuffer
64 void set_top(HeapWord* top) { _top = top; }
112 HeapWord* top() const { return _top; }
163 static ByteSize top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _top ); }
H A Dspace.hpp795 HeapWord* _top; member in class:ContiguousSpace
814 HeapWord* top() const { return _top; }
815 void set_top(HeapWord* value) { _top = value; }
943 HeapWord** top_addr() { return &_top; }
H A Ddump.cpp132 char* _top; member in class:MoveSymbols
144 Symbol* new_sym = (Symbol*)_top;
146 _top += size * HeapWordSize;
147 if (_top <= _end) {
169 _start(top), _end(end), _top(top), _count(0) { }
171 char* get_top() const { return _top; }
179 // The symbol has not been relocated yet; copy it to _top address
/openjdk7/hotspot/src/share/vm/utilities/
H A Dtaskqueue.hpp150 Age(idx_t top, idx_t tag) { _fields._top = top; _fields._tag = tag; }
155 idx_t top() const volatile { return _fields._top; }
160 _fields._top = increment_index(_fields._top);
161 if (_fields._top == 0) ++_fields._tag;
174 idx_t _top; member in struct:TaskQueueSuper::Age::fields
205 // _bottom == _top+1. The pop_local could succeed in decrementing _bottom,
206 // and the pop_global in incrementing _top (in which case the pop_global
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp319 Node* _top; // Unique top node. (Reset by various phases.) member in class:Compile
716 Node* top() const { return _top; }
719 Node* cached_top_node() { return _top; }
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java238 private static final byte _top = 1; field in class:JRSUIConstants.AlignmentVertical
239 public static final AlignmentVertical TOP = new AlignmentVertical(_top);

Completed in 77 milliseconds