summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2017-09-18 14:31:41 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-09-18 14:31:41 +0000
commit30744106517d64fb218ec5a96edbec797ad5a091 (patch)
tree4604c4372c6c4dc5b76d40919c64b7c244e0d720 /compiler/driver/compiler_driver.h
parent1c5033a7dfb4ea081e51e8424f8431b04c15bdb2 (diff)
parentc4204a3fb28a7e5abb8d16d830f25a6702e7896d (diff)
Merge "Missed submitting this in last commit."
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index 19fae695b5..5043884836 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -106,6 +106,8 @@ class CompilerDriver {
// Set dex files that will be stored in the oat file after being compiled.
void SetDexFilesForOatFile(const std::vector<const DexFile*>& dex_files);
+
+ // Set dex files classpath.
void SetClasspathDexFiles(const std::vector<const DexFile*>& dex_files);
// Get dex file that will be stored in the oat file after being compiled.
@@ -487,9 +489,10 @@ class CompilerDriver {
std::map<ClassReference, bool> requires_constructor_barrier_
GUARDED_BY(requires_constructor_barrier_lock_);
- // All class references that this compiler has compiled. Indexed by class defs.
using ClassStateTable = AtomicDexRefMap<mirror::Class::Status>;
+ // All class references that this compiler has compiled. Indexed by class defs.
ClassStateTable compiled_classes_;
+ // All class references that are in the classpath. Indexed by class defs.
ClassStateTable classpath_classes_;
typedef AtomicDexRefMap<CompiledMethod*> MethodTable;