xref: /llvm-project/clang/lib/Basic/XRayInstr.cpp (revision 488f7c2b67f5a3811cab59577da367cc45984e28)
1 //===--- XRayInstr.cpp ------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This is part of XRay, a function call instrumentation system.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "clang/Basic/XRayInstr.h"
15 #include "llvm/ADT/StringSwitch.h"
16 
17 namespace clang {
18 
19 XRayInstrMask parseXRayInstrValue(StringRef Value) {
20   XRayInstrMask ParsedKind = llvm::StringSwitch<XRayInstrMask>(Value)
21                                  .Case("all", XRayInstrKind::All)
22                                  .Case("custom", XRayInstrKind::Custom)
23                                  .Case("function", XRayInstrKind::Function)
24                                  .Case("none", XRayInstrKind::None)
25                                  .Default(XRayInstrKind::None);
26   return ParsedKind;
27 }
28 
29 } // namespace clang
30