-
Notifications
You must be signed in to change notification settings - Fork 15.2k
[compiler-rt][rtsan] Introduce RTSAN_OPTIONS and flags #107174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
//===--- rtsan_flags.cpp - Realtime Sanitizer -------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file is a part of RealtimeSanitizer. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "rtsan/rtsan_flags.h" | ||
#include "sanitizer_common/sanitizer_flag_parser.h" | ||
#include "sanitizer_common/sanitizer_flags.h" | ||
|
||
using namespace __sanitizer; | ||
using namespace __rtsan; | ||
|
||
Flags __rtsan::flags_data; | ||
|
||
SANITIZER_INTERFACE_WEAK_DEF(const char *, __rtsan_default_options, void) { | ||
return ""; | ||
} | ||
|
||
static void RegisterRtsanFlags(FlagParser *parser, Flags *f) { | ||
#define RTSAN_FLAG(Type, Name, DefaultValue, Description) \ | ||
RegisterFlag(parser, #Name, Description, &f->Name); | ||
#include "rtsan_flags.inc" | ||
#undef RTSAN_FLAG | ||
} | ||
|
||
void __rtsan::InitializeFlags() { | ||
SetCommonFlagsDefaults(); | ||
{ | ||
CommonFlags cf; | ||
cf.CopyFrom(*common_flags()); | ||
cf.external_symbolizer_path = GetEnv("RTSAN_SYMBOLIZER_PATH"); | ||
OverrideCommonFlags(cf); | ||
} | ||
|
||
FlagParser parser; | ||
RegisterRtsanFlags(&parser, &flags()); | ||
RegisterCommonFlags(&parser); | ||
|
||
// Override from user-specified string. | ||
parser.ParseString(__rtsan_default_options()); | ||
|
||
parser.ParseStringFromEnv("RTSAN_OPTIONS"); | ||
|
||
InitializeCommonFlags(); | ||
|
||
if (Verbosity()) | ||
ReportUnrecognizedFlags(); | ||
|
||
if (common_flags()->help) | ||
parser.PrintFlagDescriptions(); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//===----------------------- rtsan_flags.h ----------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// This file is a part of RealtimeSanitizer. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
#pragma once | ||
|
||
namespace __rtsan { | ||
|
||
struct Flags { | ||
#define RTSAN_FLAG(Type, Name, DefaultValue, Description) \ | ||
Type Name{DefaultValue}; | ||
#include "rtsan_flags.inc" | ||
#undef RTSAN_FLAG | ||
}; | ||
|
||
extern Flags flags_data; | ||
inline Flags &flags() { return flags_data; } | ||
|
||
void InitializeFlags(); | ||
|
||
} // namespace __rtsan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
//===------------------------ rtsan_flags.inc -------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// | ||
// RTSan runtime flags. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
#ifndef RTSAN_FLAG | ||
#error "Define RTSAN_FLAG prior to including this file!" | ||
#endif | ||
|
||
// RTSAN_FLAG(Type, Name, DefaultValue, Description) | ||
// See COMMON_FLAG in sanitizer_flags.inc for more details. | ||
|
||
// Example flag, until we get a real one | ||
// RTSAN_FLAG(bool, halt_on_error, true, "If true, halt the program on error") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// RUN: %clangxx -fsanitize=realtime %s -o %t | ||
// RUN: RTSAN_OPTIONS="verbosity=1,asdf=1" %run %t 2>&1 | FileCheck %s | ||
// UNSUPPORTED: ios | ||
|
||
// Intent: Make sure we are respecting some basic common flags | ||
|
||
int main() { | ||
return 0; | ||
// CHECK: WARNING: found 1 unrecognized flag(s): | ||
// CHECK-NEXT: {{.*asdf*}} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was moved to InitializeFlags