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

Side by Side Diff: include/v8stdint.h

Issue 23248006: Move OS/compiler/feature detection to public v8config.h header. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also add V8_ALIGNAS() there, required for the CPU profiler queue. Created 7 years, 3 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 // 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 15 matching lines...) Expand all
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 // Load definitions of standard types. 28 // Load definitions of standard types.
29 29
30 #ifndef V8STDINT_H_ 30 #ifndef V8STDINT_H_
31 #define V8STDINT_H_ 31 #define V8STDINT_H_
32 32
33 #include <stddef.h> 33 #include <stddef.h>
34 #include <stdio.h> 34 #include <stdio.h>
35 35
36 #if defined(_WIN32) && !defined(__MINGW32__) 36 #include "v8config.h"
37
38 #if V8_OS_WIN && !V8_CC_MINGW
37 39
38 typedef signed char int8_t; 40 typedef signed char int8_t;
39 typedef unsigned char uint8_t; 41 typedef unsigned char uint8_t;
40 typedef short int16_t; // NOLINT 42 typedef short int16_t; // NOLINT
41 typedef unsigned short uint16_t; // NOLINT 43 typedef unsigned short uint16_t; // NOLINT
42 typedef int int32_t; 44 typedef int int32_t;
43 typedef unsigned int uint32_t; 45 typedef unsigned int uint32_t;
44 typedef __int64 int64_t; 46 typedef __int64 int64_t;
45 typedef unsigned __int64 uint64_t; 47 typedef unsigned __int64 uint64_t;
46 // intptr_t and friends are defined in crtdefs.h through stdio.h. 48 // intptr_t and friends are defined in crtdefs.h through stdio.h.
47 49
48 #else 50 #else
49 51
50 #include <stdint.h> 52 #include <stdint.h> // NOLINT
51 53
52 #endif 54 #endif
53 55
54 #endif // V8STDINT_H_ 56 #endif // V8STDINT_H_
OLDNEW
« include/v8config.h ('K') | « include/v8config.h ('k') | src/checks.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698