| /llvm-project-15.0.7/mlir/lib/Conversion/PDLToPDLInterp/ |
| H A D | PredicateTree.h | 33 : position(pos), question(predicate.first), answer(predicate.second) {} in PositionalPredicate() 39 Qualifier *question; member 66 Qualifier *getQuestion() const { return question; } in getQuestion() 83 Qualifier *question = nullptr, 91 Qualifier *question; variable 110 BoolNode(Position *position, Qualifier *question, Qualifier *answer, 185 SwitchNode(Position *position, Qualifier *question);
|
| H A D | PredicateTree.cpp | 703 : position(ip.first), question(ip.second) {} in OrderedPredicate() 705 : position(ip.position), question(ip.question) {} in OrderedPredicate() 711 Qualifier *question; member 746 question->getKind(), id); in operator <() 759 return lhs.position == rhs.position && lhs.question == rhs.question; in isEqual() 762 return llvm::hash_combine(p.position, p.question); in getHashValue() 783 node->getQuestion() == predicate->question; in isSamePredicate() 822 (*current)->question); in propagatePattern() 981 : MatcherNode(TypeID::get<BoolNode>(), position, question, in BoolNode() 999 SwitchNode::SwitchNode(Position *position, Qualifier *question) in SwitchNode() argument [all …]
|
| H A D | PDLToPDLInterp.cpp | 364 Qualifier *question = boolNode->getQuestion(); in generate() local 371 if (auto *equalToQuestion = dyn_cast<EqualToQuestion>(question)) { in generate() 373 } else if (auto *cstQuestion = dyn_cast<ConstraintQuestion>(question)) { in generate() 385 Predicates::Kind kind = question->getKind(); in generate() 434 auto *cstQuestion = cast<ConstraintQuestion>(question); in generate() 460 Qualifier *question = switchNode->getQuestion(); in generate() local 466 Predicates::Kind kind = question->getKind(); in generate() 530 switch (question->getKind()) { in generate()
|
| /llvm-project-15.0.7/bolt/test/X86/Inputs/ |
| H A D | inlined.cpp | 2 extern const char* question(); 14 printf("%s\n", question()); in main()
|
| H A D | inlinee.cpp | 1 const char* question() { in question() function
|
| /llvm-project-15.0.7/mlir/lib/AsmParser/ |
| H A D | TypeParser.cpp | 161 bool question = getToken().is(Token::question); in parseStridedLayout() local 162 if (!maybeOffset && !question) in parseStridedLayout() 546 if (consumeIf(Token::question)) { in parseDimensionListRanked() 560 while (getToken().isAny(Token::integer, Token::question)) { in parseDimensionListRanked() 567 if (getToken().isAny(Token::integer, Token::question)) { in parseDimensionListRanked() 627 if (consumeIf(Token::question)) { in parseStrideList()
|
| H A D | TokenKinds.def | 69 TOK_PUNCTUATION(question, "?")
|
| H A D | AsmParserImpl.h | 194 return parser.parseToken(Token::question, "expected '?'"); in parseQuestion() 199 return success(parser.consumeIf(Token::question)); in parseOptionalQuestion()
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | demangle_tree.py | 22 question = line.find('?') 23 if question == -1: 26 open_paren = line.find('(', question) 32 mangled = line[question : open_paren]
|
| /llvm-project-15.0.7/llvm/docs/HistoricalNotes/ |
| H A D | 2000-11-18-EarlyDesignIdeas.txt | 12 processor issues), since the architecture interface question is also 17 the second question. The Java compiler and OS community care much more 20 Also, while the architecture interface question is important for 30 b. A strongly-typed VM. One question is do we need the types to be
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/ |
| H A D | MacroRepeatedSideEffectsCheck.cpp | 97 if (FoundBuiltin && T.isOneOf(tok::question, tok::ampamp, tok::pipepipe)) in countArgumentExpansions() 111 if (T.is(tok::question)) { in countArgumentExpansions()
|
| /llvm-project-15.0.7/clang/lib/Lex/ |
| H A D | PPExpressions.cpp | 566 case tok::question: return 4; in getPrecedence() 619 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr() 656 if (Operator == tok::question) in EvaluateDirectiveSubExpr() 674 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr() 811 case tok::question: { in EvaluateDirectiveSubExpr() 816 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr() 925 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
|
| /llvm-project-15.0.7/llvm/test/Transforms/Mem2Reg/ |
| H A D | preserve-nonnull-load-metadata.ll | 7 ; Check the case where the alloca in question has a single store. 24 ; Check the case where the alloca in question has more than one 43 ; Check the case where the alloca in question has more than one
|
| /llvm-project-15.0.7/clang/lib/Basic/ |
| H A D | OperatorPrecedence.cpp | 53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
|
| /llvm-project-15.0.7/clang/lib/Format/ |
| H A D | FormatTokenLexer.cpp | 112 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question, in tryMergePreviousTokens() 113 tok::question}; in tryMergePreviousTokens() 114 static const tok::TokenKind NullPropagatingOperator[] = {tok::question, in tryMergePreviousTokens() 136 tok::question, tok::l_square}; in tryMergePreviousTokens() 438 tok::colon, tok::question, tok::tilde) || in precedesOperand()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | pr36274.ll | 6 ; to the load causing a cycle. Here the dependence in question comes
|
| H A D | late-address-taken.ll | 47 ; test @setjmp - similar to @catchret, but the MBB in question
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Symbolize/ELF/ |
| H A D | symtab-file2.yaml | 11 ## question. We could tell if there is only one STT_FILE but in reality there
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | ExtendedIntegerResults.txt | 8 specific integer GPR. This is an efficient way to go, but raises the question: 12 sign extended. The number of bits in question depends on the data-type that
|
| /llvm-project-15.0.7/mlir/tools/mlir-tblgen/ |
| H A D | FormatGen.cpp | 111 return formToken(FormatToken::question, tokStart); in lexToken() 318 if (failed(parseToken(FormatToken::question, in parseOptionalGroup()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/ |
| H A D | macro-repeated-side-effects.c | 34 void question(int x) { in question() function
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objcopy/ELF/ |
| H A D | wildcard-syntax.test | 17 # RUN: llvm-objcopy --remove-section='.b?r' %t.o %t.question.o 18 # RUN: llvm-readobj --sections %t.question.o \
|
| /llvm-project-15.0.7/llvm/lib/TableGen/ |
| H A D | TGLexer.h | 44 equal, question, // = ? enumerator
|
| /llvm-project-15.0.7/clang/test/SemaObjC/ |
| H A D | foreach.m | 12 /* This should be ok, 'thisKey' should be scoped to the loop in question,
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 1102 assert(Tok.is(tok::question)); in ConsumeAndStoreConditional() 1107 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks, in ConsumeAndStoreConditional() 1113 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks)) in ConsumeAndStoreConditional() 1249 case tok::question: in ConsumeAndStoreInitializer()
|