Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-12-30 17:55:13 +0000
committerEugene Tarassov2011-12-30 17:55:13 +0000
commit93188425e70f3d1a1c256e8d6fc7d1fe230670d6 (patch)
tree11d462d92c7c87453dfe2efd7532acc611fe082c /agent/tcf/services/dwarfecomp.h
parent866417fda66e11b1686d3e95581f544dea1af9ac (diff)
downloadorg.eclipse.tcf.agent-93188425e70f3d1a1c256e8d6fc7d1fe230670d6.tar.gz
org.eclipse.tcf.agent-93188425e70f3d1a1c256e8d6fc7d1fe230670d6.tar.xz
org.eclipse.tcf.agent-93188425e70f3d1a1c256e8d6fc7d1fe230670d6.zip
TCF Agent: implemented remote execution of DWRF expressions; more C++ support in DWARF reader.
Diffstat (limited to 'agent/tcf/services/dwarfecomp.h')
-rw-r--r--agent/tcf/services/dwarfecomp.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/agent/tcf/services/dwarfecomp.h b/agent/tcf/services/dwarfecomp.h
new file mode 100644
index 00000000..612f54af
--- /dev/null
+++ b/agent/tcf/services/dwarfecomp.h
@@ -0,0 +1,34 @@
+/*******************************************************************************
+ * Copyright (c) 2011 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ * The Eclipse Public License is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ * You may elect to redistribute this code under either of these licenses.
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
+
+/*
+ * Transformation of DWARF expressions to a portable form.
+ *
+ * Functions in this module use exceptions to report errors, see exceptions.h
+ */
+#ifndef D_dwarfecomp
+#define D_dwarfecomp
+
+#include <tcf/config.h>
+
+#if ENABLE_ELF && ENABLE_DebugContext
+
+#include <tcf/services/dwarfexpr.h>
+
+extern void dwarf_transform_expression(Context * ctx, ContextAddress ip, DWARFExpressionInfo * info);
+
+#endif /* ENABLE_ELF && ENABLE_DebugContext */
+
+#endif /* D_dwarfecomp */

Back to the top