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

Side by Side Diff: src/globals.h

Issue 422063005: Contribution of PowerPC port. (Closed) Base URL: http://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
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 27 matching lines...) Expand all
38 // Determine whether we are running in a simulated environment. 38 // Determine whether we are running in a simulated environment.
39 // Setting USE_SIMULATOR explicitly from the build script will force 39 // Setting USE_SIMULATOR explicitly from the build script will force
40 // the use of a simulated environment. 40 // the use of a simulated environment.
41 #if !defined(USE_SIMULATOR) 41 #if !defined(USE_SIMULATOR)
42 #if (V8_TARGET_ARCH_ARM64 && !V8_HOST_ARCH_ARM64) 42 #if (V8_TARGET_ARCH_ARM64 && !V8_HOST_ARCH_ARM64)
43 #define USE_SIMULATOR 1 43 #define USE_SIMULATOR 1
44 #endif 44 #endif
45 #if (V8_TARGET_ARCH_ARM && !V8_HOST_ARCH_ARM) 45 #if (V8_TARGET_ARCH_ARM && !V8_HOST_ARCH_ARM)
46 #define USE_SIMULATOR 1 46 #define USE_SIMULATOR 1
47 #endif 47 #endif
48 #if (V8_TARGET_ARCH_PPC && !V8_HOST_ARCH_PPC)
49 #define USE_SIMULATOR 1
50 #endif
48 #if (V8_TARGET_ARCH_MIPS && !V8_HOST_ARCH_MIPS) 51 #if (V8_TARGET_ARCH_MIPS && !V8_HOST_ARCH_MIPS)
49 #define USE_SIMULATOR 1 52 #define USE_SIMULATOR 1
50 #endif 53 #endif
51 #if (V8_TARGET_ARCH_MIPS64 && !V8_HOST_ARCH_MIPS64) 54 #if (V8_TARGET_ARCH_MIPS64 && !V8_HOST_ARCH_MIPS64)
52 #define USE_SIMULATOR 1 55 #define USE_SIMULATOR 1
53 #endif 56 #endif
54 #endif 57 #endif
55 58
56 // Determine whether the architecture uses an out-of-line constant pool. 59 // Determine whether the architecture uses an out-of-line constant pool.
60 #if V8_TARGET_ARCH_PPC
61 #define V8_OOL_CONSTANT_POOL 1
62 #else
57 #define V8_OOL_CONSTANT_POOL 0 63 #define V8_OOL_CONSTANT_POOL 0
64 #endif
58 65
59 // Support for alternative bool type. This is only enabled if the code is 66 // Support for alternative bool type. This is only enabled if the code is
60 // compiled with USE_MYBOOL defined. This catches some nasty type bugs. 67 // compiled with USE_MYBOOL defined. This catches some nasty type bugs.
61 // For instance, 'bool b = "false";' results in b == true! This is a hidden 68 // For instance, 'bool b = "false";' results in b == true! This is a hidden
62 // source of bugs. 69 // source of bugs.
63 // However, redefining the bool type does have some negative impact on some 70 // However, redefining the bool type does have some negative impact on some
64 // platforms. It gives rise to compiler warnings (i.e. with 71 // platforms. It gives rise to compiler warnings (i.e. with
65 // MSVC) in the API header files when mixing code that uses the standard 72 // MSVC) in the API header files when mixing code that uses the standard
66 // bool with code that uses the redefined version. 73 // bool with code that uses the redefined version.
67 // This does not actually belong in the platform code, but needs to be 74 // This does not actually belong in the platform code, but needs to be
(...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 enum MinusZeroMode { 734 enum MinusZeroMode {
728 TREAT_MINUS_ZERO_AS_ZERO, 735 TREAT_MINUS_ZERO_AS_ZERO,
729 FAIL_ON_MINUS_ZERO 736 FAIL_ON_MINUS_ZERO
730 }; 737 };
731 738
732 } } // namespace v8::internal 739 } } // namespace v8::internal
733 740
734 namespace i = v8::internal; 741 namespace i = v8::internal;
735 742
736 #endif // V8_GLOBALS_H_ 743 #endif // V8_GLOBALS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698