diff options
author | Alexandre Rames <alexandre.rames@arm.com> | 2014-11-07 17:13:31 +0000 |
---|---|---|
committer | Alexandre Rames <alexandre.rames@arm.com> | 2014-11-10 17:31:38 +0000 |
commit | fc19de8b201475231751b9df08fce01a093e5c2b (patch) | |
tree | 7c0e9c923a37d059f1707156d69f4908aca308ac /compiler/optimizing/code_generator_arm64.h | |
parent | a89086e3be94fb262c4c4feb15241b30616c3b8f (diff) | |
download | android_art-fc19de8b201475231751b9df08fce01a093e5c2b.tar.gz android_art-fc19de8b201475231751b9df08fce01a093e5c2b.tar.bz2 android_art-fc19de8b201475231751b9df08fce01a093e5c2b.zip |
Opt compiler: Add arm64 support for a few more IRs.
Change-Id: I781ddcbc61eb2b04ae80b1c7697e1ed5694bd5b9
Diffstat (limited to 'compiler/optimizing/code_generator_arm64.h')
-rw-r--r-- | compiler/optimizing/code_generator_arm64.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/compiler/optimizing/code_generator_arm64.h b/compiler/optimizing/code_generator_arm64.h index ad1f22195e..f2ead21e15 100644 --- a/compiler/optimizing/code_generator_arm64.h +++ b/compiler/optimizing/code_generator_arm64.h @@ -216,8 +216,6 @@ class CodeGeneratorARM64 : public CodeGenerator { return InstructionSet::kArm64; } - void MoveHelper(Location destination, Location source, Primitive::Type type); - void Initialize() OVERRIDE { HGraph* graph = GetGraph(); int length = graph->GetBlocks().Size(); @@ -227,6 +225,11 @@ class CodeGeneratorARM64 : public CodeGenerator { } } + // Code generation helpers. + void MoveHelper(Location destination, Location source, Primitive::Type type); + void Load(Primitive::Type type, vixl::Register dst, const vixl::MemOperand& src); + void Store(Primitive::Type type, vixl::Register rt, const vixl::MemOperand& dst); + private: // Labels for each block that will be compiled. vixl::Label* block_labels_; |