diff options
author | Andreas Gampe <agampe@google.com> | 2014-07-17 17:03:43 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-07-16 23:44:46 +0000 |
commit | fb8a07bdf92ab097c1d309a8a6b70dacc81f4478 (patch) | |
tree | 416dd4b5a9e81b4446c0bdc93dbe1bb583a2536d /compiler/dex/quick/arm/codegen_arm.h | |
parent | de0aafe25a25455cbe930b46a43904125bfa6299 (diff) | |
parent | 90969af6deb19b1dbe356d62fe68d8f5698d3d8f (diff) | |
download | android_art-fb8a07bdf92ab097c1d309a8a6b70dacc81f4478.tar.gz android_art-fb8a07bdf92ab097c1d309a8a6b70dacc81f4478.tar.bz2 android_art-fb8a07bdf92ab097c1d309a8a6b70dacc81f4478.zip |
Merge "ART: Refactor GenSelect, refactor gen_common accordingly"
Diffstat (limited to 'compiler/dex/quick/arm/codegen_arm.h')
-rw-r--r-- | compiler/dex/quick/arm/codegen_arm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/dex/quick/arm/codegen_arm.h b/compiler/dex/quick/arm/codegen_arm.h index 582af510f3..8f603907ff 100644 --- a/compiler/dex/quick/arm/codegen_arm.h +++ b/compiler/dex/quick/arm/codegen_arm.h @@ -136,6 +136,9 @@ class ArmMir2Lir FINAL : public Mir2Lir { void GenFusedFPCmpBranch(BasicBlock* bb, MIR* mir, bool gt_bias, bool is_double); void GenFusedLongCmpBranch(BasicBlock* bb, MIR* mir); void GenSelect(BasicBlock* bb, MIR* mir); + void GenSelectConst32(RegStorage left_op, RegStorage right_op, ConditionCode code, + int32_t true_val, int32_t false_val, RegStorage rs_dest, + int dest_reg_class) OVERRIDE; bool GenMemBarrier(MemBarrierKind barrier_kind); void GenMonitorEnter(int opt_flags, RegLocation rl_src); void GenMonitorExit(int opt_flags, RegLocation rl_src); |