Home | History | Annotate | Download | only in compiler

Lines Matching defs:method

44 void CommonCompilerTest::MakeExecutable(ArtMethod* method) {
45 CHECK(method != nullptr);
48 if (!method->IsAbstract()) {
49 mirror::DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache();
53 method->GetDexMethodIndex()));
100 LOG(INFO) << "MakeExecutable " << PrettyMethod(method) << " code=" << method_code;
101 class_linker_->SetEntryPointsToCompiledCode(method, method_code);
105 class_linker_->SetEntryPointsToInterpreter(method);
241 void CommonCompilerTest::CompileMethod(ArtMethod* method) {
242 CHECK(method != nullptr);
245 compiler_driver_->CompileOne(Thread::Current(), method, &timings);
247 MakeExecutable(method);
258 ArtMethod* method = klass->FindDirectMethod(method_name, signature, pointer_size);
259 CHECK(method != nullptr) << "Direct method not found: "
261 CompileMethod(method);
272 ArtMethod* method = klass->FindVirtualMethod(method_name, signature, pointer_size);
273 CHECK(method != nullptr) << "Virtual method not found: "
275 CompileMethod(method);