OSDN Git Service

Add LoadString kind of kJitTableAddress for dump-cfg.
authorMingyao Yang <mingyao@google.com>
Wed, 30 Nov 2016 22:17:32 +0000 (14:17 -0800)
committerMingyao Yang <mingyao@google.com>
Wed, 30 Nov 2016 22:29:58 +0000 (14:29 -0800)
Test: manual

Change-Id: Ifcae7b26f666930766635d8b3ed7a495494cddf7

compiler/optimizing/nodes.cc

index 680381a..594255c 100644 (file)
@@ -2543,6 +2543,8 @@ std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs) {
       return os << "BssEntry";
     case HLoadString::LoadKind::kDexCacheViaMethod:
       return os << "DexCacheViaMethod";
+    case HLoadString::LoadKind::kJitTableAddress:
+      return os << "JitTableAddress";
     default:
       LOG(FATAL) << "Unknown HLoadString::LoadKind: " << static_cast<int>(rhs);
       UNREACHABLE();