8077648: ARM: BREAKPOINT is wrong for thumb
authordholmes
Thu, 14 Jan 2016 01:25:30 -0500
changeset 35490 74e4d7d16790
parent 35489 368deab8e88b
child 35491 663c609dfeee
8077648: ARM: BREAKPOINT is wrong for thumb Reviewed-by: dlong
hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp
--- a/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp	Wed Jan 13 14:56:17 2016 -0500
+++ b/hotspot/src/share/vm/utilities/globalDefinitions_gcc.hpp	Thu Jan 14 01:25:30 2016 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1998, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1998, 2016, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -212,16 +212,8 @@
 
 #define DEBUG_EXCEPTION ::abort();
 
-#ifdef ARM32
-#ifdef SOLARIS
-#define BREAKPOINT __asm__ volatile (".long 0xe1200070")
-#else
-#define BREAKPOINT __asm__ volatile (".long 0xe7f001f0")
-#endif
-#else
 extern "C" void breakpoint();
 #define BREAKPOINT ::breakpoint()
-#endif
 
 // checking for nanness
 #ifdef SOLARIS