Home
last modified time | relevance | path

Searched refs:ModExpr (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/clang/unittests/Analysis/
H A DExprMutationAnalyzerTest.cpp125 const std::string ModExpr = "x " + GetParam() + " 10"; in TEST_P() local
129 EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre(ModExpr)); in TEST_P()
134 const std::string ModExpr = "(x) " + GetParam() + " 10"; in TEST_P() local
138 EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre(ModExpr)); in TEST_P()
143 const std::string ModExpr = "x " + GetParam() + " 10"; in TEST_P() local
148 EXPECT_THAT(mutatedBy(Results, AST.get()), ElementsAre(ModExpr)); in TEST_P()
154 const std::string ModExpr = "y, x, y " + GetParam() + " 10"; in TEST_P() local
175 const std::string ModExpr = in TEST_P() local
197 const std::string ModExpr = "(y ?: x) " + GetParam() + " 10"; in TEST_P() local
226 const std::string ModExpr = GetParam(); in TEST_P() local
[all …]
/llvm-project-15.0.7/llvm/lib/Target/RISCV/AsmParser/
H A DRISCVAsmParser.cpp1582 const MCExpr *ModExpr = RISCVMCExpr::create(SubExpr, VK, getContext()); in parseOperandWithModifier() local
1583 Operands.push_back(RISCVOperand::createImm(ModExpr, S, E, isRV64())); in parseOperandWithModifier()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp14863 void notePreMod(Object O, const Expr *ModExpr) { in notePreMod() argument
14866 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsValue, /*IsModMod=*/true); in notePreMod()
14867 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_Use, /*IsModMod=*/false); in notePreMod()
14870 void notePostMod(Object O, const Expr *ModExpr, UsageKind UK) { in notePostMod() argument
14872 checkUsage(O, UI, ModExpr, /*OtherKind=*/UK_ModAsSideEffect, in notePostMod()
14874 addUsage(O, UI, ModExpr, /*UsageKind=*/UK); in notePostMod()