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

Side by Side Diff: src/isolate.cc

Issue 2125023004: Remove v8- prefix of file name in libsampler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 5 months 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
« no previous file with comments | « BUILD.gn ('k') | src/libsampler/sampler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/isolate.h" 5 #include "src/isolate.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <fstream> // NOLINT(readability/streams) 9 #include <fstream> // NOLINT(readability/streams)
10 #include <sstream> 10 #include <sstream>
11 11
12 #include "src/ast/ast.h" 12 #include "src/ast/ast.h"
13 #include "src/ast/scopeinfo.h" 13 #include "src/ast/scopeinfo.h"
14 #include "src/base/platform/platform.h" 14 #include "src/base/platform/platform.h"
15 #include "src/base/sys-info.h" 15 #include "src/base/sys-info.h"
16 #include "src/base/utils/random-number-generator.h" 16 #include "src/base/utils/random-number-generator.h"
17 #include "src/basic-block-profiler.h" 17 #include "src/basic-block-profiler.h"
18 #include "src/bootstrapper.h" 18 #include "src/bootstrapper.h"
19 #include "src/codegen.h" 19 #include "src/codegen.h"
20 #include "src/compilation-cache.h" 20 #include "src/compilation-cache.h"
21 #include "src/compilation-statistics.h" 21 #include "src/compilation-statistics.h"
22 #include "src/crankshaft/hydrogen.h" 22 #include "src/crankshaft/hydrogen.h"
23 #include "src/debug/debug.h" 23 #include "src/debug/debug.h"
24 #include "src/deoptimizer.h" 24 #include "src/deoptimizer.h"
25 #include "src/external-reference-table.h" 25 #include "src/external-reference-table.h"
26 #include "src/frames-inl.h" 26 #include "src/frames-inl.h"
27 #include "src/ic/stub-cache.h" 27 #include "src/ic/stub-cache.h"
28 #include "src/interpreter/interpreter.h" 28 #include "src/interpreter/interpreter.h"
29 #include "src/isolate-inl.h" 29 #include "src/isolate-inl.h"
30 #include "src/libsampler/v8-sampler.h" 30 #include "src/libsampler/sampler.h"
31 #include "src/log.h" 31 #include "src/log.h"
32 #include "src/messages.h" 32 #include "src/messages.h"
33 #include "src/profiler/cpu-profiler.h" 33 #include "src/profiler/cpu-profiler.h"
34 #include "src/prototype.h" 34 #include "src/prototype.h"
35 #include "src/regexp/regexp-stack.h" 35 #include "src/regexp/regexp-stack.h"
36 #include "src/runtime-profiler.h" 36 #include "src/runtime-profiler.h"
37 #include "src/simulator.h" 37 #include "src/simulator.h"
38 #include "src/snapshot/deserializer.h" 38 #include "src/snapshot/deserializer.h"
39 #include "src/v8.h" 39 #include "src/v8.h"
40 #include "src/version.h" 40 #include "src/version.h"
(...skipping 3046 matching lines...) Expand 10 before | Expand all | Expand 10 after
3087 // Then check whether this scope intercepts. 3087 // Then check whether this scope intercepts.
3088 if ((flag & intercept_mask_)) { 3088 if ((flag & intercept_mask_)) {
3089 intercepted_flags_ |= flag; 3089 intercepted_flags_ |= flag;
3090 return true; 3090 return true;
3091 } 3091 }
3092 return false; 3092 return false;
3093 } 3093 }
3094 3094
3095 } // namespace internal 3095 } // namespace internal
3096 } // namespace v8 3096 } // namespace v8
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/libsampler/sampler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698