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

Side by Side Diff: sky/engine/wtf/Alignment.h

Issue 714393002: Remove support for MSVC (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 12 matching lines...) Expand all
23 23
24 #include <algorithm> 24 #include <algorithm>
25 #include <stdint.h> 25 #include <stdint.h>
26 26
27 27
28 namespace WTF { 28 namespace WTF {
29 29
30 #if COMPILER(GCC) 30 #if COMPILER(GCC)
31 #define WTF_ALIGN_OF(type) __alignof__(type) 31 #define WTF_ALIGN_OF(type) __alignof__(type)
32 #define WTF_ALIGNED(variable_type, variable, n) variable_type variable __att ribute__((__aligned__(n))) 32 #define WTF_ALIGNED(variable_type, variable, n) variable_type variable __att ribute__((__aligned__(n)))
33 #elif COMPILER(MSVC)
34 #define WTF_ALIGN_OF(type) __alignof(type)
35 #define WTF_ALIGNED(variable_type, variable, n) __declspec(align(n)) variabl e_type variable
36 #else 33 #else
37 #error WTF_ALIGN macros need alignment control. 34 #error WTF_ALIGN macros need alignment control.
38 #endif 35 #endif
39 36
40 #if COMPILER(GCC) 37 #if COMPILER(GCC)
41 typedef char __attribute__((__may_alias__)) AlignedBufferChar; 38 typedef char __attribute__((__may_alias__)) AlignedBufferChar;
42 #else 39 #else
43 typedef char AlignedBufferChar; 40 typedef char AlignedBufferChar;
44 #endif 41 #endif
45 42
(...skipping 14 matching lines...) Expand all
60 } 57 }
61 58
62 template <uintptr_t mask> 59 template <uintptr_t mask>
63 inline bool isAlignedTo(const void* pointer) 60 inline bool isAlignedTo(const void* pointer)
64 { 61 {
65 return !(reinterpret_cast<uintptr_t>(pointer) & mask); 62 return !(reinterpret_cast<uintptr_t>(pointer) & mask);
66 } 63 }
67 } 64 }
68 65
69 #endif // WTF_Alignment_h 66 #endif // WTF_Alignment_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698