]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/Basic/XRayLists.cpp
MFV r323110: 8558 lwp_create() returns EAGAIN on system with more than 80K ZFS filesy...
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / Basic / XRayLists.cpp
1 //===--- XRayFunctionFilter.cpp - XRay automatic-attribution --------------===//
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 // User-provided filters for always/never XRay instrumenting certain functions.
11 //
12 //===----------------------------------------------------------------------===//
13 #include "clang/Basic/XRayLists.h"
14
15 using namespace clang;
16
17 XRayFunctionFilter::XRayFunctionFilter(
18     ArrayRef<std::string> AlwaysInstrumentPaths,
19     ArrayRef<std::string> NeverInstrumentPaths, SourceManager &SM)
20     : AlwaysInstrument(
21           llvm::SpecialCaseList::createOrDie(AlwaysInstrumentPaths)),
22       NeverInstrument(llvm::SpecialCaseList::createOrDie(NeverInstrumentPaths)),
23       SM(SM) {}
24
25 XRayFunctionFilter::ImbueAttribute
26 XRayFunctionFilter::shouldImbueFunction(StringRef FunctionName) const {
27   // First apply the always instrument list, than if it isn't an "always" see
28   // whether it's treated as a "never" instrument function.
29   if (AlwaysInstrument->inSection("fun", FunctionName, "arg1"))
30     return ImbueAttribute::ALWAYS_ARG1;
31   if (AlwaysInstrument->inSection("fun", FunctionName))
32     return ImbueAttribute::ALWAYS;
33   if (NeverInstrument->inSection("fun", FunctionName))
34     return ImbueAttribute::NEVER;
35   return ImbueAttribute::NONE;
36 }
37
38 XRayFunctionFilter::ImbueAttribute
39 XRayFunctionFilter::shouldImbueFunctionsInFile(StringRef Filename,
40                                                StringRef Category) const {
41   if (AlwaysInstrument->inSection("src", Filename, Category))
42     return ImbueAttribute::ALWAYS;
43   if (NeverInstrument->inSection("src", Filename, Category))
44     return ImbueAttribute::NEVER;
45   return ImbueAttribute::NONE;
46 }
47
48 XRayFunctionFilter::ImbueAttribute
49 XRayFunctionFilter::shouldImbueLocation(SourceLocation Loc,
50                                         StringRef Category) const {
51   if (!Loc.isValid())
52     return ImbueAttribute::NONE;
53   return this->shouldImbueFunctionsInFile(SM.getFilename(SM.getFileLoc(Loc)),
54                                           Category);
55 }