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

Side by Side Diff: src/hydrogen.cc

Issue 148293020: Merge experimental/a64 to bleeding_edge. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove ARM from OWNERS Created 6 years, 10 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/heap.cc ('k') | src/hydrogen-instructions.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 #include "runtime.h" 61 #include "runtime.h"
62 #include "scopeinfo.h" 62 #include "scopeinfo.h"
63 #include "scopes.h" 63 #include "scopes.h"
64 #include "stub-cache.h" 64 #include "stub-cache.h"
65 #include "typing.h" 65 #include "typing.h"
66 66
67 #if V8_TARGET_ARCH_IA32 67 #if V8_TARGET_ARCH_IA32
68 #include "ia32/lithium-codegen-ia32.h" 68 #include "ia32/lithium-codegen-ia32.h"
69 #elif V8_TARGET_ARCH_X64 69 #elif V8_TARGET_ARCH_X64
70 #include "x64/lithium-codegen-x64.h" 70 #include "x64/lithium-codegen-x64.h"
71 #elif V8_TARGET_ARCH_A64
72 #include "a64/lithium-codegen-a64.h"
71 #elif V8_TARGET_ARCH_ARM 73 #elif V8_TARGET_ARCH_ARM
72 #include "arm/lithium-codegen-arm.h" 74 #include "arm/lithium-codegen-arm.h"
73 #elif V8_TARGET_ARCH_MIPS 75 #elif V8_TARGET_ARCH_MIPS
74 #include "mips/lithium-codegen-mips.h" 76 #include "mips/lithium-codegen-mips.h"
75 #else 77 #else
76 #error Unsupported target architecture. 78 #error Unsupported target architecture.
77 #endif 79 #endif
78 80
79 namespace v8 { 81 namespace v8 {
80 namespace internal { 82 namespace internal {
(...skipping 11097 matching lines...) Expand 10 before | Expand all | Expand 10 after
11178 if (ShouldProduceTraceOutput()) { 11180 if (ShouldProduceTraceOutput()) {
11179 isolate()->GetHTracer()->TraceHydrogen(name(), graph_); 11181 isolate()->GetHTracer()->TraceHydrogen(name(), graph_);
11180 } 11182 }
11181 11183
11182 #ifdef DEBUG 11184 #ifdef DEBUG
11183 graph_->Verify(false); // No full verify. 11185 graph_->Verify(false); // No full verify.
11184 #endif 11186 #endif
11185 } 11187 }
11186 11188
11187 } } // namespace v8::internal 11189 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/heap.cc ('k') | src/hydrogen-instructions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698