| /openbsd-src/gnu/llvm/llvm/utils/TableGen/GlobalISel/ |
| H A D | GIMatchDagInstr.cpp | 28 for (const auto &Assignment : UserAssignedNamesForOperands) in print() local 29 ToPrint.emplace_back(Assignment.first, Assignment.second); in print() 32 for (const auto &Assignment : ToPrint) { in print() local 33 OS << Separator << "$" << Assignment.second << "=getOperand(" in print() 34 << Assignment.first << ")"; in print()
|
| H A D | GIMatchDag.cpp | 42 for (const auto &Assignment : N->user_assigned_operand_names()) in writeDOTGraph() local 43 ToPrint.emplace_back(Assignment.first, Assignment.second); in writeDOTGraph() 46 for (const auto &Assignment : ToPrint) { in writeDOTGraph() local 47 OS << Separator << "$" << Assignment.second << "=getOperand(" in writeDOTGraph() 48 << Assignment.first << ")"; in writeDOTGraph()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 423 enum class Assignment : int8_t { enum in clang::dataflow::WatchedLiteralsSolverImpl 434 std::vector<Assignment> VarAssignments; 452 VarAssignments.resize(Formula.LargestVar + 1, Assignment::Unassigned); in WatchedLiteralsSolverImpl() 496 VarAssignments[Var] = VarAssignments[Var] == Assignment::AssignedTrue in solve() 497 ? Assignment::AssignedFalse in solve() 498 : Assignment::AssignedTrue; in solve() 509 unitPosLit ? Assignment::AssignedTrue : Assignment::AssignedFalse; in solve() 553 llvm::DenseMap<AtomicBoolValue *, Solver::Result::Assignment> 555 llvm::DenseMap<AtomicBoolValue *, Solver::Result::Assignment> Solution; in buildSolution() 561 VarAssignments[Atomic.first] == Assignment::AssignedFalse in buildSolution() [all …]
|
| H A D | DebugSupport.cpp | 63 llvm::StringRef debugString(Solver::Result::Assignment Assignment) { in debugString() argument 64 switch (Assignment) { in debugString() 65 case Solver::Result::Assignment::AssignedFalse: in debugString() 67 case Solver::Result::Assignment::AssignedTrue: in debugString() 199 const llvm::DenseMap<AtomicBoolValue *, Solver::Result::Assignment> in debugString()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/ |
| H A D | Solver.h | 44 enum class Assignment : uint8_t { AssignedFalse = 0, AssignedTrue = 1 }; enum 49 Satisfiable(llvm::DenseMap<AtomicBoolValue *, Assignment> Solution) { in Satisfiable() 67 std::optional<llvm::DenseMap<AtomicBoolValue *, Assignment>> 75 std::optional<llvm::DenseMap<AtomicBoolValue *, Assignment>> Solution) in Result() 79 std::optional<llvm::DenseMap<AtomicBoolValue *, Assignment>> Solution;
|
| H A D | DebugSupport.h | 32 llvm::StringRef debugString(Solver::Result::Assignment Assignment);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | AssignmentTrackingAnalysis.cpp | 916 struct Assignment { struct in __anonf860719b0211::AssignmentTrackingLowering 924 bool isSameSourceAssignment(const Assignment &Other) const { in isSameSourceAssignment() argument 944 static Assignment make(DIAssignID *ID, DbgAssignIntrinsic *Source) { in make() argument 945 return Assignment(Known, ID, Source); in make() 947 static Assignment makeFromMemDef(DIAssignID *ID) { in makeFromMemDef() argument 948 return Assignment(Known, ID, nullptr); in makeFromMemDef() 950 static Assignment makeNoneOrPhi() { in makeNoneOrPhi() argument 951 return Assignment(NoneOrPhi, nullptr, nullptr); in makeNoneOrPhi() 954 Assignment() in Assignment() argument 957 Assignment(S Status, DIAssignID *ID, DbgAssignIntrinsic *Source) in Assignment() function [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | OperatorPrecedence.h | 29 Assignment = 2, // =, *=, /=, %=, +=, -=, <<=, >>=, &=, ^=, |= enumerator
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | OperatorPrecedence.cpp | 52 case tok::pipeequal: return prec::Assignment; in getBinOpPrecedence()
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | AssignmentTracking.md | 1 # Debug Info Assignment Tracking 3 Assignment Tracking is an alternative technique for tracking variable location 36 ### Assignment markers: `llvm.dbg.assign` 39 IR where a variable takes a particular value. Similarly, Assignment Tracking 130 optimiser has made a once-indirect store (not tracked with Assignment Tracking)
|
| H A D | Lexicon.rst | 183 Loop-Closed Static Single Assignment Form 313 Static Single Assignment
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/f/ |
| H A D | str-2t.fin | 25 ;Assignment ASSIGNMENT
|
| /openbsd-src/gnu/llvm/clang/lib/Format/ |
| H A D | ContinuationIndenter.cpp | 485 if (PreviousPrecedence != prec::Assignment && in mustBreak() 779 P->getPrecedence() != prec::Assignment && in addTokenOnCurrentLine() 821 ((Previous.getPrecedence() != prec::Assignment && in addTokenOnCurrentLine() 1509 (Previous->getPrecedence() == prec::Assignment && in moveStatePastFakeLParens() 1533 PrecedenceLevel < prec::Assignment) && in moveStatePastFakeLParens() 1549 (Previous->getPrecedence() == prec::Assignment || in moveStatePastFakeLParens() 1588 (!SkipFirstExtraIndent && PrecedenceLevel > prec::Assignment && in moveStatePastFakeLParens()
|
| H A D | TokenAnnotator.cpp | 1672 if (Current.getPrecedence() != prec::Assignment) in modifyContext() 2547 Precedence == prec::Assignment && Current->is(tok::colon))) { in parse() 2615 return prec::Assignment; in getCurrentPrecedence() 2618 return prec::Assignment; in getCurrentPrecedence() 2622 return prec::Assignment; in getCurrentPrecedence() 2694 parse(prec::Assignment); in parseConditionalExpr() 2698 parse(prec::Assignment); in parseConditionalExpr() 3349 if (Level == prec::Assignment) in splitPenalty() 4265 Right.getPrecedence() == prec::Assignment) { in spaceRequiredBefore() 5006 Right.getPrecedence() != prec::Assignment)) { in canBreakBefore() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/ |
| H A D | CalledOnceCheck.cpp | 1497 void checkSuppression(const BinaryOperator *Assignment) { in checkSuppression() argument 1501 if (auto Index = getIndexOfExpression(Assignment->getLHS())) { in checkSuppression() 1506 Assignment->getRHS()->IgnoreParenCasts()->getIntegerConstantExpr( in checkSuppression()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/cp/ |
| H A D | operators.def | 136 /* Assignment operators. */
|
| /openbsd-src/gnu/gcc/gcc/cp/ |
| H A D | operators.def | 135 /* Assignment operators. */
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | jv-exp.y | 659 | Assignment 662 Assignment:
|
| H A D | CONTRIBUTE | 42 o Copyright Assignment
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perl5243delta.pod | 168 Assignment of hashes to, and deletion of, typeglobs named C<*::::::> no longer 174 Assignment variants of any bitwise ops under the C<bitwise> feature would crash
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | local.t | 619 "Assignment" => sub { $_ = "Bad" }, 0,
|
| /openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
| H A D | BugReporterVisitors.h | 129 Assignment, enumerator
|
| /openbsd-src/gnu/gcc/gcc/config/mt/ |
| H A D | ABI.txt | 113 Parameter Assignment to Registers
|
| /openbsd-src/gnu/gcc/gcc/config/iq2000/ |
| H A D | abi | 121 Parameter Assignment to Registers
|
| /openbsd-src/gnu/usr.bin/perl/t/comp/ |
| H A D | parser.t | 230 like( $@, qr/Assignment to both a list and a scalar/, 'Assignment to both a list and a scalar' );
|