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

  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 619 constexpr uint32_t bl_offset_in_method1 = 1u * 4u; // After NOPs. local
621 ASSERT_EQ(bl_offset_in_method1 + 4u, method1_code.size());
624 LinkerPatch::RelativeCodePatch(bl_offset_in_method1, nullptr, expected_last_method_idx),
632 bl_offset_in_method1 + max_positive_disp);
637 ASSERT_EQ(method1_offset + bl_offset_in_method1 + max_positive_disp, last_method_offset);
671 constexpr uint32_t bl_offset_in_method1 = 0u * 4u; // After NOPs. local
673 ASSERT_EQ(bl_offset_in_method1 + 4u, method1_code.size());
676 LinkerPatch::RelativeCodePatch(bl_offset_in_method1, nullptr, expected_last_method_idx),
685 bl_offset_in_method1 + just_over_max_positive_disp);
696 uint32_t diff = thunk_offset - (method1_offset + bl_offset_in_method1);
    [all...]
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 436 constexpr uint32_t bl_offset_in_method1 = 3u * 2u; // After NOPs. local
438 ASSERT_EQ(bl_offset_in_method1 + 4u, method1_code.size());
440 LinkerPatch::RelativeCodePatch(bl_offset_in_method1, nullptr, 3u),
448 bl_offset_in_method1 + max_positive_disp);
480 constexpr uint32_t bl_offset_in_method1 = 2u * 2u; // After NOPs. local
482 ASSERT_EQ(bl_offset_in_method1 + 4u, method1_code.size());
484 LinkerPatch::RelativeCodePatch(bl_offset_in_method1, nullptr, 3u),
492 bl_offset_in_method1 + just_over_max_positive_disp);
504 uint32_t diff = thunk_offset - (method1_offset + bl_offset_in_method1 + 4u /* PC adjustment */);
    [all...]

Completed in 653 milliseconds