summaryrefslogtreecommitdiff
path: root/runtime/oat_quick_method_header.cc
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2018-07-27 15:58:15 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2018-07-27 15:58:15 +0000
commit9acb522e35e3302786a338c7f50585dd412d68d3 (patch)
treef665fa233579d933da378299c20e65ed6e317012 /runtime/oat_quick_method_header.cc
parent921702dfd9d857aef1331f653ec7b656e0b080e8 (diff)
parent8808756b8fba036a9c73a45c800a56be09872364 (diff)
Merge changes I07fcf6f2,I01074aee
* changes: Remove frame info from OatQuickMethodHeader. ARM64: Fix the CallOtherJustTooFarAfter test.
Diffstat (limited to 'runtime/oat_quick_method_header.cc')
-rw-r--r--runtime/oat_quick_method_header.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/runtime/oat_quick_method_header.cc b/runtime/oat_quick_method_header.cc
index 79c3ad6b45..3ed2a91be6 100644
--- a/runtime/oat_quick_method_header.cc
+++ b/runtime/oat_quick_method_header.cc
@@ -24,17 +24,6 @@
namespace art {
-OatQuickMethodHeader::OatQuickMethodHeader(uint32_t vmap_table_offset,
- uint32_t method_info_offset,
- uint32_t frame_size_in_bytes,
- uint32_t core_spill_mask,
- uint32_t fp_spill_mask,
- uint32_t code_size)
- : vmap_table_offset_(vmap_table_offset),
- method_info_offset_(method_info_offset),
- frame_info_(frame_size_in_bytes, core_spill_mask, fp_spill_mask),
- code_size_(code_size) {}
-
uint32_t OatQuickMethodHeader::ToDexPc(ArtMethod* method,
const uintptr_t pc,
bool abort_on_failure) const {