/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
H A D | CNFFormula.cpp | 78 const Variable v = var(lit); in addClause() 93 llvm::DenseSet<Variable> trueVars; 94 llvm::DenseSet<Variable> falseVars; 99 CNFFormula::CNFFormula(Variable LargestVar) in CNFFormula() 117 llvm::DenseMap<Variable, Atom> &Atomics) { in buildCNF() argument 125 llvm::DenseMap<const Formula *, Variable> FormulaToVar; in buildCNF() 127 Variable NextVar = 1; in buildCNF() 133 Variable Var = NextVar; in buildCNF() 171 const Variable Var = GetVar(F); in buildCNF() 184 const Variable LHS = GetVar(F->operands()[0]); in buildCNF() [all …]
|
H A D | WatchedLiteralsSolver.cpp | 35 llvm::DenseMap<Variable, Atom> Atomics; 70 std::vector<Variable> LevelVars; 103 std::vector<Variable> ActiveVars; 138 for (Variable Var = CNF.largestVar(); Var != NullVar; --Var) { in WatchedLiteralsSolverImpl() 169 const Variable ActiveVar = ActiveVars[I]; in solve() 189 const Variable Var = LevelVars[Level]; in solve() 265 const Variable Var = LevelVars[Level]; in reverseForcedMoves() 278 const Variable Var = LevelVars[Level]; in updateWatchedLiterals() 297 const Variable NewWatchedLitVar = var(NewWatchedLit); in updateWatchedLiterals() 356 Assignment decideAssignment(Variable Var) const { in decideAssignment() [all …]
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/ |
H A D | CNFFormula.h | 25 using Variable = uint32_t; variable 29 constexpr Variable NullVar = 0; 49 inline constexpr Literal posLit(Variable V) { return 2 * V; } in posLit() 52 inline constexpr Literal negLit(Variable V) { return 2 * V + 1; } in negLit() 64 inline constexpr Variable var(Literal L) { return L >> 1; } in var() 71 const Variable LargestVar; 100 explicit CNFFormula(Variable LargestVar); 115 Variable largestVar() const { return LargestVar; } in largestVar() 174 llvm::DenseMap<Variable, Atom> &Atomics);
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | Variable.cpp | 40 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, in Variable() function in Variable 54 Variable::~Variable() = default; 56 lldb::LanguageType Variable::GetLanguage() const { in GetLanguage() 73 ConstString Variable::GetName() const { in GetName() 80 ConstString Variable::GetUnqualifiedName() const { return m_name; } in GetUnqualifiedName() 82 bool Variable::NameMatches(ConstString name) const { in NameMatches() 90 bool Variable::NameMatches(const RegularExpression ®ex) const { in NameMatches() 98 Type *Variable::GetType() { in GetType() 104 void Variable::Dump(Stream *s, bool show_context) const { in Dump() 170 bool Variable::DumpDeclaration(Stream *s, bool show_fullpaths, in DumpDeclaration() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | Variable.h | 25 class Variable : public UserID, public std::enable_shared_from_this<Variable> { 32 Variable(lldb::user_id_t uid, const char *name, const char *mangled, 39 virtual ~Variable(); 145 Variable(const Variable &rhs) = delete; 146 Variable &operator=(const Variable &rhs) = delete;
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | cond-undef-lint.exp | 1 make: "cond-undef-lint.mk" line 25: Variable "UNDEF" is undefined 3 make: "cond-undef-lint.mk" line 43: Variable "UNDEF" is undefined 4 make: "cond-undef-lint.mk" line 43: Variable "VAR." is undefined 6 make: "cond-undef-lint.mk" line 56: Variable "VAR.defined" is undefined
|
H A D | var-recursive.exp | 2 make: Variable DIRECT is recursive. 7 make: Variable INDIRECT1 is recursive. 13 make: Variable V is recursive. 19 In a command near "var-recursive.mk" line 57: make[1]: Variable VAR is recursive.
|
H A D | opt-debug-lint.exp | 1 make: "opt-debug-lint.mk" line 21: Variable "X" is undefined 3 make: "opt-debug-lint.mk" line 45: Variable "UNDEF" is undefined
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | CodeExpansions.h | 36 std::string lookup(StringRef Variable) const { in lookup() argument 37 return Expansions.lookup(Variable); in lookup() 42 const_iterator find(StringRef Variable) const { in find() argument 43 return Expansions.find(Variable); in find()
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/ |
H A D | ThreadSafetyTraverse.h | 200 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) { in reduceFunction() 204 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) { in reduceSFunction() 279 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) { in reduceLet() 283 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; } in enterScope() 284 void exitScope(const Variable &Orig) {} in exitScope() 290 Variable *reduceVariableRef(Variable *Ovd) { return Ovd; } in reduceVariableRef() 348 void enterScope(const Variable *V1, const Variable *V2) {} in enterScope() 351 bool compareVariableRefs(const Variable *V1, const Variable *V2) { in compareVariableRefs() 386 void enterScope(const Variable* V1, const Variable* V2) {} in enterScope() 389 bool compareVariableRefs(const Variable* V1, const Variable* V2) { in compareVariableRefs() [all …]
|
H A D | ThreadSafetyTIL.h | 355 class Variable : public SExpr { 368 Variable(StringRef s, SExpr *D = nullptr) 373 Variable(SExpr *D, const ValueDecl *Cvd = nullptr) 379 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function 413 typename C::CType compare(const Variable* E, C& Cmp) const { in compare() 675 Function(Variable *Vd, SExpr *Bd) in Function() 677 Vd->setKind(Variable::VK_Fun); in Function() 680 Function(const Function &F, Variable *Vd, SExpr *Bd) // rewrite constructor in Function() 682 Vd->setKind(Variable::VK_Fun); in Function() 687 Variable *variableDecl() { return VarDecl; } in variableDecl() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugProgramInstruction.h | 284 DbgRecordParamRef<DILocalVariable> Variable; variable 298 DbgVariableRecord(Metadata *Value, DILocalVariable *Variable, 308 DbgVariableRecord(LocationType Type, Metadata *Val, MDNode *Variable, 322 MDNode *Variable, MDNode *Expression, 327 createDVRAssign(Value *Val, DILocalVariable *Variable, 333 DILocalVariable *Variable, DIExpression *Expression, 435 void setVariable(DILocalVariable *NewVar) { Variable = NewVar; } in setVariable() 436 DILocalVariable *getVariable() const { return Variable.get(); }; in getVariable() 437 MDNode *getRawVariable() const { return Variable.getAsMDNode(); } in getRawVariable() 485 return std::tie(Type, DebugValues, Variable, Expression, in isIdenticalToWhenDefined() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DebugProgramInstruction.cpp | 34 Variable(DVI->getVariable()), Expression(DVI->getExpression()), 60 Type(DVR.getType()), Variable(DVR.getVariable()), in DbgVariableRecord() 68 Type(Type), Variable(DV), Expression(Expr) {} 70 DbgVariableRecord::DbgVariableRecord(Metadata *Value, DILocalVariable *Variable, in DbgVariableRecord() argument 76 Type(LocationType::Assign), Variable(Variable), Expression(Expression), 162 Metadata *Val, MDNode *Variable, in DbgVariableRecord() argument 167 DebugValueUser({Val, Address, AssignID}), Type(Type), Variable(Variable), in DbgVariableRecord() 171 DbgVariableRecord::LocationType Type, Metadata *Val, MDNode *Variable, in createUnresolvedDbgVariableRecord() argument 174 return new DbgVariableRecord(Type, Val, Variable, Expression, AssignID, in createUnresolvedDbgVariableRecord() 212 Value *Val, DILocalVariable *Variable, DIExpression *Expression, in createDVRAssign() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Value.cpp | 17 #include "lldb/Symbol/Variable.h" 204 case ContextType::Variable: // Variable * in ValueOf() 223 case ContextType::Variable: // Variable * in GetValueByteSize() 254 case ContextType::Variable: { in GetCompilerType() 255 Variable *variable = GetVariable(); in GetCompilerType() 281 case ContextType::Variable: { in GetValueDefaultFormat() 404 Variable *variable = GetVariable(); in GetValueAsData() 445 Variable *variabl in GetValueAsData() [all...] |
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Value.h | 33 class Variable; variable 64 /// lldb_private::Variable *. 65 Variable enumerator 126 Variable *GetVariable();
|
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
H A D | CloneDetection.h | 385 const VarDecl *Variable; member 392 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo() 394 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | ThreadSafetyTIL.cpp | 84 if (const auto *V = dyn_cast<Variable>(E)) { in getCanonicalVal() 85 if (V->kind() == Variable::VK_Let) { in getCanonicalVal() 106 if (auto *V = dyn_cast<Variable>(E)) { in simplifyToCanonicalVal() 107 if (V->kind() != Variable::VK_Let) in simplifyToCanonicalVal()
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set1 | 32 30 Variable name must begin with a letter 33 31 Variable name too long 34 32 Variable name must contain alphanumeric characters 89 87 Variable syntax
|
/freebsd/contrib/bc/locales/ |
H A D | de_CH.utf8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_DE.UTF-8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_AT.ISO8859-1.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_AT.ISO8859-15.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_AT.UTF-8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_AT.utf8.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|
H A D | de_CH.ISO8859-1.msg | 61 11 "keine automatische Variable gefunden" 62 12 "Funktionsparameter oder Variable \"%s%s\" existiert bereits" 65 15 "Variable kann keine Referenz sein: %s" 90 6 "Variable oder Feld-Element hat den falschen Typ"
|