dart-sdk/runtime/vm/version.h
Ryan Macnak 4607e38d28 Reapply "Save and restore feedback from JIT."
Ensure ICData is attached to the callee flow graph in the inliner when built from kernel IR, not just from source.

R=fschneider@google.com

Review-Url: https://codereview.chromium.org/2572423004 .
2016-12-16 16:00:17 -08:00

27 lines
639 B
C++

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef RUNTIME_VM_VERSION_H_
#define RUNTIME_VM_VERSION_H_
#include "vm/allocation.h"
namespace dart {
class Version : public AllStatic {
public:
static const char* String();
static const char* SnapshotString();
static const char* CommitString();
private:
static const char* str_;
static const char* snapshot_hash_;
static const char* commit_;
};
} // namespace dart
#endif // RUNTIME_VM_VERSION_H_