Home
last modified time | relevance | path

Searched refs:method_size (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dprofiler.h51 StackTrieNode(MethodReference method, uint32_t dex_pc, uint32_t method_size, in StackTrieNode() argument
54 count_(0), method_size_(method_size) { in StackTrieNode()
137 PreviousValue(uint32_t count, uint32_t method_size, PreviousContextMap* context_map) in PreviousValue()
138 : count_(count), method_size_(method_size), context_map_(context_map) {} in PreviousValue()
243 ProfileData(const std::string& method_name, uint32_t count, uint32_t method_size, in ProfileData() argument
245 method_name_(method_name), count_(count), method_size_(method_size), in ProfileData()
Dprofiler.cc533 uint32_t method_size = 0; in PutStack() local
536 method_size = codeitem->insns_size_in_code_units_; in PutStack()
538 StackTrieNode* new_node = new StackTrieNode(method_ref, dex_pc, method_size, current); in PutStack()
584 uint32_t method_size = 0; in Write() local
586 method_size = codeitem->insns_size_in_code_units_; in Write()
597 os << StringPrintf("%s/%u/%u\n", method_name.c_str(), count, method_size); in Write()
608 uint32_t method_size = 0; in Write() local
613 method_size = node->GetMethodSize(); in Write()
658 method_size, Join(context_count_vector, '#').c_str()); in Write()
Dclass_linker.cc2298 const size_t method_size = ArtMethod::ObjectSize(image_pointer_size_); in AllocArtMethodArray() local
2300 Runtime::Current()->GetLinearAlloc()->Alloc(self, method_size * length)); in AllocArtMethodArray()
2303 new(reinterpret_cast<void*>(ptr + i * method_size)) ArtMethod; in AllocArtMethodArray()
4669 const size_t method_size = ArtMethod::ObjectSize(image_pointer_size_); in LinkInterfaceMethods() local
4895 reinterpret_cast<uintptr_t>(input_virtual_methods) + method_size * k) : in LinkInterfaceMethods()
4936 miranda_method = reinterpret_cast<ArtMethod*>(allocator.Alloc(method_size)); in LinkInterfaceMethods()
4957 self, old_virtuals, old_method_count * method_size, new_method_count * method_size)); in LinkInterfaceMethods()
4965 StrideIterator<ArtMethod> out(reinterpret_cast<uintptr_t>(virtuals), method_size); in LinkInterfaceMethods()
4976 reinterpret_cast<uintptr_t>(virtuals) + old_method_count * method_size, method_size); in LinkInterfaceMethods()
4999 reinterpret_cast<uintptr_t>(virtuals) + old_method_count * method_size, method_size); in LinkInterfaceMethods()
/art/runtime/entrypoints/
Dentrypoint_utils.cc301 size_t method_size = ArtMethod::ObjectSize(sizeof(void*)); in InvokeProxyInvocationHandler() local
303 reinterpret_cast<uintptr_t>(virtual_methods)) / method_size; in InvokeProxyInvocationHandler()
/art/patchoat/
Dpatchoat.cc432 size_t method_size = ArtMethod::ObjectSize(pointer_size); in PatchArtMethods() local
433 for (size_t pos = 0; pos < section.Size(); pos += method_size) { in PatchArtMethods()
/art/oatdump/
Doatdump.cc1533 const auto method_size = ArtMethod::ObjectSize(pointer_size); in Dump() local
1534 for (size_t pos = 0; pos < methods_section.Size(); pos += method_size) { in Dump()