HomeSort by relevance Sort by last modified time
    Searched refs:method_ref (Results 1 - 22 of 22) sorted by null

  /art/compiler/linker/arm/
relative_patcher_arm_base.h 31 MethodReference method_ref) OVERRIDE;
41 MethodReference method_ref, uint32_t max_extra_space);
45 bool ReserveSpaceProcessPatches(uint32_t quick_code_offset, MethodReference method_ref,
relative_patcher_arm_base.cc 28 MethodReference method_ref) {
29 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u);
85 MethodReference method_ref,
97 bool needs_thunk = ReserveSpaceProcessPatches(quick_code_offset, method_ref,
140 MethodReference method_ref,
147 if (patch_ref.dex_file == method_ref.dex_file &&
148 patch_ref.dex_method_index == method_ref.dex_method_index) {
  /art/compiler/linker/x86/
relative_patcher_x86_base.h 29 MethodReference method_ref) OVERRIDE;
relative_patcher_x86_base.cc 25 MethodReference method_ref ATTRIBUTE_UNUSED) {
  /art/compiler/dex/
verification_results.h 56 bool IsCandidateForCompilation(MethodReference& method_ref,
mir_graph.h 539 MethodReference method_ref; member in struct:art::CallInfo
    [all...]
mir_graph.cc     [all...]
  /art/compiler/linker/
relative_patcher_test.h 70 void AddCompiledMethod(MethodReference method_ref,
73 compiled_method_refs_.push_back(method_ref);
155 bool CheckLinkedMethod(MethodReference method_ref, const ArrayRef<const uint8_t>& expected_code) {
159 if (ref.dex_file == method_ref.dex_file &&
160 ref.dex_method_index == method_ref.dex_method_index) {
168 auto result = method_offset_map_.FindMethodOffset(method_ref);
relative_patcher.h 87 MethodReference method_ref) = 0;
relative_patcher.cc 37 MethodReference method_ref ATTRIBUTE_UNUSED) OVERRIDE {
  /art/compiler/linker/arm64/
relative_patcher_arm64.h 32 MethodReference method_ref) OVERRIDE;
relative_patcher_arm64.cc 45 MethodReference method_ref) {
48 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u);
68 offset = ReserveSpaceInternal(offset, compiled_method, method_ref, kAdrpThunkSize * num_adrp);
  /art/compiler/jit/
jit_compiler.cc 128 MethodReference method_ref(dex_file, method->GetDexMethodIndex());
130 if (verification_results_->GetVerifiedMethod(method_ref) == nullptr) {
169 compiler_driver_->RemoveCompiledMethod(method_ref);
  /art/compiler/driver/
compiler_driver.cc 680 bool CompilerDriver::IsMethodToCompile(const MethodReference& method_ref) const {
689 std::string tmp = PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file, true);
    [all...]
compiler_driver.h 188 void RemoveCompiledMethod(const MethodReference& method_ref);
445 bool IsMethodToCompile(const MethodReference& method_ref) const;
    [all...]
  /art/compiler/
oat_writer.cc 397 MethodReference method_ref(dex_file_, it.GetMemberIndex());
398 auto method_lb = writer_->method_offset_map_.map.lower_bound(method_ref);
400 !writer_->method_offset_map_.map.key_comp()(method_ref, method_lb->first)) {
403 << PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file)
406 writer_->method_offset_map_.map.PutBefore(method_lb, method_ref, quick_code_offset);
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc 665 MethodReference method_ref = method->ToMethodReference(); local
669 auto it = method_to_string_init_map.find(method_ref);
672 method_to_string_init_map.Overwrite(method_ref, string_init_map);
    [all...]
  /art/runtime/
profiler.cc 528 MethodReference method_ref(dex_file, method_idx);
529 StackTrieNode* child = current->FindChild(method_ref, dex_pc);
538 StackTrieNode* new_node = new StackTrieNode(method_ref, dex_pc, method_size, current);
  /art/compiler/dex/quick/x86/
utility_x86.cc 1072 MethodReference method_ref = mir_graph_->GetMethodLoweringInfo(mir).GetTargetMethod(); local
    [all...]
  /art/compiler/dex/quick/
gen_invoke.cc     [all...]
dex_file_method_inliner.cc 531 auto it = inline_methods_.find(info->method_ref.dex_method_index);
    [all...]
codegen_util.cc 860 MethodReference method_ref(cu_->dex_file, cu_->method_idx);
    [all...]

Completed in 1191 milliseconds