Move all tools/ agents into tools/jvmti-agents directory

This organizes all the various jvmti agents we have into a single,
easy-to-search place.

Test: build
Change-Id: I92aeaf92e70bedabc38000bb14d4aac17a929793
diff --git a/tools/jvmti-agents/README.md b/tools/jvmti-agents/README.md
new file mode 100644
index 0000000..6f3e6dc
--- /dev/null
+++ b/tools/jvmti-agents/README.md
@@ -0,0 +1,15 @@
+# JVMTI Agents
+
+This is the collection of various jvmti agents that we have created for debugging or testing the
+runtime. Most of these work on both the RI and ART, on both host and device.
+
+## Agents
+
+* [libbreakpointlogger](./breakpoint-logger)
+* [libdumpjvmti](./dump-jvmti-state)
+* [libfieldnull](./field-null-percent)
+* [libjitload](./jit-load)
+* [libforceredefine](./simple-force-redefine)
+* [litifast](./ti-fast)
+* [libtitrace](./titrace)
+* [libwrapagentproperties](./wrapagentproperties)
\ No newline at end of file
diff --git a/tools/breakpoint-logger/Android.bp b/tools/jvmti-agents/breakpoint-logger/Android.bp
similarity index 100%
rename from tools/breakpoint-logger/Android.bp
rename to tools/jvmti-agents/breakpoint-logger/Android.bp
diff --git a/tools/breakpoint-logger/README.md b/tools/jvmti-agents/breakpoint-logger/README.md
similarity index 100%
rename from tools/breakpoint-logger/README.md
rename to tools/jvmti-agents/breakpoint-logger/README.md
diff --git a/tools/breakpoint-logger/breakpoint_logger.cc b/tools/jvmti-agents/breakpoint-logger/breakpoint_logger.cc
similarity index 100%
rename from tools/breakpoint-logger/breakpoint_logger.cc
rename to tools/jvmti-agents/breakpoint-logger/breakpoint_logger.cc
diff --git a/tools/dump-jvmti-state/Android.bp b/tools/jvmti-agents/dump-jvmti-state/Android.bp
similarity index 100%
rename from tools/dump-jvmti-state/Android.bp
rename to tools/jvmti-agents/dump-jvmti-state/Android.bp
diff --git a/tools/dump-jvmti-state/README.md b/tools/jvmti-agents/dump-jvmti-state/README.md
similarity index 100%
rename from tools/dump-jvmti-state/README.md
rename to tools/jvmti-agents/dump-jvmti-state/README.md
diff --git a/tools/dump-jvmti-state/dump-jvmti.cc b/tools/jvmti-agents/dump-jvmti-state/dump-jvmti.cc
similarity index 100%
rename from tools/dump-jvmti-state/dump-jvmti.cc
rename to tools/jvmti-agents/dump-jvmti-state/dump-jvmti.cc
diff --git a/tools/field-null-percent/Android.bp b/tools/jvmti-agents/field-null-percent/Android.bp
similarity index 100%
rename from tools/field-null-percent/Android.bp
rename to tools/jvmti-agents/field-null-percent/Android.bp
diff --git a/tools/field-null-percent/README.md b/tools/jvmti-agents/field-null-percent/README.md
similarity index 100%
rename from tools/field-null-percent/README.md
rename to tools/jvmti-agents/field-null-percent/README.md
diff --git a/tools/field-null-percent/check-null-fields.py b/tools/jvmti-agents/field-null-percent/check-null-fields.py
similarity index 100%
rename from tools/field-null-percent/check-null-fields.py
rename to tools/jvmti-agents/field-null-percent/check-null-fields.py
diff --git a/tools/field-null-percent/fieldnull.cc b/tools/jvmti-agents/field-null-percent/fieldnull.cc
similarity index 100%
rename from tools/field-null-percent/fieldnull.cc
rename to tools/jvmti-agents/field-null-percent/fieldnull.cc
diff --git a/tools/jit-load/Android.bp b/tools/jvmti-agents/jit-load/Android.bp
similarity index 100%
rename from tools/jit-load/Android.bp
rename to tools/jvmti-agents/jit-load/Android.bp
diff --git a/tools/jit-load/README.md b/tools/jvmti-agents/jit-load/README.md
similarity index 100%
rename from tools/jit-load/README.md
rename to tools/jvmti-agents/jit-load/README.md
diff --git a/tools/jit-load/jitload.cc b/tools/jvmti-agents/jit-load/jitload.cc
similarity index 100%
rename from tools/jit-load/jitload.cc
rename to tools/jvmti-agents/jit-load/jitload.cc
diff --git a/tools/simple-force-redefine/Android.bp b/tools/jvmti-agents/simple-force-redefine/Android.bp
similarity index 100%
rename from tools/simple-force-redefine/Android.bp
rename to tools/jvmti-agents/simple-force-redefine/Android.bp
diff --git a/tools/simple-force-redefine/README.md b/tools/jvmti-agents/simple-force-redefine/README.md
similarity index 100%
rename from tools/simple-force-redefine/README.md
rename to tools/jvmti-agents/simple-force-redefine/README.md
diff --git a/tools/simple-force-redefine/forceredefine.cc b/tools/jvmti-agents/simple-force-redefine/forceredefine.cc
similarity index 100%
rename from tools/simple-force-redefine/forceredefine.cc
rename to tools/jvmti-agents/simple-force-redefine/forceredefine.cc
diff --git a/tools/ti-fast/Android.bp b/tools/jvmti-agents/ti-fast/Android.bp
similarity index 100%
rename from tools/ti-fast/Android.bp
rename to tools/jvmti-agents/ti-fast/Android.bp
diff --git a/tools/ti-fast/README.md b/tools/jvmti-agents/ti-fast/README.md
similarity index 100%
rename from tools/ti-fast/README.md
rename to tools/jvmti-agents/ti-fast/README.md
diff --git a/tools/ti-fast/tifast.cc b/tools/jvmti-agents/ti-fast/tifast.cc
similarity index 100%
rename from tools/ti-fast/tifast.cc
rename to tools/jvmti-agents/ti-fast/tifast.cc
diff --git a/tools/titrace/Android.bp b/tools/jvmti-agents/titrace/Android.bp
similarity index 100%
rename from tools/titrace/Android.bp
rename to tools/jvmti-agents/titrace/Android.bp
diff --git a/tools/titrace/README.md b/tools/jvmti-agents/titrace/README.md
similarity index 100%
rename from tools/titrace/README.md
rename to tools/jvmti-agents/titrace/README.md
diff --git a/tools/titrace/instruction_decoder.cc b/tools/jvmti-agents/titrace/instruction_decoder.cc
similarity index 100%
rename from tools/titrace/instruction_decoder.cc
rename to tools/jvmti-agents/titrace/instruction_decoder.cc
diff --git a/tools/titrace/instruction_decoder.h b/tools/jvmti-agents/titrace/instruction_decoder.h
similarity index 84%
rename from tools/titrace/instruction_decoder.h
rename to tools/jvmti-agents/titrace/instruction_decoder.h
index 34be2e9..5ead8c5 100644
--- a/tools/titrace/instruction_decoder.h
+++ b/tools/jvmti-agents/titrace/instruction_decoder.h
@@ -14,8 +14,8 @@
 //
 
 
