qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [RFC PATCH v2 5/7] plugins: add plugin template


From: Pavel Dovgalyuk
Subject: [Qemu-devel] [RFC PATCH v2 5/7] plugins: add plugin template
Date: Tue, 05 Jun 2018 13:39:42 +0300
User-agent: StGit/0.17.1-dirty

From: Pavel Dovgalyuk <address@hidden>

This is a template of the QEMU plugin. It includes empty functions that
plugins may implement.

Signed-off-by: Pavel Dovgalyuk <address@hidden>
---
 plugins/template/Makefile   |   19 +++++++++++++++++++
 plugins/template/template.c |   19 +++++++++++++++++++
 2 files changed, 38 insertions(+)
 create mode 100644 plugins/template/Makefile
 create mode 100644 plugins/template/template.c

diff --git a/plugins/template/Makefile b/plugins/template/Makefile
new file mode 100644
index 0000000..b9d10da
--- /dev/null
+++ b/plugins/template/Makefile
@@ -0,0 +1,19 @@
+CFLAGS += -I../include -fno-PIE -fPIC -O3
+LDFLAGS += -shared
+# TODO: Windows
+DSOSUF := .so
+
+NAME:= template
+BIN := $(NAME)$(DSOSUF)
+
+FILES := template.o
+
+%.o: %.c
+       $(CC) -c -o $@ $< $(CFLAGS)
+
+all: $(FILES)
+       $(CC) $(LDFLAGS) -o $(BIN) $(FILES)
+
+clean:
+       rm $(FILES)
+       rm $(BIN)
diff --git a/plugins/template/template.c b/plugins/template/template.c
new file mode 100644
index 0000000..fed1053
--- /dev/null
+++ b/plugins/template/template.c
@@ -0,0 +1,19 @@
+#include <stdint.h>
+#include <stdio.h>
+#include "plugins.h"
+
+bool plugin_init(const char *args)
+{
+    printf("template plugin loaded successfully\n");
+    return true;
+}
+
+bool plugin_needs_before_insn(uint64_t pc, void *cpu)
+{
+    return true;
+}
+
+void plugin_before_insn(uint64_t pc, void *cpu)
+{
+    printf("executing instruction at %lx\n", pc);
+}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]