Searched refs:alignment (Results 101 - 109 of 109) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp1764 if (MinObjAlignment > 1) { // object alignment > heap word size
2301 assert(young_gen->virtual_space()->alignment() ==
2302 old_gen->virtual_space()->alignment(), "alignments do not match");
2319 const size_t alignment = old_gen->virtual_space()->alignment(); local
2322 const size_t absorb_size = align_size_up(eden_used + promoted, alignment);
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_h.cpp1650 if (instr->alignment() != 1) {
1651 fprintf(fp," virtual int alignment_required() const { return %d; }\n", instr->alignment());
H A Dadlparse.cpp1055 parse_err(SYNERR, "missing alignment definition in frame section.\n");
1152 char *alignment = parse_one_arg("stack alignment entry"); local
1154 frame->_alignment = alignment;
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s203 # Same as _Copy_conjoint_bytes, except no source alignment check.
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s182 # Same as _Copy_conjoint_bytes, except no source alignment check.
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_32.s214 / Same as _Copy_conjoint_bytes, except no source alignment check.
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.cpp5357 const int alignment = CardTableModRefBS::card_size * BitsPerWord;
5361 alignment);
5363 assert((HeapWord*)round_to((intptr_t)start_addr, alignment) ==
5364 start_addr, "Check alignment");
5365 assert((size_t)round_to((intptr_t)chunk_size, alignment) ==
5366 chunk_size, "Check alignment");
5371 // The alignment restriction ensures that we do not need any
5702 const int alignment =
5709 HeapWord* ub = (HeapWord*)round_to((intptr_t)ur.end(), alignment);
5724 HeapWord* ub = (HeapWord*)round_to((intptr_t)ur.end(), alignment);
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/generator/
H A DWrapperGenerator.java579 int alignment; field in class:WrapperGenerator.FunctionType
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp174 // Support for forcing alignment of thread objects for biased locking
177 const int alignment = markOopDesc::biased_lock_alignment; local
178 size_t aligned_size = size + (alignment - sizeof(intptr_t));
181 void* aligned_addr = (void*) align_size_up((intptr_t) real_malloc_addr, alignment);
184 "JavaThread alignment code overflowed allocated storage");
290 assert((((uintptr_t) this) & (markOopDesc::biased_lock_alignment - 1)) == 0, "forced alignment of thread object failed");
293 "bug in forced alignment of thread objects");

Completed in 130 milliseconds

12345