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

Side by Side Diff: third_party/WebKit/Source/platform/wtf/CPU.h

Issue 2748083005: Move files in wtf/ to platform/wtf/ (Part 1). (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2013 Apple Inc. All rights reserved.
3 * Copyright (C) 2007-2009 Torch Mobile, Inc. 3 * Copyright (C) 2007-2009 Torch Mobile, Inc.
4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved. 4 * Copyright (C) 2010, 2011 Research In Motion Limited. All rights reserved.
5 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2013 Samsung Electronics. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 11 matching lines...) Expand all
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef WTF_CPU_h 29 #ifndef WTF_CPU_h
30 #define WTF_CPU_h 30 #define WTF_CPU_h
31 31
32 #include "wtf/Compiler.h" 32 #include "platform/wtf/Compiler.h"
33 33
34 /* CPU() - the target CPU architecture */ 34 /* CPU() - the target CPU architecture */
35 #define CPU(WTF_FEATURE) \ 35 #define CPU(WTF_FEATURE) \
36 (defined WTF_CPU_##WTF_FEATURE && WTF_CPU_##WTF_FEATURE) 36 (defined WTF_CPU_##WTF_FEATURE && WTF_CPU_##WTF_FEATURE)
37 37
38 /* ==== CPU() - the target CPU architecture ==== */ 38 /* ==== CPU() - the target CPU architecture ==== */
39 39
40 /* This defines CPU(BIG_ENDIAN) or nothing, as appropriate. */ 40 /* This defines CPU(BIG_ENDIAN) or nothing, as appropriate. */
41 /* This defines CPU(32BIT) or CPU(64BIT), as appropriate. */ 41 /* This defines CPU(32BIT) or CPU(64BIT), as appropriate. */
42 42
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 #if defined(__mips_msa) && defined(__mips_isa_rev) && (__mips_isa_rev >= 5) 162 #if defined(__mips_msa) && defined(__mips_isa_rev) && (__mips_isa_rev >= 5)
163 // All MSA intrinsics usage can be disabled by this macro. 163 // All MSA intrinsics usage can be disabled by this macro.
164 #define HAVE_MIPS_MSA_INTRINSICS 1 164 #define HAVE_MIPS_MSA_INTRINSICS 1
165 #endif 165 #endif
166 166
167 #if !defined(WTF_CPU_64BIT) 167 #if !defined(WTF_CPU_64BIT)
168 #define WTF_CPU_32BIT 1 168 #define WTF_CPU_32BIT 1
169 #endif 169 #endif
170 170
171 #endif /* WTF_CPU_h */ 171 #endif /* WTF_CPU_h */
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/ByteSwap.h ('k') | third_party/WebKit/Source/platform/wtf/Compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698