HomeSort by: relevance | last modified time | path
    Searched refs:XRayInstrKind (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Basic/
XRayInstr.cpp 22 .Case("all", XRayInstrKind::All)
23 .Case("custom", XRayInstrKind::Custom)
25 XRayInstrKind::FunctionEntry | XRayInstrKind::FunctionExit)
26 .Case("function-entry", XRayInstrKind::FunctionEntry)
27 .Case("function-exit", XRayInstrKind::FunctionExit)
28 .Case("typed", XRayInstrKind::Typed)
29 .Case("none", XRayInstrKind::None)
30 .Default(XRayInstrKind::None);
36 if (Set.Mask == XRayInstrKind::All)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
XRayInstr.h 10 /// Defines the clang::XRayInstrKind enum.
27 namespace XRayInstrKind {
45 } // namespace XRayInstrKind
59 void clear(XRayInstrMask K = XRayInstrKind::All) { Mask &= ~K; }
63 bool full() const { return Mask == XRayInstrKind::All; }
  /src/external/apache2/llvm/dist/clang/lib/Driver/
XRayArgs.cpp 114 InstrumentationBundle.Mask = XRayInstrKind::All;
133 if (Mask == XRayInstrKind::None) {
278 if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry) &&
279 InstrumentationBundle.has(XRayInstrKind::FunctionExit))
281 else if (InstrumentationBundle.has(XRayInstrKind::FunctionEntry))
283 else if (InstrumentationBundle.has(XRayInstrKind::FunctionExit))
286 if (InstrumentationBundle.has(XRayInstrKind::Custom))
288 if (InstrumentationBundle.has(XRayInstrKind::Typed))
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 544 XRayInstrKind::Custom);
551 XRayInstrKind::Typed);
806 XRayInstrKind::FunctionEntry) ||
808 XRayInstrKind::FunctionExit)) {
832 XRayInstrKind::FunctionExit))
836 XRayInstrKind::FunctionEntry))
CGBuiltin.cpp 4972 XRayInstrKind::Custom))
5006 XRayInstrKind::Typed))
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CompilerInvocation.cpp 1264 if (Mask == XRayInstrKind::None)
1269 else if (Mask == XRayInstrKind::All)
1454 if (Opts.XRayInstrumentationBundle.Mask != XRayInstrKind::All) {
1773 Opts.XRayInstrumentationBundle.Mask = XRayInstrKind::All;

Completed in 31 milliseconds