Searched defs:method_name (Results 1 - 13 of 13) sorted by relevance

/art/runtime/mirror/
H A Dstack_trace_element.cc43 Handle<String> method_name, Handle<String> file_name,
49 trace->Init<true>(declaring_class, method_name, file_name, line_number);
51 trace->Init<false>(declaring_class, method_name, file_name, line_number);
58 void StackTraceElement::Init(Handle<String> declaring_class, Handle<String> method_name, argument
63 method_name.Get());
42 Alloc(Thread* self, Handle<String> declaring_class, Handle<String> method_name, Handle<String> file_name, int32_t line_number) argument
H A Dthrowable.cc131 auto* method_name = ste->GetMethodName(); local
135 method_name != nullptr ? method_name->ToModifiedUtf8().c_str() : "<unknown method>",
/art/compiler/
H A Dcommon_compiler_test.cc251 const char* class_name, const char* method_name,
258 ArtMethod* method = klass->FindDirectMethod(method_name, signature, pointer_size);
260 << class_name << "." << method_name << signature;
265 const char* class_name, const char* method_name,
272 ArtMethod* method = klass->FindVirtualMethod(method_name, signature, pointer_size);
274 << class_name << "." << method_name << signature;
250 CompileDirectMethod(Handle<mirror::ClassLoader> class_loader, const char* class_name, const char* method_name, const char* signature) argument
264 CompileVirtualMethod(Handle<mirror::ClassLoader> class_loader, const char* class_name, const char* method_name, const char* signature) argument
H A Delf_writer_debug.cc293 std::string method_name = PrettyMethod(method_info->dex_method_index_, local
296 method_name += " [DEDUPED]";
299 info.WriteStrp(DW_AT_name, method_name.data(), debug_str);
/art/runtime/quick/
H A Dinline_method_analyser.cc136 const char* method_name = ref.dex_file->GetMethodName(method_id); local
139 return strncmp(method_name, "access$", strlen("access$")) == 0 ||
140 strncmp(method_name, "-", strlen("-")) == 0;
/art/runtime/
H A Dprofiler.h243 ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, argument
245 method_name_(method_name), count_(count), method_size_(method_size),
274 bool GetProfileData(ProfileData* data, const std::string& method_name);
H A Dprofiler.cc581 std::string method_name = PrettyMethod(method); local
592 PreviousProfile::iterator pi = previous_.find(method_name);
597 os << StringPrintf("%s/%u/%u\n", method_name.c_str(), count, method_size);
607 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file)); local
632 PreviousProfile::iterator pi = previous_.find(method_name);
657 os << StringPrintf("%s/%u/%u/[%s]\n", method_name.c_str(), total_count,
872 bool ProfileFile::GetProfileData(ProfileFile::ProfileData* data, const std::string& method_name) { argument
873 ProfileMap::iterator i = profile_map_.find(method_name);
H A Dthread.cc1835 const char* method_name = method->GetInterfaceMethodIfProxy(sizeof(void*))->GetName(); local
1836 CHECK(method_name != nullptr);
1838 hs.NewHandle(mirror::String::AllocFromModifiedUtf8(soa.Self(), method_name)));
H A Dclass_linker.cc2388 const char* method_name = dex_file.StringDataByIdx(method_id.name_idx_); local
2400 if (UNLIKELY(strcmp("finalize", method_name) == 0)) {
2420 } else if (method_name[0] == '<') {
2422 bool is_init = (strcmp("<init>", method_name) == 0);
2423 bool is_clinit = !is_init && (strcmp("<clinit>", method_name) == 0);
2425 LOG(WARNING) << "Unexpected '<' at start of method name " << method_name;
2428 LOG(WARNING) << method_name << " didn't have expected constructor access flag in class "
/art/compiler/optimizing/
H A Doptimizing_compiler.cc94 const char* method_name,
98 : method_name_(method_name),
100 timing_logger_(method_name, true, true),
103 if (strstr(method_name, kStringFilter) == nullptr) {
485 std::string method_name = PrettyMethod(method_idx, dex_file); local
538 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
539 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
555 method_name.c_str(),
567 VLOG(compiler) << "Building " << method_name;
581 VLOG(compiler) << "Optimizing " << method_name;
93 PassInfoPrinter(HGraph* graph, const char* method_name, const CodeGenerator& codegen, std::ostream* visualizer_output, CompilerDriver* compiler_driver) argument
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc2458 bool CompilerDriver::SkipCompilation(const std::string& method_name) { argument
2464 if (!profile_file_.GetProfileData(&data, method_name)) {
2467 VLOG(compiler) << "not compiling " << method_name << " because it's not in the profile";
2479 LOG(INFO) << "compiling method " << method_name << " because its usage is part of top "
2483 VLOG(compiler) << "not compiling method " << method_name
/art/compiler/jni/
H A Djni_compiler_test.cc61 const char* method_name, const char* method_sig) {
69 ArtMethod* method = direct ? c->FindDirectMethod(method_name, method_sig, pointer_size) :
70 c->FindVirtualMethod(method_name, method_sig, pointer_size);
71 ASSERT_TRUE(method != nullptr) << method_name << " " << method_sig;
79 << method_name << " " << method_sig;
84 void SetUpForTest(bool direct, const char* method_name, const char* method_sig, argument
92 CompileForTest(class_loader_, direct, method_name, method_sig);
101 ASSERT_TRUE(jklass_ != nullptr) << method_name << " " << method_sig;
104 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig);
106 jmethod_ = env_->GetMethodID(jklass_, method_name, method_si
60 CompileForTest(jobject class_loader, bool direct, const char* method_name, const char* method_sig) argument
[all...]
/art/oatdump/
H A Doatdump.cc776 std::string method_name = dex_file.GetMethodName(dex_file.GetMethodId(dex_method_idx)); local
777 if (method_name.find(options_.method_filter_) == std::string::npos) {

Completed in 186 milliseconds