Dean Michael Berris | 488f7c2 | 2018-04-13 02:31:58 +0000 | [diff] [blame] | 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) |
Keith Wyss | f437e35 | 2018-04-17 21:32:43 +0000 | [diff] [blame] | 24 | .Case("typed", XRayInstrKind::Typed) |
Dean Michael Berris | 488f7c2 | 2018-04-13 02:31:58 +0000 | [diff] [blame] | 25 | .Case("none", XRayInstrKind::None) |
| 26 | .Default(XRayInstrKind::None); |
| 27 | return ParsedKind; |
| 28 | } |
| 29 | |
| 30 | } // namespace clang |