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

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.cpp37 void PSPromotionLAB::initialize(MemRegion lab) { argument
38 assert(lab_is_valid(lab), "Sanity");
40 HeapWord* bottom = lab.start();
41 HeapWord* end = lab.end();
58 assert(lab.word_size() >= filler_header_size, "lab is too small");
70 // Fill all remaining lab space with an unreachable object.
76 // If we were initialized to a zero sized lab, there is
119 // Fill all remaining lab space with an unreachable object.
139 bool PSYoungPromotionLAB::lab_is_valid(MemRegion lab) { argument
152 lab_is_valid(MemRegion lab) argument
[all...]
H A DpsPromotionLAB.hpp32 // PSPromotionLAB is a parallel scavenge promotion lab. This class acts very
59 debug_only(virtual bool lab_is_valid(MemRegion lab) { return false; });
65 void initialize(MemRegion lab);
113 debug_only(virtual bool lab_is_valid(MemRegion lab));
147 debug_only(virtual bool lab_is_valid(MemRegion lab));
/openjdk7/hotspot/src/share/vm/opto/
H A DidealKit.cpp142 Node* lab = make_label(1); local
146 goto_(lab);
149 bind(lab);
206 Node* lab = new_cvstate(); local
209 lab->init_req(TypeFunc::Control, reg);
210 return lab;
216 void IdealKit::bind(Node* lab) { argument
217 goto_(lab, true /* bind */);
218 _cvstate = lab;
227 void IdealKit::goto_(Node* lab, boo argument
[all...]
H A DidealKit.hpp171 void bind(Node* lab);
172 void goto_(Node* lab, bool bind = false);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCompactibleFreeListSpace.java126 LinearAllocBlock lab = (LinearAllocBlock) VMObjectFactory.newObject(LinearAllocBlock.class,
128 size += lab.word_size();
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java72 String lab = ins.getAttr("pc");
73 if (lab != null) {
74 labels.put(lab, String.valueOf(id));
170 String newLab = labels.get(ins.getAttr("lab"));
172 ins.setAttr("lab", newLab);
178 newLab = labels.get(cas.getAttr("lab"));
180 cas.setAttr("lab", newLab);
228 int target = insLocs[(int) ins.getAttrLong("lab")];
317 // emit <ifop lab=1f> <goto_w target> <label pc=1f>
329 assert (pc + opnd == insLocs[(int) ins.getAttrLong("lab")]);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DInstruction.java374 int lab = getBranchLabel();
375 if (lab >= 0) s += " To:"+labstr(lab);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp184 CFLS_LAB lab; member in class:CMSParGCThreadState
188 CMSParGCThreadState(CompactibleFreeListSpace* cfls) : lab(cfls) {
1384 HeapWord* obj_ptr = ps->lab.alloc(alloc_sz);
1456 ps->lab.retire(thread_num);
3358 res = ps->lab.alloc(word_sz);

Completed in 1923 milliseconds