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

Side by Side Diff: src/isolate.h

Issue 2145023002: [builtins] move builtin files to src/builtins/. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase 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 | « src/interpreter/interpreter-intrinsics.h ('k') | src/mips/builtins-mips.cc » ('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 #ifndef V8_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
11 11
12 #include "include/v8-debug.h" 12 #include "include/v8-debug.h"
13 #include "src/allocation.h" 13 #include "src/allocation.h"
14 #include "src/assert-scope.h" 14 #include "src/assert-scope.h"
15 #include "src/base/accounting-allocator.h" 15 #include "src/base/accounting-allocator.h"
16 #include "src/base/atomicops.h" 16 #include "src/base/atomicops.h"
17 #include "src/base/hashmap.h" 17 #include "src/base/hashmap.h"
18 #include "src/builtins.h" 18 #include "src/builtins/builtins.h"
19 #include "src/cancelable-task.h" 19 #include "src/cancelable-task.h"
20 #include "src/contexts.h" 20 #include "src/contexts.h"
21 #include "src/date.h" 21 #include "src/date.h"
22 #include "src/execution.h" 22 #include "src/execution.h"
23 #include "src/frames.h" 23 #include "src/frames.h"
24 #include "src/futex-emulation.h" 24 #include "src/futex-emulation.h"
25 #include "src/global-handles.h" 25 #include "src/global-handles.h"
26 #include "src/handles.h" 26 #include "src/handles.h"
27 #include "src/heap/heap.h" 27 #include "src/heap/heap.h"
28 #include "src/messages.h" 28 #include "src/messages.h"
(...skipping 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 1641
1642 EmbeddedVector<char, 128> filename_; 1642 EmbeddedVector<char, 128> filename_;
1643 FILE* file_; 1643 FILE* file_;
1644 int scope_depth_; 1644 int scope_depth_;
1645 }; 1645 };
1646 1646
1647 } // namespace internal 1647 } // namespace internal
1648 } // namespace v8 1648 } // namespace v8
1649 1649
1650 #endif // V8_ISOLATE_H_ 1650 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/interpreter/interpreter-intrinsics.h ('k') | src/mips/builtins-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698