Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: runtime/vm/vtune.h

Issue 11412106: Support VTune's JIT interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/vm_sources.gypi ('k') | runtime/vm/vtune.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 #ifndef VM_VTUNE_H_
6 #define VM_VTUNE_H_
7
8 #include "vm/code_observers.h"
9
10 namespace dart {
11
12 #if defined(DART_VTUNE_SUPPORT)
13 class VTuneCodeObserver : public CodeObserver {
14 public:
15 virtual bool IsActive() const;
16
17 virtual void Notify(const char* name,
18 uword base,
19 uword prologue_offset,
20 uword size,
21 bool optimized);
22 };
23 #endif
24
25
26 } // namespace dart
27
28 #endif // VM_VTUNE_H_
OLDNEW
« no previous file with comments | « runtime/vm/vm_sources.gypi ('k') | runtime/vm/vtune.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698