< prev index next >

src/cpu/ppc/vm/debug_ppc.cpp

Print this page
rev 7424 : 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 #ifndef PRODUCT
  38 // return an instruction which will generate a SIGILL
  39 bool get_illegal_instruction_sequence(uint8_t buf[8]) {
  40   memset(buf, 0, 8);
  41   return true;
  42 }
  43 #endif
  44 
< prev index next >