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/globals.h

Issue 459093002: ARM64: Enable TF tests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « no previous file | test/mjsunit/mjsunit.status » ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_GLOBALS_H_ 5 #ifndef V8_GLOBALS_H_
6 #define V8_GLOBALS_H_ 6 #define V8_GLOBALS_H_
7 7
8 #include "include/v8stdint.h" 8 #include "include/v8stdint.h"
9 9
10 #include "src/base/build_config.h" 10 #include "src/base/build_config.h"
(...skipping 13 matching lines...) Expand all
24 #else 24 #else
25 # define V8_INFINITY INFINITY 25 # define V8_INFINITY INFINITY
26 #endif 26 #endif
27 27
28 #if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_ARM || \ 28 #if V8_TARGET_ARCH_IA32 || V8_TARGET_ARCH_X64 || V8_TARGET_ARCH_ARM || \
29 V8_TARGET_ARCH_ARM64 29 V8_TARGET_ARCH_ARM64
30 #define V8_TURBOFAN_BACKEND 1 30 #define V8_TURBOFAN_BACKEND 1
31 #else 31 #else
32 #define V8_TURBOFAN_BACKEND 0 32 #define V8_TURBOFAN_BACKEND 0
33 #endif 33 #endif
34 #if V8_TURBOFAN_BACKEND && !V8_TARGET_ARCH_ARM64 && \ 34 #if V8_TURBOFAN_BACKEND && !(V8_OS_WIN && V8_TARGET_ARCH_X64)
35 !(V8_OS_WIN && V8_TARGET_ARCH_X64)
36 #define V8_TURBOFAN_TARGET 1 35 #define V8_TURBOFAN_TARGET 1
37 #else 36 #else
38 #define V8_TURBOFAN_TARGET 0 37 #define V8_TURBOFAN_TARGET 0
39 #endif 38 #endif
40 39
41 namespace v8 { 40 namespace v8 {
42 41
43 namespace base { 42 namespace base {
44 class Mutex; 43 class Mutex;
45 class RecursiveMutex; 44 class RecursiveMutex;
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
751 enum MinusZeroMode { 750 enum MinusZeroMode {
752 TREAT_MINUS_ZERO_AS_ZERO, 751 TREAT_MINUS_ZERO_AS_ZERO,
753 FAIL_ON_MINUS_ZERO 752 FAIL_ON_MINUS_ZERO
754 }; 753 };
755 754
756 } } // namespace v8::internal 755 } } // namespace v8::internal
757 756
758 namespace i = v8::internal; 757 namespace i = v8::internal;
759 758
760 #endif // V8_GLOBALS_H_ 759 #endif // V8_GLOBALS_H_
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698