summaryrefslogtreecommitdiff
path: root/src/compiler/compiler_internals.h
diff options
context:
space:
mode:
author buzbee <buzbee@google.com> 2012-11-14 16:31:52 -0800
committer buzbee <buzbee@google.com> 2012-11-15 09:47:38 -0800
commitefc6369224b036a1fb77849f7ae65b3492c832c0 (patch)
treee61d88a5b3b787d782b2fa02b90947ba9a115458 /src/compiler/compiler_internals.h
parenta3c6849b160cd5d2b2ca6e6fa9d9df834def85ee (diff)
Quick compiler source reorganizatio - part 1
A step towards cleanup of the quick compiler source. In this CL we rename all files to Art standards, combine some of the old target-specific files that may have made sense in the JIT, but no longer do. Also removed some codegen/<target>/ subdirectories, combined and deleted some existing files. Still quite a bit of work to do in cleaning up header files, getting some better consistency in what codegen functions go where. That will happen in later CLs. No logic changes in this CL - just renaming and moving stuff around Change-Id: Ic172cd3b76d4c670f8e4d5fdd4a3e967db3f4c1e
Diffstat (limited to 'src/compiler/compiler_internals.h')
-rw-r--r--src/compiler/compiler_internals.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/compiler/compiler_internals.h b/src/compiler/compiler_internals.h
new file mode 100644
index 0000000000..2f81afe5aa
--- /dev/null
+++ b/src/compiler/compiler_internals.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (C) 2011 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef ART_SRC_COMPILER_COMPILER_INTERNAL_H_
+#define ART_SRC_COMPILER_COMPILER_INTERNAL_H_
+
+#include "dalvik.h"
+#include "compiler_utility.h"
+#include "compiler_ir.h"
+#include "codegen/compiler_codegen.h"
+
+#endif // ART_SRC_COMPILER_COMPILER_INTERNAL_H_