diff -r df8573b1a44c -r 849eb7bfceac src/share/vm/memory/allocation.cpp --- a/src/share/vm/memory/allocation.cpp Wed Jan 08 12:05:19 2014 +0100 +++ b/src/share/vm/memory/allocation.cpp Wed Jan 08 10:25:50 2014 -0800 @@ -140,7 +140,7 @@ void ResourceObj::set_allocation_type(address res, allocation_type type) { // Set allocation type in the resource object uintptr_t allocation = (uintptr_t)res; - assert((allocation & allocation_mask) == 0, "address should be aligned to 4 bytes at least"); + assert((allocation & allocation_mask) == 0, err_msg("address should be aligned to 4 bytes at least: " PTR_FORMAT, res)); assert(type <= allocation_mask, "incorrect allocation type"); ResourceObj* resobj = (ResourceObj *)res; resobj->_allocation_t[0] = ~(allocation + type);