Home
last modified time | relevance | path

Searched refs:Explanation (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/utils/
H A DTransformerClangTidyCheck.cpp121 Expected<std::string> Explanation = Rule.Metadata[I]->eval(Result); in check() local
122 if (!Explanation) { in check()
124 << llvm::toString(Explanation.takeError()) << "\n"; in check()
130 diag((*Edits)[0].Range.getBegin(), escapeForDiagnostic(*Explanation)); in check()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp217 std::string Explanation; in explainPredicates() local
221 Explanation += in explainPredicates()
236 Explanation += " extload"; in explainPredicates()
238 Explanation += " sextload"; in explainPredicates()
240 Explanation += " zextload"; in explainPredicates()
276 Explanation += " acquire"; in explainPredicates()
278 Explanation += " release"; in explainPredicates()
280 Explanation += " acq_rel"; in explainPredicates()
282 Explanation += " seq_cst"; in explainPredicates()
292 return Explanation; in explainPredicates()
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/ARM/
H A Dshift-i64.ll27 ; Explanation for lshr is pretty much the reverse of shl.
/llvm-project-15.0.7/mlir/docs/Dialects/
H A DTOSA.md62 Selection. Explanation of the thinking behind some operators is listed here:
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DCompilationDatabaseTest.cpp27 static void expectFailure(StringRef JSONDatabase, StringRef Explanation) { in expectFailure() argument
32 << "Expected an error because of: " << Explanation.str(); in expectFailure()