/llvm-project/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 | 727 : position(ip.first), question(ip.second) {} in OrderedPredicate() 729 : position(ip.position), question(ip.question) {} in OrderedPredicate() 734 /// The question that is applied by this predicate onto the position. 735 Qualifier *question; member 752 /// A map between a pattern operation and the answer to the predicate question 767 rhsPos->getKind(), rhs.question->getKind(), rhs.id) > in operator <() 770 question->getKind(), id); in operator <() 775 /// question. 783 return lhs.position == rhs.position && lhs.question in isEqual() 1049 BoolNode(Position * position,Qualifier * question,Qualifier * answer,std::unique_ptr<MatcherNode> successNode,std::unique_ptr<MatcherNode> failureNode) BoolNode() argument 1070 SwitchNode(Position * position,Qualifier * question) SwitchNode() argument [all...] |
H A D | PDLToPDLInterp.cpp | 395 Qualifier *question = boolNode->getQuestion(); in generate() local 402 if (auto *equalToQuestion = dyn_cast<EqualToQuestion>(question)) { in generate() 404 } else if (auto *cstQuestion = dyn_cast<ConstraintQuestion>(question)) { in generate() 415 Predicates::Kind kind = question->getKind(); in generate() 464 auto *cstQuestion = cast<ConstraintQuestion>(question); in generate() 497 Qualifier *question = switchNode->getQuestion(); in generate() local 503 Predicates::Kind kind = question->getKind(); in generate() 567 switch (question->getKind()) { in generate()
|
/llvm-project/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/llvm/utils/ |
H A D | demangle_tree.py | 23 question = line.find("?") 24 if question == -1: 27 open_paren = line.find("(", question) 33 mangled = line[question:open_paren]
|
/llvm-project/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
|
H A D | 2000-11-18-EarlyDesignIdeasResp.txt | 12 > processor issues), since the architecture interface question is also 44 > the second question. The Java compiler and OS community care much more 87 > b. A strongly-typed VM. One question is do we need the types to be
|
/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
H A D | MacroRepeatedSideEffectsCheck.cpp | 96 if (FoundBuiltin && T.isOneOf(tok::question, tok::ampamp, tok::pipepipe)) in countArgumentExpansions() 110 if (T.is(tok::question)) { in countArgumentExpansions()
|
/llvm-project/clang/lib/Lex/ |
H A D | PPExpressions.cpp | 567 case tok::question: return 4; in getPrecedence() 620 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr() 657 if (Operator == tok::question) in EvaluateDirectiveSubExpr() 675 case tok::question: // No UAC for x and y in "x ? y : z". in EvaluateDirectiveSubExpr() 812 case tok::question: { in EvaluateDirectiveSubExpr() 817 PP.Diag(OpLoc, diag::note_matching) << tok::question; in EvaluateDirectiveSubExpr() 933 if (EvaluateDirectiveSubExpr(ResVal, getPrecedence(tok::question), in EvaluateDirectiveExpression()
|
/llvm-project/mlir/lib/AsmParser/ |
H A D | TypeParser.cpp | 547 if (consumeIf(Token::question)) { in parseDimensionListRanked() 561 while (getToken().isAny(Token::integer, Token::question)) { in parseDimensionListRanked() 568 if (getToken().isAny(Token::integer, Token::question)) { in parseIntegerInDimensionList()
|
H A D | TokenKinds.def | 69 TOK_PUNCTUATION(question, "?")
|
H A D | AsmParserImpl.h | 201 return parser.parseToken(Token::question, "expected '?'"); in parseQuestion() 206 return success(parser.consumeIf(Token::question)); in parseOptionalQuestion()
|
/llvm-project/clang/lib/Format/ |
H A D | FormatTokenLexer.cpp | 132 static const tok::TokenKind NullishCoalescingOperator[] = {tok::question, in tryMergePreviousTokens() 133 tok::question}; in tryMergePreviousTokens() 134 static const tok::TokenKind NullPropagatingOperator[] = {tok::question, in tryMergePreviousTokens() 156 tok::question, tok::l_square}; in tryMergePreviousTokens() 222 tok::question) && in tryMergePreviousTokens() 265 {tok::exclaimequal, tok::question}, in tryMergePreviousTokens() 267 {tok::equalequal, tok::question}}, in tryMergePreviousTokens() 611 tok::colon, tok::question, tok::tilde) || in canPrecedeRegexLiteral() 1333 FormatTok->Tok.isOneOf(tok::identifier, tok::question)) { in getNextToken()
|
/llvm-project/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. 38 ; Check the case where the alloca in question has more than one 72 ; Check the case where the alloca in question has more than one
|
/llvm-project/clang/lib/Basic/ |
H A D | OperatorPrecedence.cpp | 53 case tok::question: return prec::Conditional; in getBinOpPrecedence()
|
/llvm-project/llvm/test/CodeGen/X86/ |
H A D | pr36274.ll | 6 ; to the load causing a cycle. Here the dependence in question comes
|
/llvm-project/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/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/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/clang/test/SemaObjC/ |
H A D | foreach.m | 12 /* This should be ok, 'thisKey' should be scoped to the loop in question,
|
/llvm-project/mlir/tools/mlir-tblgen/ |
H A D | FormatGen.cpp | 112 return formToken(FormatToken::question, tokStart); in lexToken() 368 if (failed(parseToken(FormatToken::question, in parseOptionalGroup()
|
/llvm-project/clang/lib/Parse/ |
H A D | ParseCXXInlineMethods.cpp | 1186 assert(Tok.is(tok::question)); in ConsumeAndStoreConditional() 1191 if (!ConsumeAndStoreUntil(tok::question, tok::colon, Toks, 1197 if (Tok.is(tok::question) && !ConsumeAndStoreConditional(Toks)) in UnannotatedTentativeParsingAction() 1297 case tok::question: in ConsumeAndStoreInitializer()
|
/llvm-project/llvm/lib/TableGen/ |
H A D | TGLexer.h | 53 question, // ? enumerator
|
/llvm-project/clang-tools-extra/clang-tidy/modernize/ |
H A D | IntegralLiteralExpressionMatcher.cpp | 247 if (Current->is(tok::TokenKind::question)) { in conditionalExpr()
|