forked from OSchip/llvm-project
parent
f8ad336bc4
commit
6804d27048
|
@ -24,14 +24,12 @@
|
|||
// tsan (Thread Sanitizer) is a valgrind-based tool that detects these exact
|
||||
// functions by name.
|
||||
extern "C" {
|
||||
LLVM_ATTRIBUTE_NOINLINE void AnnotateHappensAfter(const char *file, int line,
|
||||
const volatile void *cv);
|
||||
LLVM_ATTRIBUTE_NOINLINE void AnnotateHappensBefore(const char *file, int line,
|
||||
const volatile void *cv);
|
||||
LLVM_ATTRIBUTE_NOINLINE void AnnotateIgnoreWritesBegin(const char *file,
|
||||
int line);
|
||||
LLVM_ATTRIBUTE_NOINLINE void AnnotateIgnoreWritesEnd(const char *file,
|
||||
int line);
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
|
||||
const volatile void *cv);
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
|
||||
const volatile void *cv);
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -56,10 +56,10 @@ void llvm::sys::ValgrindDiscardTranslations(const void *Addr, size_t Len) {
|
|||
// These functions require no implementation, tsan just looks at the arguments
|
||||
// they're called with.
|
||||
extern "C" {
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
|
||||
const volatile void *cv) {}
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
|
||||
const volatile void *cv) {}
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line){}
|
||||
LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line) {}
|
||||
void AnnotateHappensBefore(const char *file, int line,
|
||||
const volatile void *cv) {}
|
||||
void AnnotateHappensAfter(const char *file, int line,
|
||||
const volatile void *cv) {}
|
||||
void AnnotateIgnoreWritesBegin(const char *file, int line) {}
|
||||
void AnnotateIgnoreWritesEnd(const char *file, int line) {}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue