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

Side by Side Diff: src/macro-assembler.h

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/lithium-codegen.cc ('k') | src/mips/simulator-mips.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 // 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "ia32/assembler-ia32.h" 65 #include "ia32/assembler-ia32.h"
66 #include "ia32/assembler-ia32-inl.h" 66 #include "ia32/assembler-ia32-inl.h"
67 #include "code.h" // must be after assembler_*.h 67 #include "code.h" // must be after assembler_*.h
68 #include "ia32/macro-assembler-ia32.h" 68 #include "ia32/macro-assembler-ia32.h"
69 #elif V8_TARGET_ARCH_X64 69 #elif V8_TARGET_ARCH_X64
70 #include "assembler.h" 70 #include "assembler.h"
71 #include "x64/assembler-x64.h" 71 #include "x64/assembler-x64.h"
72 #include "x64/assembler-x64-inl.h" 72 #include "x64/assembler-x64-inl.h"
73 #include "code.h" // must be after assembler_*.h 73 #include "code.h" // must be after assembler_*.h
74 #include "x64/macro-assembler-x64.h" 74 #include "x64/macro-assembler-x64.h"
75 #elif V8_TARGET_ARCH_A64
76 #include "a64/constants-a64.h"
77 #include "assembler.h"
78 #include "a64/assembler-a64.h"
79 #include "a64/assembler-a64-inl.h"
80 #include "code.h" // must be after assembler_*.h
81 #include "a64/macro-assembler-a64.h"
82 #include "a64/macro-assembler-a64-inl.h"
75 #elif V8_TARGET_ARCH_ARM 83 #elif V8_TARGET_ARCH_ARM
76 #include "arm/constants-arm.h" 84 #include "arm/constants-arm.h"
77 #include "assembler.h" 85 #include "assembler.h"
78 #include "arm/assembler-arm.h" 86 #include "arm/assembler-arm.h"
79 #include "arm/assembler-arm-inl.h" 87 #include "arm/assembler-arm-inl.h"
80 #include "code.h" // must be after assembler_*.h 88 #include "code.h" // must be after assembler_*.h
81 #include "arm/macro-assembler-arm.h" 89 #include "arm/macro-assembler-arm.h"
82 #elif V8_TARGET_ARCH_MIPS 90 #elif V8_TARGET_ARCH_MIPS
83 #include "mips/constants-mips.h" 91 #include "mips/constants-mips.h"
84 #include "assembler.h" 92 #include "assembler.h"
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 isolate); 205 isolate);
198 } 206 }
199 return ExternalReference::new_space_allocation_limit_address(isolate); 207 return ExternalReference::new_space_allocation_limit_address(isolate);
200 } 208 }
201 }; 209 };
202 210
203 211
204 } } // namespace v8::internal 212 } } // namespace v8::internal
205 213
206 #endif // V8_MACRO_ASSEMBLER_H_ 214 #endif // V8_MACRO_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/lithium-codegen.cc ('k') | src/mips/simulator-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698