diff options
author | Vladimir Marko <vmarko@google.com> | 2014-09-24 12:42:55 +0100 |
---|---|---|
committer | Vladimir Marko <vmarko@google.com> | 2014-10-03 18:15:33 +0100 |
commit | 7c2ad5af0bdd3cc1069038f8e3422d99aeb5f44c (patch) | |
tree | 17bbfe4d36a5986aa1ca8a7bb2b6945175fd0963 /compiler/oat_writer.h | |
parent | 63462448ca4e377074a10a4720aa22f71154dbe9 (diff) | |
download | android_art-7c2ad5af0bdd3cc1069038f8e3422d99aeb5f44c.tar.gz android_art-7c2ad5af0bdd3cc1069038f8e3422d99aeb5f44c.tar.bz2 android_art-7c2ad5af0bdd3cc1069038f8e3422d99aeb5f44c.zip |
Implement method calls using relative BL on ARM64.
Change-Id: I9e5d0b6c100b6cddd6bbb7ab07cff77ab104ea31
Diffstat (limited to 'compiler/oat_writer.h')
-rw-r--r-- | compiler/oat_writer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/oat_writer.h b/compiler/oat_writer.h index 5545ba817b..a1e61b936a 100644 --- a/compiler/oat_writer.h +++ b/compiler/oat_writer.h @@ -330,7 +330,9 @@ class OatWriter { class RelativeCallPatcher; class NoRelativeCallPatcher; class X86RelativeCallPatcher; + class ArmBaseRelativeCallPatcher; class Thumb2RelativeCallPatcher; + class Arm64RelativeCallPatcher; std::unique_ptr<RelativeCallPatcher> relative_call_patcher_; |