Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1412)

Unified Diff: experimental/linux_debug_server/debugger/oop_hooks.cc

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/linux_debug_server/debugger/oop_hooks.cc
diff --git a/experimental/linux_debug_server/debugger/oop_hooks.cc b/experimental/linux_debug_server/debugger/oop_hooks.cc
deleted file mode 100644
index 3048cf21dedf94e9886d386f2da3ce2cd0f83550..0000000000000000000000000000000000000000
--- a/experimental/linux_debug_server/debugger/oop_hooks.cc
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright (c) 2011 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "native_client/src/include/nacl_platform.h"
-#include "native_client/src/trusted/service_runtime/nacl_oop_debugger_hooks.h"
-#include "native_client/src/trusted/service_runtime/sel_ldr.h"
-#include <unistd.h>
-#include <sys/types.h>
-#include <memory.h>
-void SendMessageToDebuggerAndHalt(const char *fmt, ...);
-
-void NaClOopDebuggerAppCreateHook(struct NaClApp *nap) {
- if (NULL == nap)
- return;
- SendMessageToDebuggerAndHalt(
- "-event AppCreate -nap %p -mem_start %p -user_entry_pt %p "
- "-initial_entry_pt %p",
- nap,
- (void *) nap->mem_start,
- (void *) nap->user_entry_pt,
- (void *) nap->initial_entry_pt);
-}
-
-void NaClOopDebuggerThreadCreateHook(struct NaClAppThread *natp) {
- SendMessageToDebuggerAndHalt("-event ThreadCreate -natp %p", natp);
-}
-void NaClOopDebuggerThreadExitHook(struct NaClAppThread *natp,
- int exit_code) {
- SendMessageToDebuggerAndHalt("-event ThreadExit -natp %p -exit_code %d",
- natp,
- exit_code);
-}
-
-void NaClOopDebuggerAppExitHook(int exit_code) {
- SendMessageToDebuggerAndHalt("-event AppExit -exit_code %d", exit_code);
-}
-
-void OutputDebugString(const char* msg) {
- asm ("movq %0, %%rax;"
- "int $3;" // trap instruction
- "nop;"
- :
- :"r"(msg)
- :"%eax"
- );
-}
-
-void SendMessageToDebuggerAndHalt(const char *fmt, ...) {
- if (NULL == fmt) {
- NaClLog(LOG_FATAL, "SendMessageToDebuggerAndHalt: fmt == NULL\n");
- return;
- }
-
-#define kVarMsgSize 512
- /*
- * Prefix has GUID string specific to our OOP debugger, so that it
- * can differentiate it from other uses of trap instruction.
- */
- char const prefix[] = "{7AA7C9CF-89EC-4ed3-8DAD-6DC84302AB11} -version 1 ";
- char msg[sizeof(prefix) - 1 + kVarMsgSize];
- char *post_pref_msg = msg + sizeof(prefix) - 1;
- signed int res = 0;
- va_list marker;
- strcpy(msg, prefix);
- va_start(marker, fmt);
- res = vsnprintf(post_pref_msg, kVarMsgSize, fmt, marker);
- if (-1 != res) {
- /*
- * Sends a string to the debugger by raising TRAP signal.
- */
- OutputDebugString(msg);
- } else {
- NaClLog(LOG_FATAL,
- "SendMessageToDebuggerAndHalt: vsnprintf returned -1\n");
- }
-#undef kVarMsgSize
-}
-

Powered by Google App Engine
This is Rietveld 408576698