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

Side by Side Diff: src/code-stubs.h

Issue 18014003: Add X32 port into V8 (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 7 years, 5 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
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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
383 private: 383 private:
384 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper); 384 DISALLOW_COPY_AND_ASSIGN(RuntimeCallHelper);
385 }; 385 };
386 386
387 } } // namespace v8::internal 387 } } // namespace v8::internal
388 388
389 #if V8_TARGET_ARCH_IA32 389 #if V8_TARGET_ARCH_IA32
390 #include "ia32/code-stubs-ia32.h" 390 #include "ia32/code-stubs-ia32.h"
391 #elif V8_TARGET_ARCH_X64 391 #elif V8_TARGET_ARCH_X64
392 #include "x64/code-stubs-x64.h" 392 #include "x64/code-stubs-x64.h"
393 #elif V8_TARGET_ARCH_X32
394 #include "x32/code-stubs-x32.h"
393 #elif V8_TARGET_ARCH_ARM 395 #elif V8_TARGET_ARCH_ARM
394 #include "arm/code-stubs-arm.h" 396 #include "arm/code-stubs-arm.h"
395 #elif V8_TARGET_ARCH_MIPS 397 #elif V8_TARGET_ARCH_MIPS
396 #include "mips/code-stubs-mips.h" 398 #include "mips/code-stubs-mips.h"
397 #else 399 #else
398 #error Unsupported target architecture. 400 #error Unsupported target architecture.
399 #endif 401 #endif
400 402
401 namespace v8 { 403 namespace v8 {
402 namespace internal { 404 namespace internal {
(...skipping 1773 matching lines...) Expand 10 before | Expand all | Expand 10 after
2176 int MinorKey() { return 0; } 2178 int MinorKey() { return 0; }
2177 2179
2178 void Generate(MacroAssembler* masm); 2180 void Generate(MacroAssembler* masm);
2179 2181
2180 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2182 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2181 }; 2183 };
2182 2184
2183 } } // namespace v8::internal 2185 } } // namespace v8::internal
2184 2186
2185 #endif // V8_CODE_STUBS_H_ 2187 #endif // V8_CODE_STUBS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698