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

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dicache_x86.hpp46 line_size = 64, // Icache line size in bytes enumerator in enum:ICache::__anon38
47 log2_line_size = 6 // log2(line_size)
54 line_size = BytesPerWord, // conservative
55 log2_line_size = LogBytesPerWord // log2(line_size)
H A Dicache_x86.cpp52 __ addptr(addr, ICache::line_size);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dicache_sparc.hpp36 line_size = 8, // flush instruction affects a dword enumerator in enum:ICache::__anon14
37 log2_line_size = 3 // log2(line_size)
/openjdk7/hotspot/src/share/vm/runtime/
H A Dicache.cpp67 // addr down to a line_size boundary, and an end line address by adding
68 // the word size - 1 and rounding the result down to a line_size boundary.
75 intptr_t start_line = ((intptr_t)addr + 0) & ~(ICache::line_size - 1);
77 & ~(ICache::line_size - 1);
94 const uint line_offset = mask_address_bits(start, ICache::line_size-1);
99 call_flush_stub(start, round_to(nbytes, ICache::line_size) >>
H A Dicache.hpp58 line_size = 0, // Icache line size in bytes enumerator in enum:AbstractICache::__anon415
59 log2_line_size = 0 // log2(line_size)
102 // lines - Number of line_size icache lines to flush

Completed in 245 milliseconds