Home
last modified time | relevance | path

Searched refs:Semantic (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/tools/llvm-exegesis/
H A DRegisterValueTest.cpp20 bitcastFloatValue(Semantic, PredefinedValues::ACTUAL))
24 const auto &Semantic = APFloatBase::IEEEhalf(); in TEST() local
40 const auto &Semantic = APFloatBase::IEEEsingle(); in TEST() local
56 const auto &Semantic = APFloatBase::IEEEdouble(); in TEST() local
/llvm-project-15.0.7/clang/test/Misc/
H A Dserialized-diags.m20 …-diags.m:8:4: error: use of undeclared identifier '_self'; did you mean 'self'? [] [Semantic Issue]
24 // CHECK: +-(null):0:0: note: 'self' is an implicit parameter [] [Semantic Issue]
26 …: warning: class 'Foo' defined without specifying a base class [-Wobjc-root-class] [Semantic Issue]
28 …{{.*[/\\]}}serialized-diags.m:1:15: note: add a super class to fix this problem [] [Semantic Issue]
/llvm-project-15.0.7/clang/test/ParserHLSL/
H A Dsemantic_parsing.hlsl3 // expected-error@+1 {{expected HLSL Semantic identifier}}
/llvm-project-15.0.7/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp628 Expr *Semantic = *it; in VisitPseudoObjectExpr() local
629 if (auto *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) in VisitPseudoObjectExpr()
630 Semantic = OVE->getSourceExpr(); in VisitPseudoObjectExpr()
631 Visit(Semantic); in VisitPseudoObjectExpr()
H A DCFG.cpp3776 Expr *Semantic = E->getSemanticExpr(--i); in VisitPseudoObjectExpr() local
3780 if (OpaqueValueExpr *OVE = dyn_cast<OpaqueValueExpr>(Semantic)) in VisitPseudoObjectExpr()
3781 Semantic = OVE->getSourceExpr(); in VisitPseudoObjectExpr()
3783 if (CFGBlock *B = Visit(Semantic)) in VisitPseudoObjectExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDependenceFlags.h139 Semantic = in LLVM_COMMON_DEPENDENCE() enumerator
190 Result.V &= Semantic; in LLVM_COMMON_DEPENDENCE()
H A DExpr.h524 bool isKnownToHaveBooleanValue(bool Semantic = true) const;
/llvm-project-15.0.7/clang-tools-extra/clangd/test/
H A Ddiagnostic-category.test9 # CHECK-NEXT: "category": "Semantic Issue",
/llvm-project-15.0.7/clang-tools-extra/docs/
H A DReleaseNotes.rst62 Semantic Highlighting
65 - Semantic highlighting works for tokens that span multiple lines.
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp136 bool Expr::isKnownToHaveBooleanValue(bool Semantic) const { in isKnownToHaveBooleanValue()
147 return UO->getSubExpr()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
159 return CE->getSubExpr()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
178 return BO->getLHS()->isKnownToHaveBooleanValue(Semantic) && in isKnownToHaveBooleanValue()
179 BO->getRHS()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
183 return BO->getRHS()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
188 return CO->getTrueExpr()->isKnownToHaveBooleanValue(Semantic) && in isKnownToHaveBooleanValue()
189 CO->getFalseExpr()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
195 return OVE->getSourceExpr()->isKnownToHaveBooleanValue(Semantic); in isKnownToHaveBooleanValue()
198 if (!Semantic && FD->getType()->isUnsignedIntegerType() && in isKnownToHaveBooleanValue()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp310 const fltSemantics &Semantic = in operator *=() local
314 convertToFpType(Semantic); in operator *=()
318 F0.multiply(createAPFloatFromInt(Semantic, That.IntVal), in operator *=()
/llvm-project-15.0.7/clang/docs/
H A DDebuggingCoroutines.rst12 the Clang compiler is implemented in two parts of the compiler. Semantic
H A DThreadSafetyAnalysis.rst471 + ``-Wthread-safety-attributes``: Semantic checks for thread safety attributes.
H A DInternalsManual.rst1674 Lexical and Semantic Contexts
3079 Semantic handling
3119 #. Introduce semantic analysis actions into ``Sema``. Semantic analysis should
H A DModules.rst72 Semantic import
H A DUsersManual.rst1319 .. csv-table:: Floating Point Semantic Modes
/llvm-project-15.0.7/llvm/docs/
H A DTransformMetadata.rst60 an optimization-missed warning must be emitted. Semantic information
H A DAMDGPUDwarfExtensionsForHeterogeneousDebugging.rst4808 16. [SEMVER] `Semantic Versioning <https://semver.org/>`__
H A DAMDGPUUsage.rst15130 .. [SEMVER] `Semantic Versioning <https://semver.org/>`__
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx2bIssues.csv118 `3559 <https://wg21.link/LWG3559>`__,"Semantic requirements of ``sized_range`` is circular","Octobe…
/llvm-project-15.0.7/clang/docs/CommandGuide/
H A Dclang.rst31 Parsing and Semantic Analysis
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DDiagnosticParseKinds.td1607 "expected HLSL Semantic identifier">;
H A DDiagnosticSemaKinds.td10 // Semantic Analysis
14 let CategoryName = "Semantic Issue" in {
111 // Semantic analysis of constant literals.
4352 // Function Parameter Semantic Analysis.
4423 // C++ Overloading Semantic Analysis.
6226 let CategoryName = "ARC Semantic Issue" in {
8873 let CategoryName = "Semantic Issue" in {
H A DAttr.td318 // HLSL Semantic spellings
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td4949 generated Fortran source file. Semantic checks are disabled.}]>;
4966 DocBrief<[{Run the Parser and then output the parse tree. Semantic