summaryrefslogtreecommitdiff
path: root/runtime/jit/jit_code_cache.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2018-06-27 17:23:46 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-06-27 17:23:46 +0000
commitb5271dd44a30f498689e503340d3c8d01bf31f07 (patch)
treeed8270e3a5d0161ebe5bec0606a24cd5e3123e59 /runtime/jit/jit_code_cache.h
parent0799b9eb29a9009214fd607922fac3f80bf8352e (diff)
parentf0f3c594404aeb3d758e31ba748be400dc5b78a9 (diff)
Merge "ART: Clean up jit_code_cache.h"
Diffstat (limited to 'runtime/jit/jit_code_cache.h')
-rw-r--r--runtime/jit/jit_code_cache.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/runtime/jit/jit_code_cache.h b/runtime/jit/jit_code_cache.h
index 958e8e8aa2..b056bc3b4c 100644
--- a/runtime/jit/jit_code_cache.h
+++ b/runtime/jit/jit_code_cache.h
@@ -17,16 +17,19 @@
#ifndef ART_RUNTIME_JIT_JIT_CODE_CACHE_H_
#define ART_RUNTIME_JIT_JIT_CODE_CACHE_H_
-#include "instrumentation.h"
+#include <iosfwd>
+#include <memory>
+#include <set>
+#include <string>
+#include <unordered_set>
+#include <vector>
#include "base/arena_containers.h"
#include "base/atomic.h"
-#include "base/histogram-inl.h"
+#include "base/histogram.h"
#include "base/macros.h"
#include "base/mutex.h"
#include "base/safe_map.h"
-#include "dex/method_reference.h"
-#include "gc_root.h"
namespace art {
@@ -36,6 +39,7 @@ class LinearAlloc;
class InlineCache;
class IsMarkedVisitor;
class JitJniStubTestHelper;
+class MemMap;
class OatQuickMethodHeader;
struct ProfileMethodInfo;
class ProfilingInfo;