diff options
author | 2015-09-09 13:15:38 -0700 | |
---|---|---|
committer | 2015-09-17 14:41:52 -0700 | |
commit | 85b62f23fc6dfffe2ddd3ddfa74611666c9ff41d (patch) | |
tree | c916b01b1608558a7d8c9d100274c4c6b6706386 /compiler/utils/mips/assembler_mips.h | |
parent | 6766eae2d91e894b4ceab9f29cc983900e7bc0c7 (diff) |
ART: Refactor intrinsics slow-paths
Refactor slow paths so that there is a default implementation for
common cases (only arm64 with vixl is special). Write a generic
intrinsic slow-path that can be reused for the specific architectures.
Move helper functions into CodeGenerator so that they are accessible.
Change-Id: Ibd788dce432601c6a9f7e6f13eab31f28dcb8550
Diffstat (limited to 'compiler/utils/mips/assembler_mips.h')
-rw-r--r-- | compiler/utils/mips/assembler_mips.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compiler/utils/mips/assembler_mips.h b/compiler/utils/mips/assembler_mips.h index 6c8b162d62..378a59cb3e 100644 --- a/compiler/utils/mips/assembler_mips.h +++ b/compiler/utils/mips/assembler_mips.h @@ -150,6 +150,13 @@ class MipsAssembler FINAL : public Assembler { void EmitJump(Label* label, bool link); void Bind(Label* label, bool is_jump); + void Bind(Label* label) OVERRIDE { + Bind(label, false); + } + void Jump(Label* label) OVERRIDE { + EmitJump(label, false); + } + // // Overridden common assembler high-level functionality // |