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

Side by Side Diff: src/hydrogen.cc

Issue 597943003: Move i18n-related runtime functions into a separate file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: adapt check-name-clashes.py Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « src/codegen.cc ('k') | src/ia32/code-stubs-ia32.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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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/hydrogen.h" 5 #include "src/hydrogen.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 22 matching lines...) Expand all
33 #include "src/hydrogen-representation-changes.h" 33 #include "src/hydrogen-representation-changes.h"
34 #include "src/hydrogen-sce.h" 34 #include "src/hydrogen-sce.h"
35 #include "src/hydrogen-store-elimination.h" 35 #include "src/hydrogen-store-elimination.h"
36 #include "src/hydrogen-uint32-analysis.h" 36 #include "src/hydrogen-uint32-analysis.h"
37 #include "src/ic/call-optimization.h" 37 #include "src/ic/call-optimization.h"
38 #include "src/ic/ic.h" 38 #include "src/ic/ic.h"
39 // GetRootConstructor 39 // GetRootConstructor
40 #include "src/ic/ic-inl.h" 40 #include "src/ic/ic-inl.h"
41 #include "src/lithium-allocator.h" 41 #include "src/lithium-allocator.h"
42 #include "src/parser.h" 42 #include "src/parser.h"
43 #include "src/runtime.h" 43 #include "src/runtime/runtime.h"
44 #include "src/scopeinfo.h" 44 #include "src/scopeinfo.h"
45 #include "src/scopes.h" 45 #include "src/scopes.h"
46 #include "src/typing.h" 46 #include "src/typing.h"
47 47
48 #if V8_TARGET_ARCH_IA32 48 #if V8_TARGET_ARCH_IA32
49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT 49 #include "src/ia32/lithium-codegen-ia32.h" // NOLINT
50 #elif V8_TARGET_ARCH_X64 50 #elif V8_TARGET_ARCH_X64
51 #include "src/x64/lithium-codegen-x64.h" // NOLINT 51 #include "src/x64/lithium-codegen-x64.h" // NOLINT
52 #elif V8_TARGET_ARCH_ARM64 52 #elif V8_TARGET_ARCH_ARM64
53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT 53 #include "src/arm64/lithium-codegen-arm64.h" // NOLINT
(...skipping 12463 matching lines...) Expand 10 before | Expand all | Expand 10 after
12517 if (ShouldProduceTraceOutput()) { 12517 if (ShouldProduceTraceOutput()) {
12518 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 12518 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
12519 } 12519 }
12520 12520
12521 #ifdef DEBUG 12521 #ifdef DEBUG
12522 graph_->Verify(false); // No full verify. 12522 graph_->Verify(false); // No full verify.
12523 #endif 12523 #endif
12524 } 12524 }
12525 12525
12526 } } // namespace v8::internal 12526 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/codegen.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698