1// 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 8#include "src/diagnostics/basic-block-profiler.h" 9#include "src/utils/allocation.h" 10 11namespace v8 { 12namespace internal { 13 14class OptimizedCompilationInfo; 15 16namespace compiler { 17 18class Graph; 19class Schedule; 20 21class BasicBlockInstrumentor : public AllStatic { 22 public: 23 static BasicBlockProfilerData* Instrument(OptimizedCompilationInfo* info, 24 Graph* graph, Schedule* schedule, 25 Isolate* isolate); 26}; 27 28} // namespace compiler 29} // namespace internal 30} // namespace v8 31 32#endif // V8_COMPILER_BASIC_BLOCK_INSTRUMENTOR_H_ 33