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

Side by Side Diff: src/frames.cc

Issue 1248443003: Move Full-codegen into its own folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rename define Created 5 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/deoptimizer.cc ('k') | src/full-codegen.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/frames.h" 5 #include "src/frames.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
11 #include "src/ast.h" 11 #include "src/ast.h"
12 #include "src/base/bits.h" 12 #include "src/base/bits.h"
13 #include "src/deoptimizer.h" 13 #include "src/deoptimizer.h"
14 #include "src/frames-inl.h" 14 #include "src/frames-inl.h"
15 #include "src/full-codegen.h" 15 #include "src/full-codegen/full-codegen.h"
16 #include "src/heap/mark-compact.h" 16 #include "src/heap/mark-compact.h"
17 #include "src/safepoint-table.h" 17 #include "src/safepoint-table.h"
18 #include "src/scopeinfo.h" 18 #include "src/scopeinfo.h"
19 #include "src/string-stream.h" 19 #include "src/string-stream.h"
20 #include "src/vm-state-inl.h" 20 #include "src/vm-state-inl.h"
21 21
22 namespace v8 { 22 namespace v8 {
23 namespace internal { 23 namespace internal {
24 24
25 25
(...skipping 1525 matching lines...) Expand 10 before | Expand all | Expand 10 after
1551 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { 1551 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) {
1552 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); 1552 StackFrame* frame = AllocateFrameCopy(it.frame(), zone);
1553 list.Add(frame, zone); 1553 list.Add(frame, zone);
1554 } 1554 }
1555 return list.ToVector(); 1555 return list.ToVector();
1556 } 1556 }
1557 1557
1558 1558
1559 } // namespace internal 1559 } // namespace internal
1560 } // namespace v8 1560 } // namespace v8
OLDNEW
« no previous file with comments | « src/deoptimizer.cc ('k') | src/full-codegen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698