blob: 32dd82ade1fbe9184dd7f5c9584fa80a8bba9ed0 [file] [log] [blame]
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001// Copyright 2014 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef V8_COMPILER_BASIC_BLOCK_INSTRUMENTOR_H_
6#define V8_COMPILER_BASIC_BLOCK_INSTRUMENTOR_H_
7
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00008#include "src/allocation.h"
Emily Bernierd0a1eb72015-03-24 16:35:39 -04009#include "src/basic-block-profiler.h"
10
11namespace v8 {
12namespace internal {
13
14class CompilationInfo;
15
16namespace compiler {
17
18class Graph;
19class Schedule;
20
21class BasicBlockInstrumentor : public AllStatic {
22 public:
23 static BasicBlockProfiler::Data* Instrument(CompilationInfo* info,
24 Graph* graph, Schedule* schedule);
25};
26
27} // namespace compiler
28} // namespace internal
29} // namespace v8
30
31#endif