From 1500e6fe209223f920cfbe6857dc4e2f0e0fc9ca Mon Sep 17 00:00:00 2001 From: Razvan A Lupusoru Date: Fri, 22 Aug 2014 15:39:50 -0700 Subject: ART: Update CFG dumper to handle extended better Change-Id: I0df8ece13deadf247a425beac0c08b2be5d773f9 Signed-off-by: Razvan A Lupusoru Signed-off-by: Serguei Katkov --- compiler/dex/compiler_enums.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'compiler/dex/compiler_enums.h') diff --git a/compiler/dex/compiler_enums.h b/compiler/dex/compiler_enums.h index 5263b8de7e..9c2a8ba96a 100644 --- a/compiler/dex/compiler_enums.h +++ b/compiler/dex/compiler_enums.h @@ -107,12 +107,44 @@ enum LIRPseudoOpcode { enum ExtendedMIROpcode { kMirOpFirst = kNumPackedOpcodes, kMirOpPhi = kMirOpFirst, + + // @brief Copy from one VR to another. + // @details + // vA: destination VR + // vB: source VR kMirOpCopy, + + // @brief Used to do float comparison with less-than bias. + // @details Unlike cmpl-float, this does not store result of comparison in VR. + // vA: left-hand side VR for comparison. + // vB: right-hand side VR for comparison. kMirOpFusedCmplFloat, + + // @brief Used to do float comparison with greater-than bias. + // @details Unlike cmpg-float, this does not store result of comparison in VR. + // vA: left-hand side VR for comparison. + // vB: right-hand side VR for comparison. kMirOpFusedCmpgFloat, + + // @brief Used to do double comparison with less-than bias. + // @details Unlike cmpl-double, this does not store result of comparison in VR. + // vA: left-hand side wide VR for comparison. + // vB: right-hand side wide VR for comparison. kMirOpFusedCmplDouble, + + // @brief Used to do double comparison with greater-than bias. + // @details Unlike cmpl-double, this does not store result of comparison in VR. + // vA: left-hand side wide VR for comparison. + // vB: right-hand side wide VR for comparison. kMirOpFusedCmpgDouble, + + // @brief Used to do comparison of 64-bit long integers. + // @details Unlike cmp-long, this does not store result of comparison in VR. + // vA: left-hand side wide VR for comparison. + // vB: right-hand side wide VR for comparison. kMirOpFusedCmpLong, + + // @brief This represents no-op. kMirOpNop, // @brief Do a null check on the object register. -- cgit v1.2.3-59-g8ed1b