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

Side by Side Diff: src/hydrogen.cc

Issue 143003013: Initial patch for a64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 28 matching lines...) Expand all
39 #include "parser.h" 39 #include "parser.h"
40 #include "scopeinfo.h" 40 #include "scopeinfo.h"
41 #include "scopes.h" 41 #include "scopes.h"
42 #include "stub-cache.h" 42 #include "stub-cache.h"
43 #include "typing.h" 43 #include "typing.h"
44 44
45 #if V8_TARGET_ARCH_IA32 45 #if V8_TARGET_ARCH_IA32
46 #include "ia32/lithium-codegen-ia32.h" 46 #include "ia32/lithium-codegen-ia32.h"
47 #elif V8_TARGET_ARCH_X64 47 #elif V8_TARGET_ARCH_X64
48 #include "x64/lithium-codegen-x64.h" 48 #include "x64/lithium-codegen-x64.h"
49 #elif V8_TARGET_ARCH_A64
50 #include "a64/lithium-codegen-a64.h"
49 #elif V8_TARGET_ARCH_ARM 51 #elif V8_TARGET_ARCH_ARM
50 #include "arm/lithium-codegen-arm.h" 52 #include "arm/lithium-codegen-arm.h"
51 #elif V8_TARGET_ARCH_MIPS 53 #elif V8_TARGET_ARCH_MIPS
52 #include "mips/lithium-codegen-mips.h" 54 #include "mips/lithium-codegen-mips.h"
53 #else 55 #else
54 #error Unsupported target architecture. 56 #error Unsupported target architecture.
55 #endif 57 #endif
56 58
57 namespace v8 { 59 namespace v8 {
58 namespace internal { 60 namespace internal {
(...skipping 11557 matching lines...) Expand 10 before | Expand all | Expand 10 after
11616 } 11618 }
11617 } 11619 }
11618 11620
11619 #ifdef DEBUG 11621 #ifdef DEBUG
11620 if (graph_ != NULL) graph_->Verify(false); // No full verify. 11622 if (graph_ != NULL) graph_->Verify(false); // No full verify.
11621 if (allocator_ != NULL) allocator_->Verify(); 11623 if (allocator_ != NULL) allocator_->Verify();
11622 #endif 11624 #endif
11623 } 11625 }
11624 11626
11625 } } // namespace v8::internal 11627 } } // 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