< prev index next >

src/cpu/ppc/vm/debug_ppc.cpp

Print this page
rev 7417 : improve secondary signal handling


  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/nmethod.hpp"
  29 #include "runtime/frame.hpp"
  30 #include "runtime/init.hpp"
  31 #include "runtime/os.hpp"
  32 #include "utilities/debug.hpp"
  33 #include "utilities/top.hpp"
  34 
  35 void pd_ps(frame f) {}









  16  * You should have received a copy of the GNU General Public License version
  17  * 2 along with this work; if not, write to the Free Software Foundation,
  18  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  19  *
  20  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  21  * or visit www.oracle.com if you need additional information or have any
  22  * questions.
  23  *
  24  */
  25 
  26 #include "precompiled.hpp"
  27 #include "code/codeCache.hpp"
  28 #include "code/nmethod.hpp"
  29 #include "runtime/frame.hpp"
  30 #include "runtime/init.hpp"
  31 #include "runtime/os.hpp"
  32 #include "utilities/debug.hpp"
  33 #include "utilities/top.hpp"
  34 
  35 void pd_ps(frame f) {}
  36 
  37 
  38 #ifndef PRODUCT
  39 // a sequence of bytes which, when used as opcodes, will cause a SIGILL
  40 const uint8_t illegal_instruction_sequence[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  41 #endif
  42 
< prev index next >