Home
last modified time | relevance | path

Searched refs:BracketDepth (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dexpand-contiguous-isel.ll33 …%BracketDepth.0.ph = phi i64 [ %BracketDepth.1, %_ZNK4llvm9StringRef6substrEmm.exit ], [ undef, %e…
34 %cmp65 = icmp eq i64 %BracketDepth.0.ph, 0
118 %dec = add i64 %BracketDepth.0.ph, -1
127 …%BracketDepth.1 = phi i64 [ %dec, %if.end10 ], [ 0, %_ZNK4llvm9StringRef6substrEmm.exit.loopexit ]…
/llvm-project-15.0.7/clang/lib/Lex/
H A DPreprocessor.cpp1113 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1120 ++BracketDepth; in CollectPpImportSuffix()
1124 if (BracketDepth == 0) in CollectPpImportSuffix()
1126 --BracketDepth; in CollectPpImportSuffix()
1130 if (BracketDepth == 0) in CollectPpImportSuffix()
/llvm-project-15.0.7/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h438 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/llvm-project-15.0.7/llvm/lib/FileCheck/
H A DFileCheck.cpp1547 size_t BracketDepth = 0; in FindRegexVarEnd() local
1550 if (Str.startswith("]]") && BracketDepth == 0) in FindRegexVarEnd()
1561 BracketDepth++; in FindRegexVarEnd()
1564 if (BracketDepth == 0) { in FindRegexVarEnd()
1570 BracketDepth--; in FindRegexVarEnd()
/llvm-project-15.0.7/clang/lib/Parse/
H A DParser.cpp2639 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2655 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DLangOptions.def381 BENIGN_LANGOPT(BracketDepth, 32, 256,
/llvm-project-15.0.7/clang/lib/Sema/
H A DTreeTransform.h13801 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < NumExpansions) { in TransformCXXFoldExpr()
13804 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/llvm-project-15.0.7/clang/include/clang/Driver/
H A DOptions.td6081 MarshallingInfoInt<LangOpts<"BracketDepth">, "256">;