Searched defs:compile (Results 1 - 3 of 3) sorted by relevance

/art/compiler/dex/
H A Dverification_results.cc52 bool compile = IsCandidateForCompilation(ref, method_verifier->GetAccessFlags()); local
54 if (!compile && !method_verifier->HasCheckCasts()) {
58 const VerifiedMethod* verified_method = VerifiedMethod::Create(method_verifier, compile);
113 // Don't compile class initializers, ever.
H A Dverified_method.cc47 bool compile) {
49 if (compile) {
46 Create(verifier::MethodVerifier* method_verifier, bool compile) argument
/art/compiler/driver/
H A Dcompiler_driver.cc211 // Indicate that a method of the given type was resolved at compile time.
218 // Indicate that a method of the given type was unresolved at compile time as it was in an
968 // isn't created at compile time. TODO: implement this
1696 * At compile time, we can still structurally verify the class even if FindClass fails.
2019 bool compile = verification_results_->IsCandidateForCompilation(method_ref, access_flags); local
2020 if (compile) {
2021 // NOTE: if compiler declines to compile this method, it will return nullptr.
2181 bool compile = data.GetTopKUsedPercentage() - data.GetUsedPercent() local
2184 if (compile) {
2194 return !compile;
[all...]

Completed in 1064 milliseconds