| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | TemplateName.h | 444 OverloadedOperatorKind Operator; member 467 OverloadedOperatorKind Operator) in DependentTemplateName() argument 468 : Qualifier(Qualifier, true), Operator(Operator), in DependentTemplateName() 472 OverloadedOperatorKind Operator, in DependentTemplateName() argument 474 : Qualifier(Qualifier, true), Operator(Operator), in DependentTemplateName() 498 return Operator; in getOperator() 516 OverloadedOperatorKind Operator) { in Profile() argument 519 ID.AddInteger(Operator); in Profile()
|
| /freebsd-12.1/contrib/llvm/include/llvm/TableGen/ |
| H A D | SetTheory.h | 71 class Operator { 75 virtual ~Operator() = default; 102 StringMap<std::unique_ptr<Operator>> Operators; 125 void addOperator(StringRef Name, std::unique_ptr<Operator>);
|
| /freebsd-12.1/contrib/llvm/include/llvm/IR/ |
| H A D | Operator.h | 31 class Operator : public User { 35 Operator() = delete; 36 ~Operator() = delete; 67 class OverflowingBinaryOperator : public Operator { 120 class PossiblyExactOperator : public Operator { 240 class FPMathOperator : public Operator { 432 class ZExtOperator : public ConcreteOperator<Operator, Instruction::ZExt> {}; 435 : public ConcreteOperator<Operator, Instruction::GetElementPtr> { 540 : public ConcreteOperator<Operator, Instruction::PtrToInt> { 568 : public ConcreteOperator<Operator, Instruction::BitCast> {
|
| /freebsd-12.1/sys/contrib/dev/acpica/compiler/ |
| H A D | aslparseop.c | 544 ACPI_PARSE_OBJECT *Operator; in TrCreateAssignmentOp() local 623 Operator = TrAllocateOp (PARSEOP_STORE); in TrCreateAssignmentOp() 624 TrLinkOpChildren (Operator, 2, Source, Target); in TrCreateAssignmentOp() 628 Operator->Asl.LineNumber = Target->Asl.LineNumber; in TrCreateAssignmentOp() 629 Operator->Asl.LogicalLineNumber = Target->Asl.LogicalLineNumber; in TrCreateAssignmentOp() 630 Operator->Asl.LogicalByteOffset = Target->Asl.LogicalByteOffset; in TrCreateAssignmentOp() 631 Operator->Asl.Column = Target->Asl.Column; in TrCreateAssignmentOp() 633 return (Operator); in TrCreateAssignmentOp()
|
| H A D | aslxrefout.c | 831 const char *Operator; in OtXrefAnalysisWalkPart3() local 886 Operator = "Scope"; in OtXrefAnalysisWalkPart3() 890 Operator = "Alias"; in OtXrefAnalysisWalkPart3() 894 Operator = "ModLevel"; in OtXrefAnalysisWalkPart3() 898 Operator = AcpiUtGetTypeName (CallerOp->Asl.Node->Type); in OtXrefAnalysisWalkPart3() 905 Operator, in OtXrefAnalysisWalkPart3()
|
| H A D | dtexpress.c | 224 UINT32 Operator, in DtDoOperator() argument 232 switch (Operator) in DtDoOperator() 359 DtGetOpName (Operator), in DtDoOperator()
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | CodeGenDAGPatterns.cpp | 1680 if (Operator->getName() == "set" || in GetNumNodeResults() 1687 if (Operator->isSubClassOf("SDNode")) in GetNumNodeResults() 1746 errs() << *Operator; in GetNumNodeResults() 2678 Record *Operator = OpDef->getDef(); in ParseTreePattern() local 2706 Operator->getName() != "set" && in ParseTreePattern() 2720 Operator->getName() != "imm" && in ParseTreePattern() 2729 Operator->getName() != "bb" && in ParseTreePattern() 2730 Operator->getName() != "vt" && in ParseTreePattern() 2731 Operator->getName() != "mcsym") in ParseTreePattern() 3465 Record *Operator = OpDef->getDef(); in hasNullFragReference() local [all …]
|
| H A D | PseudoLoweringEmitter.cpp | 135 Record *Operator = OpDef->getDef(); in evaluateExpansion() local 136 if (!Operator->isSubClassOf("Instruction")) in evaluateExpansion() 137 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() + in evaluateExpansion() 140 CodeGenInstruction Insn(Operator); in evaluateExpansion() 143 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() + in evaluateExpansion() 147 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() + in evaluateExpansion()
|
| H A D | RISCVCompressInstEmitter.cpp | 416 Record *Operator = OpDef->getDef(); in evaluateCompressPat() local 417 if (!Operator->isSubClassOf("RVInst")) in evaluateCompressPat() 418 PrintFatalError(Rec->getLoc(), "Input instruction '" + Operator->getName() + in evaluateCompressPat() 420 CodeGenInstruction SourceInst(Operator); in evaluateCompressPat()
|
| H A D | CodeGenDAGPatterns.h | 630 Record *Operator; variable 655 : Operator(Op), Val(nullptr), TransformFn(nullptr), in TreePatternNode() 662 : Operator(nullptr), Val(val), TransformFn(nullptr) { in TreePatternNode() 711 Record *getOperator() const { assert(!isLeaf()); return Operator; } in getOperator()
|
| /freebsd-12.1/contrib/llvm/lib/TableGen/ |
| H A D | SetTheory.cpp | 40 struct AddOp : public SetTheory::Operator { 48 struct SubOp : public SetTheory::Operator { 64 struct AndOp : public SetTheory::Operator { 80 struct SetIntBinOp : public SetTheory::Operator { 159 struct InterleaveOp : public SetTheory::Operator { 178 struct SequenceOp : public SetTheory::Operator { 255 void SetTheory::Operator::anchor() {} in anchor() 271 void SetTheory::addOperator(StringRef Name, std::unique_ptr<Operator> Op) { in addOperator()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | InferAddressSpaces.cpp | 218 if (!isa<Operator>(V)) in isAddressExpression() 221 switch (cast<Operator>(V).getOpcode()) { in isAddressExpression() 237 const Operator &Op = cast<Operator>(V); in getPointerOperands() 329 Operator *Op = cast<Operator>(V); in appendsFlatAddressExpressionToPostorderStack() 695 const Operator &Op = cast<Operator>(V); in updateAddressSpace() 840 if (auto *Op = dyn_cast<Operator>(C)) { in isSafeToCastConstAddrSpace()
|
| H A D | SpeculativeExecution.cpp | 214 switch (Operator::getOpcode(I)) { in ComputeSpeculationCost()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | PPExpressions.cpp | 561 tok::TokenKind Operator = PeekTok.getKind(); in EvaluateDirectiveSubExpr() local 569 if (Operator == tok::ampamp && LHS.Val == 0) in EvaluateDirectiveSubExpr() 571 else if (Operator == tok::pipepipe && LHS.Val != 0) in EvaluateDirectiveSubExpr() 573 else if (Operator == tok::question && LHS.Val == 0) in EvaluateDirectiveSubExpr() 610 if (Operator == tok::question) in EvaluateDirectiveSubExpr() 627 switch (Operator) { in EvaluateDirectiveSubExpr() 656 switch (Operator) { in EvaluateDirectiveSubExpr()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | ParsedTemplate.h | 167 OverloadedOperatorKind Operator; member 229 TemplateNameLoc(TemplateNameLoc), Name(Name), Operator(OperatorKind), in TemplateIdAnnotation()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | OperatorKinds.h | 32 const char *getOperatorSpelling(OverloadedOperatorKind Operator);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 1135 tok::TokenKind Operator, in ActOnCXXFoldExpr() argument 1175 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator); in ActOnCXXFoldExpr() 1180 BinaryOperatorKind Operator, in BuildCXXFoldExpr() argument 1184 Operator, EllipsisLoc, RHS, RParenLoc); in BuildCXXFoldExpr() 1188 BinaryOperatorKind Operator) { in BuildEmptyCXXFoldExpr() argument 1199 switch (Operator) { in BuildEmptyCXXFoldExpr() 1210 << BinaryOperator::getOpcodeStr(Operator); in BuildEmptyCXXFoldExpr()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Demangle/ |
| H A D | MicrosoftDemangleNodes.h | 368 explicit IntrinsicFunctionIdentifierNode(IntrinsicFunctionKind Operator) in IntrinsicFunctionIdentifierNode() 370 Operator(Operator) {} in IntrinsicFunctionIdentifierNode() 374 IntrinsicFunctionKind Operator; member
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Value.cpp | 497 } else if (Operator::getOpcode(V) == Instruction::BitCast || in stripPointerCastsAndOffsets() 498 Operator::getOpcode(V) == Instruction::AddrSpaceCast) { in stripPointerCastsAndOffsets() 499 V = cast<Operator>(V)->getOperand(0); in stripPointerCastsAndOffsets() 570 } else if (Operator::getOpcode(V) == Instruction::BitCast) { in stripAndAccumulateInBoundsConstantOffsets() 571 V = cast<Operator>(V)->getOperand(0); in stripAndAccumulateInBoundsConstantOffsets()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | ValueTracking.cpp | 1349 Operator *LU = dyn_cast<Operator>(L); in computeKnownBitsFromOperator() 1681 if (const Operator *I = dyn_cast<Operator>(V)) in computeKnownBits() 2237 assert(isa<Operator>(Select) && in isSignedMinMaxClamp() 2325 const Operator *U = dyn_cast<Operator>(V); in ComputeNumSignBitsImpl() 2326 switch (Operator::getOpcode(V)) { in ComputeNumSignBitsImpl() 2629 Operator *I = dyn_cast<Operator>(V); in ComputeMultiple() 2833 auto *Op = dyn_cast<Operator>(V); in CannotBeNegativeZero() 2906 const Operator *I = dyn_cast<Operator>(V); in cannotBeOrderedLessThanZeroImpl() 3680 V = cast<Operator>(V)->getOperand(0); in GetUnderlyingObject() 3765 if (const Operator *U = dyn_cast<Operator>(V)) { in getUnderlyingObjectFromInt() [all …]
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | AsmLexer.cpp | 675 AsmToken::TokenKind Operator; in LexToken() local 678 std::tie(Operator, OperatorLength) = in LexToken() 707 if (Operator != AsmToken::Percent) { in LexToken() 709 return AsmToken(Operator, StringRef(TokStart, OperatorLength)); in LexToken()
|
| /freebsd-12.1/share/misc/ |
| H A D | operator | 1 Operator Associativity
|
| /freebsd-12.1/contrib/byacc/test/ |
| H A D | btyacc_demo.y | 22 enum Operator { ADD, SUB, MUL, MOD, DIV, DEREF }; enum 222 extern Expr * build_expr(Expr *left, enum Operator op, Expr *right);
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 439 BinaryOperator::Opcode Operator = SIE->getOpcode(); in applyBitwiseConstraints() local 442 if (Operator == BO_Or && IsUnsigned) in applyBitwiseConstraints() 446 if (Operator == BO_Or && RHS != Zero) in applyBitwiseConstraints() 452 if (Operator == BO_And && (IsUnsigned || RHS >= Zero)) in applyBitwiseConstraints()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/ |
| H A D | IdentifierTable.cpp | 669 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { in getOperatorSpelling() argument 670 switch (Operator) { in getOperatorSpelling()
|