src/share/vm/runtime/handles.cpp

Print this page
rev 6623 : 8048241: Introduce umbrella header os.inline.hpp and clean up includes
Reviewed-by: coleenp, dholmes, lfoltan


  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "memory/allocation.inline.hpp"
  27 #include "oops/constantPool.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/atomic.inline.hpp"
  30 #include "runtime/handles.inline.hpp"
  31 #include "runtime/thread.inline.hpp"
  32 #ifdef TARGET_OS_FAMILY_linux
  33 # include "os_linux.inline.hpp"
  34 #endif
  35 #ifdef TARGET_OS_FAMILY_solaris
  36 # include "os_solaris.inline.hpp"
  37 #endif
  38 #ifdef TARGET_OS_FAMILY_windows
  39 # include "os_windows.inline.hpp"
  40 #endif
  41 #ifdef TARGET_OS_FAMILY_bsd
  42 # include "os_bsd.inline.hpp"
  43 #endif
  44 
  45 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  46 
  47 #ifdef ASSERT
  48 oop* HandleArea::allocate_handle(oop obj) {
  49   assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
  50   assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
  51   assert(obj->is_oop(), err_msg("not an oop: " INTPTR_FORMAT, (intptr_t*) obj));
  52   return real_allocate_handle(obj);
  53 }
  54 
  55 Handle::Handle(Thread* thread, oop obj) {
  56   assert(thread == Thread::current(), "sanity check");
  57   if (obj == NULL) {
  58     _handle = NULL;
  59   } else {
  60     _handle = thread->handle_area()->allocate_handle(obj);
  61   }
  62 }
  63 




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "memory/allocation.inline.hpp"
  27 #include "oops/constantPool.hpp"
  28 #include "oops/oop.inline.hpp"
  29 #include "runtime/atomic.inline.hpp"
  30 #include "runtime/handles.inline.hpp"
  31 #include "runtime/thread.inline.hpp"












  32 
  33 PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
  34 
  35 #ifdef ASSERT
  36 oop* HandleArea::allocate_handle(oop obj) {
  37   assert(_handle_mark_nesting > 1, "memory leak: allocating handle outside HandleMark");
  38   assert(_no_handle_mark_nesting == 0, "allocating handle inside NoHandleMark");
  39   assert(obj->is_oop(), err_msg("not an oop: " INTPTR_FORMAT, (intptr_t*) obj));
  40   return real_allocate_handle(obj);
  41 }
  42 
  43 Handle::Handle(Thread* thread, oop obj) {
  44   assert(thread == Thread::current(), "sanity check");
  45   if (obj == NULL) {
  46     _handle = NULL;
  47   } else {
  48     _handle = thread->handle_area()->allocate_handle(obj);
  49   }
  50 }
  51