Home
last modified time | relevance | path

Searched +full:output +full:- +full:sarif (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DAnalyses.def1 //===-- Analyses.def - Metadata about Static Analyses -----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
28 ANALYSIS_DIAGNOSTICS(HTML, "html", "Output analysis results using HTML",
32 HTML_SINGLE_FILE, "html-single-file",
33 "Output analysis results using HTML (not allowing for multi-file bugs)",
36 ANALYSIS_DIAGNOSTICS(PLIST, "plist", "Output analysis results using Plists",
40 PLIST_MULTI_FILE, "plist-multi-file",
41 "Output analysis results using Plists (allowing for multi-file bugs)",
[all …]
/freebsd/crypto/krb5/.github/workflows/
H A Dcifuzz.yml9 runs-on: ubuntu-latest
11 security-events: write
13 - name: Build Fuzzers
15 uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
17 oss-fuzz-project-name: 'krb5'
19 - name: Run Fuzzers
20 uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
22 oss-fuzz-project-name: 'krb5'
24 fuzz-seconds: 300
25 output-sarif: true
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSarif.h1 //== clang/Basic/Sarif.h - SARIF Diagnostics Object Model -------*- C++ -*--==//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
13 /// of the SARIF standard, such as 'artifact', 'result', 'rule'.
15 /// A SARIF (Static Analysis Results Interchange Format) document is JSON
17 /// tools on a project. Each (non-trivial) document consists of at least one
21 /// \c reportingDescriptor objects in SARIF
23 /// evaluated, represented by \c result objects in SARIF
26 /// 1. <a href="https://docs.oasis-open.org/sarif/sarif/v2.1.0/os/sarif-v2.1.0-os.html">The SARIF s…
27 /// 2. <a href="https://docs.oasis-open.org/sarif/sarif/v2.1.0/os/sarif-v2.1.0-os.html#_Toc34317836…
[all …]
H A DDiagnosticOptions.h1 //===- DiagnosticOptions.h --------------------------------------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
78 enum TextDiagnosticFormat { Clang, MSVC, Vi, SARIF }; enumerator
105 /// The file to log diagnostic output to.
108 /// The file to serialize diagnostics to (non-appending).
111 /// The list of -W... options used to alter the diagnostic mappings, with the
115 /// The list of prefixes from -Wundef-prefix=... used to generate warnings
119 /// The list of -R... options used to alter the diagnostic mappings, with the
123 /// The prefixes for comment directives sought by -verify ("expected" by
[all …]
H A DDiagnosticDriverKinds.td1 //==--- DiagnosticDriverKinds.td - libdriver diagnostics ------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
26 "-E or -x required when input is from standard input">;
37 "ignoring invalid /arch: argument '%0'; for %select{64|32}1-bit expected one of %2">,
41 "link standard libraries, please pass -mmcu=<mcu name>">,
44 "no avr-libc installation can be found on the system, "
63 "cannot find CUDA installation; provide its path via '--cuda-path', or pass "
64 "'-nocudainc' to build without CUDA includes">;
67 "via '--cuda-path', or pass '-nocudalib' to build without linking with "
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp1 //===--- SarifDiagnostics.cpp - Sarif Diagnostics for Paths -----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
16 #include "clang/Basic/Sarif.h"
38 SarifDiagnostics(const std::string &Output, const LangOptions &LO, in SarifDiagnostics() argument
40 : OutputFile(Output), LO(LO), SarifWriter(SM) {} in SarifDiagnostics()
55 const std::string &Output, const Preprocessor &PP, in createSarifDiagnosticConsumer() argument
60 if (Output.empty()) in createSarifDiagnosticConsumer()
64 new SarifDiagnostics(Output, PP.getLangOpts(), PP.getSourceManager())); in createSarifDiagnosticConsumer()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DPathDiagnostic.h1 //===- PathDiagnostic.h - Path-Specific Diagnostic Handling -----*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the PathDiagnostic-related interfaces.
11 //===----------------------------------------------------------------------===//
53 //===----------------------------------------------------------------------===//
54 // High-level interface for handlers of path-sensitive diagnostics.
55 //===----------------------------------------------------------------------===//
62 /// Run-line of the tool that produced the diagnostic.
68 /// without re-compiling the program under analysis.
[all …]
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp1 //===--- TextDiagnostic.cpp - Text Diagnostic Pretty-Printing -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
74 /// Number of spaces to indent when word-wrapping.
80 if (SourceLine[--i]=='\t') in bytesSincePreviousTabOrLineBegin()
114 "Invalid -ftabstop value"); in printableTextForNextCharacter()
116 unsigned NumSpaces = TabStop - (Col % TabStop); in printableTextForNextCharacter()
148 assert(unsigned(Begin - OriginalBegin) == CharSize); in printableTextForNextCharacter()
150 (*I) += (Begin - OriginalBegin); in printableTextForNextCharacter()
152 // Valid, multi-byte, printable UTF8 character. in printableTextForNextCharacter()
[all …]
H A DFrontendAction.cpp1 //===--- FrontendAction.cpp -----------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
17 #include "clang/Basic/Sarif.h"
72 Previous->ReaderInitialized(Reader); in ReaderInitialized()
77 Previous->IdentifierRead(ID, II); in IdentifierRead()
81 Previous->TypeRead(Idx, T); in TypeRead()
85 Previous->DeclRead(ID, D); in DeclRead()
89 Previous->SelectorRead(ID, Sel); in SelectorRead()
94 Previous->MacroDefinitionRead(PPID, MD); in MacroDefinitionRead()
[all …]
H A DCompilerInstance.cpp1 //===--- CompilerInstance.cpp ---------------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
45 #include "llvm/Config/llvm-config.h"
75 assert(OutputFiles.empty() && "Still output files in flight?"); in ~CompilerInstance()
85 (TheASTReader && TheASTReader->isGlobalIndexUnavailable() && in shouldBuildGlobalModuleIndex()
121 TO->Triple = llvm::Triple::normalize(getFrontendOpts().AuxTriple); in createTarget()
123 TO->CPU = *getFrontendOpts().AuxTargetCPU; in createTarget()
125 TO->FeaturesAsWritten = *getFrontendOpts().AuxTargetFeatures; in createTarget()
126 TO->HostTriple = getTarget().getTriple().str(); in createTarget()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td1 //===--- Options.td - Options for clang -----------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
38 // The option is a "driver"-only option, and should not be forwarded to other
39 // tools via `-Xarch` options.
42 // LinkerInput - The option is a linker input.
45 // NoArgumentUnused - Don't report argument unused warnings for this option; this
46 // is useful for options like -static or -dynamic which a user may always end up
50 // Unsupported - The option is unsupported, and the driver will reject command
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp1 //===-- Clang.cpp - Clang+LLVM ToolChain Implementations --------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
47 #include "llvm/Config/llvm-config.h"
81 << A->getBaseArg().getAsString(Args) in CheckPreprocessingOptions()
82 << (D.IsCLMode() ? "/E, /P or /EP" : "-E"); in CheckPreprocessingOptions()
92 D.Diag(diag::err_drv_argument_not_allowed_with) << A->getAsString(Args) in CheckCodeGenerationOptions()
93 << "-static"; in CheckCodeGenerationOptions()
97 // This is used for the space-separated argument list specified with
98 // the -dwarf-debug-flags option.
[all …]
/freebsd/share/dict/
H A Dweb299810 Jean-Christophe
99811 Jean-Pierre
133833 output
173796 sarif