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

Side by Side Diff: runtime/platform/memory_sanitizer.h

Issue 2470663006: Add .clang-format and run clang-format on runtime/platform. (Closed)
Patch Set: Remove default override for short functions Created 4 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
« no previous file with comments | « runtime/platform/hashmap.h ('k') | runtime/platform/signal_blocker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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_MEMORY_SANITIZER_H_ 5 #ifndef RUNTIME_PLATFORM_MEMORY_SANITIZER_H_
6 #define RUNTIME_PLATFORM_MEMORY_SANITIZER_H_ 6 #define RUNTIME_PLATFORM_MEMORY_SANITIZER_H_
7 7
8 #include "platform/globals.h" 8 #include "platform/globals.h"
9 9
10 // Allow the use of Msan (MemorySanitizer). This is needed as Msan needs to be 10 // Allow the use of Msan (MemorySanitizer). This is needed as Msan needs to be
11 // told about areas that are initialized by generated code. 11 // told about areas that are initialized by generated code.
12 #if defined(__has_feature) 12 #if defined(__has_feature)
13 #if __has_feature(memory_sanitizer) 13 #if __has_feature(memory_sanitizer)
14 extern "C" void __msan_unpoison(void *, size_t); 14 extern "C" void __msan_unpoison(void*, size_t);
15 #define MSAN_UNPOISON(ptr, len) __msan_unpoison(ptr, len) 15 #define MSAN_UNPOISON(ptr, len) __msan_unpoison(ptr, len)
16 #define NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory)) 16 #define NO_SANITIZE_MEMORY __attribute__((no_sanitize_memory))
17 #else // __has_feature(memory_sanitizer) 17 #else // __has_feature(memory_sanitizer)
18 #define MSAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0) 18 #define MSAN_UNPOISON(ptr, len) \
19 do { \
20 } while (false && (ptr) == 0 && (len) == 0)
19 #define NO_SANITIZE_MEMORY 21 #define NO_SANITIZE_MEMORY
20 #endif // __has_feature(memory_sanitizer) 22 #endif // __has_feature(memory_sanitizer)
21 #else // defined(__has_feature) 23 #else // defined(__has_feature)
22 #define MSAN_UNPOISON(ptr, len) do {} while (false && (ptr) == 0 && (len) == 0) 24 #define MSAN_UNPOISON(ptr, len) \
25 do { \
26 } while (false && (ptr) == 0 && (len) == 0)
23 #define NO_SANITIZE_MEMORY 27 #define NO_SANITIZE_MEMORY
24 #endif // defined(__has_feature) 28 #endif // defined(__has_feature)
25 29
26 #endif // RUNTIME_PLATFORM_MEMORY_SANITIZER_H_ 30 #endif // RUNTIME_PLATFORM_MEMORY_SANITIZER_H_
OLDNEW
« no previous file with comments | « runtime/platform/hashmap.h ('k') | runtime/platform/signal_blocker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698