Searched refs:_from (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1RemSet.inline.hpp75 assert(_from != NULL, "from region must be non-NULL");
76 _rs->par_write_ref(_from, p, _worker_i);
81 assert(_from->is_in_reserved(p), "paranoia");
83 if (!oopDesc::is_null(heap_oop) && !_from->is_survivor()) {
84 _g1_rem_set->par_write_ref(_from, p, 0);
H A Dg1RemSet.hpp147 HeapRegion* _from; member in class:UpdateRSOopClosure
155 _from(NULL), _rs(rs), _worker_i(worker_i)
160 _from = from;
H A Dg1OopClosures.inline.hpp85 _par_scan_state->update_rs(_from, p, _par_scan_state->queue_num());
172 assert(_from != NULL, "from region must be non-NULL");
173 assert(_from->is_in_reserved(p), "p is not in from");
176 if (to != NULL && _from != to) {
H A Dg1EvacFailure.hpp53 assert(_from->is_in_reserved(p), "paranoia");
54 if (!_from->is_in_reserved(oopDesc::load_decode_heap_oop(p)) &&
55 !_from->is_survivor()) {
H A Dg1OopClosures.hpp43 HeapRegion* _from; member in class:OopsInHeapRegionClosure
45 void set_region(HeapRegion* from) { _from = from; }
281 HeapRegion* _from; member in class:G1UpdateRSOrPushRefOopClosure
295 _from = from;
H A DbufferingOopClosure.hpp194 *_hr_curr = _from;
H A Dg1RemSet.cpp520 _g1(g1h), _g1_rem_set(rs), _from(NULL),
H A Dg1CollectedHeap.cpp4760 _par_scan_state->update_rs(_from, p, _worker_id);
4772 _par_scan_state->update_rs(_from, p, _worker_id);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86_32.cpp99 address _from; member in class:SlowSignatureHandler
103 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
104 _from -= Interpreter::stackElementSize;
108 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
109 _from -= Interpreter::stackElementSize;
113 _to[0] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
114 _to[1] = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(0));
116 _from -= 2*Interpreter::stackElementSize;
121 intptr_t from_addr = (intptr_t)(_from + Interpreter::local_offset_in_bytes(0));
123 _from
[all...]
H A DinterpreterRT_x86_64.cpp299 address _from; member in class:SlowSignatureHandler
307 jint from_obj = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
308 _from -= Interpreter::stackElementSize;
320 intptr_t from_obj = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
321 _from -= 2*Interpreter::stackElementSize;
333 intptr_t *from_addr = (intptr_t*)(_from + Interpreter::local_offset_in_bytes(0));
334 _from -= Interpreter::stackElementSize;
345 jint from_obj = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
346 _from -= Interpreter::stackElementSize;
359 intptr_t from_obj = *(intptr_t*)(_from
389 address _from; member in class:SlowSignatureHandler
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DinterpreterRT_sparc.cpp147 address _from; member in class:SlowSignatureHandler
160 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
161 _from -= Interpreter::stackElementSize;
167 intptr_t *from_addr = (intptr_t*)(_from + Interpreter::local_offset_in_bytes(0));
169 _from -= Interpreter::stackElementSize;
175 *_to++ = *(jint *)(_from+Interpreter::local_offset_in_bytes(0));
176 _from -= Interpreter::stackElementSize;
181 *_to++ = *(intptr_t*)(_from+Interpreter::local_offset_in_bytes(1));
182 _from -= 2*Interpreter::stackElementSize;
187 _to[0] = *(intptr_t*)(_from
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcHeapSummary.hpp95 SpaceSummary _from; member in class:PSHeapSummary
99 GCHeapSummary(heap_space, heap_used), _old(old), _old_space(old_space), _young(young), _eden(eden), _from(from), _to(to) { }
104 const SpaceSummary& from() const { return _from; }
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DNumber.java77 private Pattern _from = null; field in class:Number
148 _from = parser.parsePattern(this, name, null);
194 if (_from != null) {
195 _from.typeCheck(stable);
227 return _from == null && _count == null;
415 if (_from != null) {
432 _from.translate(nodeCounterGen, matchGen);
433 _from.synthesize(nodeCounterGen, matchGen);
482 il.append(_from != null ? ICONST_1 : ICONST_0);
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp579 Block * _from; // Source basic block member in class:CFGEdge
601 _from(from), _to(to), _freq(freq),
607 Block* from() const { return _from; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.hpp472 int _from; // from (inclusive) member in class:Range
486 int from() const { return _from; }
489 void set_from(int from) { _from = from; }
H A Dc1_Instruction.hpp2432 BlockBegin* _from;
2435 BlockPair(BlockBegin* from, BlockBegin* to): _from(from), _to(to) {}
2436 BlockBegin* from() const { return _from; }
2438 bool is_same(BlockBegin* from, BlockBegin* to) const { return _from == from && _to == to; }
2439 bool is_same(BlockPair* p) const { return _from == p->from() && _to == p->to(); }
2441 void set_from(BlockBegin* b) { _from = b; }
H A Dc1_LinearScan.cpp4009 _from(from),
4054 out->print("[%d, %d[ ", _from, _to);

Completed in 124 milliseconds