-#ifndef ART_TOOLS_TITRACE_INSTRUCTION_DECODER_H_
-#define ART_TOOLS_TITRACE_INSTRUCTION_DECODER_H_
+#ifndef ART_TOOLS_JVMTI_AGENTS_TITRACE_INSTRUCTION_DECODER_H_
+#define ART_TOOLS_JVMTI_AGENTS_TITRACE_INSTRUCTION_DECODER_H_
 
 #include <stddef.h>
 
@@ -39,4 +39,4 @@
 
 }  // namespace titrace
 
-#endif  // ART_TOOLS_TITRACE_INSTRUCTION_DECODER_H_
+#endif  // ART_TOOLS_JVMTI_AGENTS_TITRACE_INSTRUCTION_DECODER_H_
diff --git a/tools/titrace/titrace.cc b/tools/jvmti-agents/titrace/titrace.cc
similarity index 100%
rename from tools/titrace/titrace.cc
rename to tools/jvmti-agents/titrace/titrace.cc
diff --git a/tools/wrapagentproperties/Android.bp b/tools/jvmti-agents/wrapagentproperties/Android.bp
similarity index 100%
rename from tools/wrapagentproperties/Android.bp
rename to tools/jvmti-agents/wrapagentproperties/Android.bp
diff --git a/tools/wrapagentproperties/README.md b/tools/jvmti-agents/wrapagentproperties/README.md
similarity index 100%
rename from tools/wrapagentproperties/README.md
rename to tools/jvmti-agents/wrapagentproperties/README.md
diff --git a/tools/wrapagentproperties/wrapagentproperties.cc b/tools/jvmti-agents/wrapagentproperties/wrapagentproperties.cc
similarity index 100%
rename from tools/wrapagentproperties/wrapagentproperties.cc
rename to tools/jvmti-agents/wrapagentproperties/wrapagentproperties.cc