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

Side by Side Diff: src/frames.cc

Issue 1481613002: Create ast/ and parsing/ subdirectories and move appropriate files (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 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
« no previous file with comments | « src/expression-classifier.h ('k') | src/full-codegen/arm/full-codegen-arm.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 #include "src/frames.h" 5 #include "src/frames.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/ast.h" 9 #include "src/ast/ast.h"
10 #include "src/ast/scopeinfo.h"
10 #include "src/base/bits.h" 11 #include "src/base/bits.h"
11 #include "src/deoptimizer.h" 12 #include "src/deoptimizer.h"
12 #include "src/frames-inl.h" 13 #include "src/frames-inl.h"
13 #include "src/full-codegen/full-codegen.h" 14 #include "src/full-codegen/full-codegen.h"
14 #include "src/register-configuration.h" 15 #include "src/register-configuration.h"
15 #include "src/safepoint-table.h" 16 #include "src/safepoint-table.h"
16 #include "src/scopeinfo.h"
17 #include "src/string-stream.h" 17 #include "src/string-stream.h"
18 #include "src/vm-state-inl.h" 18 #include "src/vm-state-inl.h"
19 19
20 namespace v8 { 20 namespace v8 {
21 namespace internal { 21 namespace internal {
22 22
23 ReturnAddressLocationResolver 23 ReturnAddressLocationResolver
24 StackFrame::return_address_location_resolver_ = NULL; 24 StackFrame::return_address_location_resolver_ = NULL;
25 25
26 26
(...skipping 1552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) { 1579 for (StackFrameIterator it(isolate); !it.done(); it.Advance()) {
1580 StackFrame* frame = AllocateFrameCopy(it.frame(), zone); 1580 StackFrame* frame = AllocateFrameCopy(it.frame(), zone);
1581 list.Add(frame, zone); 1581 list.Add(frame, zone);
1582 } 1582 }
1583 return list.ToVector(); 1583 return list.ToVector();
1584 } 1584 }
1585 1585
1586 1586
1587 } // namespace internal 1587 } // namespace internal
1588 } // namespace v8 1588 } // namespace v8
OLDNEW
« no previous file with comments | « src/expression-classifier.h ('k') | src/full-codegen/arm/full-codegen-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698