Searched refs:Operator (Results 1 - 25 of 61) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DOperatorKinds.h31 const char *getOperatorSpelling(OverloadedOperatorKind Operator);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSetTheory.h69 /// Operator - A callback representing a DAG operator.
70 class Operator { class in class:llvm::SetTheory
74 virtual ~Operator() = default;
101 StringMap<std::unique_ptr<Operator>> Operators;
124 void addOperator(StringRef Name, std::unique_ptr<Operator>);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DTemplateName.h470 OverloadedOperatorKind Operator; member in union:clang::DependentTemplateName::__anon1367
493 OverloadedOperatorKind Operator)
494 : Qualifier(Qualifier, true), Operator(Operator),
498 OverloadedOperatorKind Operator,
500 : Qualifier(Qualifier, true), Operator(Operator),
524 return Operator;
542 OverloadedOperatorKind Operator) {
545 ID.AddInteger(Operator);
492 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator) argument
497 DependentTemplateName(NestedNameSpecifier *Qualifier, OverloadedOperatorKind Operator, TemplateName Canon) argument
541 Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, OverloadedOperatorKind Operator) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DOperator.h1 //===-- llvm/Operator.h - Operator utility subclass -------------*- C++ -*-===//
30 class Operator : public User { class in namespace:llvm
32 // The Operator class is intended to be used as a utility, and is never itself
34 Operator() = delete;
35 ~Operator() = delete;
66 class OverflowingBinaryOperator : public Operator {
120 class PossiblyExactOperator : public Operator {
246 class FPMathOperator : public Operator {
452 class ZExtOperator : public ConcreteOperator<Operator, Instructio
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtexpress.c212 * Operator - Parse token for the operator (OP_EXP_*)
224 UINT32 Operator,
232 switch (Operator)
359 DtGetOpName (Operator),
222 DtDoOperator( UINT64 LeftValue, UINT32 Operator, UINT64 RightValue) argument
H A Daslparseop.c570 ACPI_PARSE_OBJECT *Operator; local
649 Operator = TrAllocateOp (PARSEOP_STORE);
650 TrLinkOpChildren (Operator, 2, Source, Target);
654 Operator->Asl.LineNumber = Target->Asl.LineNumber;
655 Operator->Asl.LogicalLineNumber = Target->Asl.LogicalLineNumber;
656 Operator->Asl.LogicalByteOffset = Target->Asl.LogicalByteOffset;
657 Operator->Asl.Column = Target->Asl.Column;
659 return (Operator);
H A Daslxrefout.c831 const char *Operator; local
886 Operator = "Scope";
890 Operator = "Alias";
894 Operator = "ModLevel";
898 Operator = AcpiUtGetTypeName (CallerOp->Asl.Node->Type);
902 "[%5u] %-40s %-8s via path: %s, Operator: %s\n",
905 Operator,
H A Ddtcompiler.h400 UINT32 Operator,
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DPseudoLoweringEmitter.cpp134 Record *Operator = OpDef->getDef(); local
135 if (!Operator->isSubClassOf("Instruction"))
136 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
139 CodeGenInstruction Insn(Operator);
142 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
146 PrintFatalError(Rec->getLoc(), "Pseudo result '" + Operator->getName() +
H A DCodeGenDAGPatterns.cpp1773 static unsigned GetNumNodeResults(Record *Operator, CodeGenDAGPatterns &CDP) { argument
1774 if (Operator->getName() == "set" ||
1775 Operator->getName() == "implicit")
1778 if (Operator->isSubClassOf("Intrinsic"))
1779 return CDP.getIntrinsic(Operator).IS.RetVTs.size();
1781 if (Operator->isSubClassOf("SDNode"))
1782 return CDP.getSDNodeInfo(Operator).getNumResults();
1784 if (Operator->isSubClassOf("PatFrags")) {
1788 if (TreePattern *PFRec = CDP.getPatternFragmentIfRead(Operator)) {
1797 ListInit *LI = Operator
2791 Record *Operator = OpDef->getDef(); local
4478 Record *Operator = N->getOperator(); local
[all...]
H A DRISCVCompressInstEmitter.cpp423 Record *Operator = SourceDag->getOperatorAsDef(Rec->getLoc()); local
424 if (!Operator->isSubClassOf("RVInst"))
425 PrintFatalError(Rec->getLoc(), "Input instruction '" + Operator->getName() +
427 CodeGenInstruction SourceInst(Operator);
H A DCodeGenDAGPatterns.h642 /// Operator - The Record for the operator if this is an interior node (not
644 Record *Operator; member in class:llvm::TreePatternNode
669 : Operator(Op), Val(nullptr), TransformFn(nullptr),
676 : Operator(nullptr), Val(val), TransformFn(nullptr) {
725 Record *getOperator() const { assert(!isLeaf()); return Operator; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DSetTheory.cpp39 struct AddOp : public SetTheory::Operator {
47 struct SubOp : public SetTheory::Operator {
63 struct AndOp : public SetTheory::Operator {
79 struct SetIntBinOp : public SetTheory::Operator {
86 PrintFatalError(Loc, "Operator requires (Op Set, Int) arguments: " +
158 struct InterleaveOp : public SetTheory::Operator {
177 struct SequenceOp : public SetTheory::Operator {
254 void SetTheory::Operator::anchor() {}
270 void SetTheory::addOperator(StringRef Name, std::unique_ptr<Operator> Op) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp110 #include "llvm/IR/Operator.h"
232 static bool isNoopPtrIntCastPair(const Operator *I2P, const DataLayout &DL,
235 auto *P2I = dyn_cast<Operator>(I2P->getOperand(0));
268 const Operator *Op = dyn_cast<Operator>(&V);
299 const Operator &Op = cast<Operator>(V);
320 auto *P2I = cast<Operator>(Op.getOperand(0));
402 Operator *Op = cast<Operator>(
[all...]
H A DSpeculativeExecution.cpp70 #include "llvm/IR/Operator.h"
215 switch (Operator::getOpcode(I)) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h166 OverloadedOperatorKind Operator; member in struct:clang::final
248 Name(Name), Operator(OperatorKind), Template(OpaqueTemplateName),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp688 AsmToken::TokenKind Operator; local
691 std::tie(Operator, OperatorLength) =
720 if (Operator != AsmToken::Percent) {
722 return AsmToken(Operator, StringRef(TokStart, OperatorLength));
/freebsd-13-stable/contrib/byacc/test/
H A Dbtyacc_demo.y22 enum Operator { ADD, SUB, MUL, MOD, DIV, DEREF };
222 extern Expr * build_expr(Expr *left, enum Operator op, Expr *right);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp580 tok::TokenKind Operator = PeekTok.getKind();
588 if (Operator == tok::ampamp && LHS.Val == 0)
590 else if (Operator == tok::pipepipe && LHS.Val != 0)
592 else if (Operator == tok::question && LHS.Val == 0)
629 if (Operator == tok::question)
646 switch (Operator) {
675 switch (Operator) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp1164 tok::TokenKind Operator,
1204 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Operator);
1210 BinaryOperatorKind Operator,
1215 Operator, EllipsisLoc, RHS, RParenLoc,
1220 BinaryOperatorKind Operator) {
1231 switch (Operator) {
1242 << BinaryOperator::getOpcodeStr(Operator);
1163 ActOnCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, tok::TokenKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc) argument
1209 BuildCXXFoldExpr(SourceLocation LParenLoc, Expr *LHS, BinaryOperatorKind Operator, SourceLocation EllipsisLoc, Expr *RHS, SourceLocation RParenLoc, Optional<unsigned> NumExpansions) argument
1219 BuildEmptyCXXFoldExpr(SourceLocation EllipsisLoc, BinaryOperatorKind Operator) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DValue.cpp28 #include "llvm/IR/Operator.h"
557 } else if (Operator::getOpcode(V) == Instruction::BitCast) {
558 V = cast<Operator>(V)->getOperand(0);
562 Operator::getOpcode(V) == Instruction::AddrSpaceCast) {
565 V = cast<Operator>(V)->getOperand(0);
665 } else if (Operator::getOpcode(V) == Instruction::BitCast ||
666 Operator::getOpcode(V) == Instruction::AddrSpaceCast) {
667 V = cast<Operator>(V)->getOperand(0);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h391 explicit IntrinsicFunctionIdentifierNode(IntrinsicFunctionKind Operator) argument
393 Operator(Operator) {}
397 IntrinsicFunctionKind Operator; member in struct:llvm::ms_demangle::IntrinsicFunctionIdentifierNode
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DValueTracking.cpp59 #include "llvm/IR/Operator.h"
1054 const Operator *I, const APInt &DemandedElts, KnownBits &Known,
1141 static void computeKnownBitsFromOperator(const Operator *I,
1511 Operator *LU = dyn_cast<Operator>(L);
1998 if (const Operator *I = dyn_cast<Operator>(V))
2106 return isKnownToBeAPowerOfTwo(cast<Operator>(V)->getOperand(0), OrZero,
2629 assert(isa<Operator>(Select) &&
2630 cast<Operator>(Selec
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DIdentifierTable.cpp694 const char *clang::getOperatorSpelling(OverloadedOperatorKind Operator) { argument
695 switch (Operator) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountDiagnostics.cpp235 os << "Operator 'new'";

Completed in 341 milliseconds

123