2018-03-29 06:09:09 +08:00
|
|
|
//===- Sanitizers.cpp - C Language Family Language Options ----------------===//
|
2014-11-11 09:26:14 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2014-11-11 09:26:14 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the classes from Sanitizers.h
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-03-29 06:09:09 +08:00
|
|
|
|
2014-11-11 09:26:14 +08:00
|
|
|
#include "clang/Basic/Sanitizers.h"
|
2015-05-12 05:39:20 +08:00
|
|
|
#include "llvm/ADT/StringSwitch.h"
|
2014-11-11 09:26:14 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
2015-05-12 05:39:20 +08:00
|
|
|
SanitizerMask clang::parseSanitizerValue(StringRef Value, bool AllowGroups) {
|
|
|
|
SanitizerMask ParsedKind = llvm::StringSwitch<SanitizerMask>(Value)
|
|
|
|
#define SANITIZER(NAME, ID) .Case(NAME, SanitizerKind::ID)
|
|
|
|
#define SANITIZER_GROUP(NAME, ID, ALIAS) \
|
|
|
|
.Case(NAME, AllowGroups ? SanitizerKind::ID##Group : 0)
|
|
|
|
#include "clang/Basic/Sanitizers.def"
|
|
|
|
.Default(0);
|
|
|
|
return ParsedKind;
|
|
|
|
}
|
|
|
|
|
|
|
|
SanitizerMask clang::expandSanitizerGroups(SanitizerMask Kinds) {
|
|
|
|
#define SANITIZER(NAME, ID)
|
|
|
|
#define SANITIZER_GROUP(NAME, ID, ALIAS) \
|
|
|
|
if (Kinds & SanitizerKind::ID##Group) \
|
|
|
|
Kinds |= SanitizerKind::ID;
|
|
|
|
#include "clang/Basic/Sanitizers.def"
|
|
|
|
return Kinds;
|
|
|
|
}
|