| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef RUNTIME_PLATFORM_UTILS_H_ | 5 #ifndef RUNTIME_PLATFORM_UTILS_H_ |
| 6 #define RUNTIME_PLATFORM_UTILS_H_ | 6 #define RUNTIME_PLATFORM_UTILS_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 #include "platform/globals.h" | 9 #include "platform/globals.h" |
| 10 | 10 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 // represent anything in the range -2^53 ... 2^53. | 201 // represent anything in the range -2^53 ... 2^53. |
| 202 static bool IsJavascriptInt(int64_t value) { | 202 static bool IsJavascriptInt(int64_t value) { |
| 203 return ((-0x20000000000000LL <= value) && (value <= 0x20000000000000LL)); | 203 return ((-0x20000000000000LL <= value) && (value <= 0x20000000000000LL)); |
| 204 } | 204 } |
| 205 | 205 |
| 206 static char* StrError(int err, char* buffer, size_t bufsize); | 206 static char* StrError(int err, char* buffer, size_t bufsize); |
| 207 }; | 207 }; |
| 208 | 208 |
| 209 } // namespace dart | 209 } // namespace dart |
| 210 | 210 |
| 211 #if defined(TARGET_OS_ANDROID) | 211 #if defined(HOST_OS_ANDROID) |
| 212 #include "platform/utils_android.h" | 212 #include "platform/utils_android.h" |
| 213 #elif defined(TARGET_OS_FUCHSIA) | 213 #elif defined(HOST_OS_FUCHSIA) |
| 214 #include "platform/utils_fuchsia.h" | 214 #include "platform/utils_fuchsia.h" |
| 215 #elif defined(TARGET_OS_LINUX) | 215 #elif defined(HOST_OS_LINUX) |
| 216 #include "platform/utils_linux.h" | 216 #include "platform/utils_linux.h" |
| 217 #elif defined(TARGET_OS_MACOS) | 217 #elif defined(HOST_OS_MACOS) |
| 218 #include "platform/utils_macos.h" | 218 #include "platform/utils_macos.h" |
| 219 #elif defined(TARGET_OS_WINDOWS) | 219 #elif defined(HOST_OS_WINDOWS) |
| 220 #include "platform/utils_win.h" | 220 #include "platform/utils_win.h" |
| 221 #else | 221 #else |
| 222 #error Unknown target os. | 222 #error Unknown target os. |
| 223 #endif | 223 #endif |
| 224 | 224 |
| 225 #endif // RUNTIME_PLATFORM_UTILS_H_ | 225 #endif // RUNTIME_PLATFORM_UTILS_H_ |
| OLD | NEW |