< prev index next >

src/share/vm/memory/padded.inline.hpp

Print this page

        

*** 39,49 **** // Allocate a chunk of memory large enough to allow for some alignment. void* chunk = AllocateHeap(length * sizeof(PaddedEnd<T, alignment>) + alignment, flags); // Make the initial alignment. ! PaddedEnd<T>* aligned_padded_array = (PaddedEnd<T>*)align_pointer_up(chunk, alignment); // Call the default constructor for each element. for (uint i = 0; i < length; i++) { ::new (&aligned_padded_array[i]) T(); } --- 39,49 ---- // Allocate a chunk of memory large enough to allow for some alignment. void* chunk = AllocateHeap(length * sizeof(PaddedEnd<T, alignment>) + alignment, flags); // Make the initial alignment. ! PaddedEnd<T>* aligned_padded_array = (PaddedEnd<T>*)align_ptr_up(chunk, alignment); // Call the default constructor for each element. for (uint i = 0; i < length; i++) { ::new (&aligned_padded_array[i]) T(); }
*** 63,73 **** // Allocate a chunk of memory large enough to allow alignment of the chunk. void* chunk = AllocateHeap(total_size, flags); // Clear the allocated memory. memset(chunk, 0, total_size); // Align the chunk of memory. ! T** result = (T**)align_pointer_up(chunk, alignment); void* data_start = (void*)((uintptr_t)result + table_size); // Fill in the row table. for (size_t i = 0; i < rows; i++) { result[i] = (T*)((uintptr_t)data_start + i * row_size); --- 63,73 ---- // Allocate a chunk of memory large enough to allow alignment of the chunk. void* chunk = AllocateHeap(total_size, flags); // Clear the allocated memory. memset(chunk, 0, total_size); // Align the chunk of memory. ! T** result = (T**)align_ptr_up(chunk, alignment); void* data_start = (void*)((uintptr_t)result + table_size); // Fill in the row table. for (size_t i = 0; i < rows; i++) { result[i] = (T*)((uintptr_t)data_start + i * row_size);
*** 85,93 **** // Allocate a chunk of memory large enough to allow for some alignment. void* chunk = AllocateHeap(length * sizeof(T) + alignment, flags); memset(chunk, 0, length * sizeof(T) + alignment); ! return (T*)align_pointer_up(chunk, alignment); } #endif // SHARE_VM_MEMORY_PADDED_INLINE_HPP --- 85,93 ---- // Allocate a chunk of memory large enough to allow for some alignment. void* chunk = AllocateHeap(length * sizeof(T) + alignment, flags); memset(chunk, 0, length * sizeof(T) + alignment); ! return (T*)align_ptr_up(chunk, alignment); } #endif // SHARE_VM_MEMORY_PADDED_INLINE_HPP
< prev index next >