OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |