Searched refs:cache_line_size (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dvm_version_sparc.cpp52 intx cache_line_size = prefetch_data_size(); local
53 if( cache_line_size > AllocatePrefetchStepSize )
54 AllocatePrefetchStepSize = cache_line_size;
H A Dassembler_sparc.cpp4910 int cache_line_size = VM_Version::prefetch_data_size(); local
4913 int block_zero_size = MAX2(cache_line_size*3, (int)BlockZeroingLowLimit);
4933 for (int offs = 0; offs < cache_line_size; offs += 8) {
4938 add(to, cache_line_size, to);
4939 and3(to, -cache_line_size, to);
4945 sub(end, (cache_line_size*2)-8, end);
4950 add(to, cache_line_size, to);
4956 add(end, (cache_line_size*2)-8, end); // restore end
/openjdk7/hotspot/src/cpu/x86/vm/
H A DnativeInst_x86.cpp150 bool is_aligned = ((uintptr_t)displacement_address() + 0) / cache_line_size ==
151 ((uintptr_t)displacement_address() + 3) / cache_line_size;
158 } else if ((uintptr_t)instruction_address() / cache_line_size ==
159 ((uintptr_t)instruction_address()+1) / cache_line_size) {
H A Dvm_version_x86.cpp714 intx cache_line_size = prefetch_data_size(); local
715 if( cache_line_size > AllocatePrefetchStepSize )
716 AllocatePrefetchStepSize = cache_line_size;
H A DnativeInst_x86.hpp123 enum { cache_line_size = BytesPerWord }; // conservative estimate! enumerator in enum:NativeCall::__anon42

Completed in 49 milliseconds