Home
last modified time | relevance | path

Searched refs:Variable (Results 1 – 25 of 191) sorted by relevance

12345678

/freebsd-src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DWatchedLiteralsSolver.cpp35 llvm::DenseMap<Variable, Atom> Atomics;
70 std::vector<Variable> LevelVars;
97 /// The element at index 0 isn't used. Variable assignments start from the
103 std::vector<Variable> ActiveVars;
138 for (Variable Var = CNF.largestVar(); Var != NullVar; --Var) { in CNFFormula()
169 const Variable ActiveVar = ActiveVars[I];
189 const Variable Var = LevelVars[Level];
265 const Variable Var = LevelVars[Level]; in buildCNF()
278 const Variable Var = LevelVars[Level]; in buildCNF()
297 const Variable NewWatchedLitVa in buildCNF()
48 using Variable = uint32_t; global() typedef
[all...]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariable.h25 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-src/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp1 //===-- Variable.cpp ------------------------------------------------------===//
9 #include "lldb/Symbol/Variable.h"
40 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, in Variable()
54 Variable::~Variable() = default; in GetLanguage()
56 lldb::LanguageType Variable::GetLanguage() const { in GetLanguage()
73 ConstString Variable::GetName() const { in GetName()
80 ConstString Variable::GetUnqualifiedName() const { return m_name; } in NameMatches()
82 bool Variable in NameMatches()
38 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, Variable() function in Variable
[all...]
/freebsd-src/contrib/bmake/unit-tests/
H A Dcond-undef-lint.exp1 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 Dvar-recursive.exp2 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 Dopt-debug-lint.exp1 make: "opt-debug-lint.mk" line 21: Variable "X" is undefined
3 make: "opt-debug-lint.mk" line 45: Variable "UNDEF" is undefined
/freebsd-src/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h
/freebsd-src/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugProgramInstruction.h284 DbgRecordParamRef<DILocalVariable> Variable;
298 DbgVariableRecord(Metadata *Value, DILocalVariable *Variable, in setAddressExpression()
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; }
436 DILocalVariable *getVariable() const { return Variable.get(); };
437 MDNode *getRawVariable() const { return Variable.getAsMDNode(); }
485 return std::tie(Type, DebugValues, Variable, Expressio
84 DILocalVariable *Variable; global() variable
[all...]
/freebsd-src/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h200 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 DThreadSafetyTIL.h355 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-src/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp204 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 *variable = GetVariable(); in GetValueAsData()
618 Variable *Value::GetVariable() { in GetVariable()
619 if (m_context_type == ContextType::Variable) in GetVariable()
620 return static_cast<Variable *>(m_context); in GetVariable()
[all …]
H A DValueObjectVariable.cpp22 #include "lldb/Symbol/Variable.h"
134 Variable *variable = m_variable_sp.get(); in UpdateValue()
143 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
173 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
237 // Copy the Value and set the context to use our Variable so it can in UpdateValue()
240 value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
/freebsd-src/contrib/llvm-project/llvm/lib/IR/
H A DDebugProgramInstruction.cpp34 Variable(DVI->getVariable()), Expression(DVI->getExpression()),
60 Type(DVR.getType()), Variable(DVR.getVariable()), in deleteInstr()
68 Type(Type), Variable(DV), Expression(Expr) {} in createDPValue()
70 DbgVariableRecord::DbgVariableRecord(Metadata *Value, DILocalVariable *Variable, in createDPValue()
76 Type(LocationType::Assign), Variable(Variable), Expression(Expression), in createDPVDeclare()
162 Metadata *Val, MDNode *Variable, in getAsMetadata()
167 DebugValueUser({Val, Address, AssignID}), Type(Type), Variable(Variable), in replaceVariableLocationOp()
171 DbgVariableRecord::LocationType Type, Metadata *Val, MDNode *Variable, in replaceVariableLocationOp()
52 DPValue(Metadata * Value,DILocalVariable * Variable,DIExpression * Expression,DIAssignID * AssignID,Metadata * Address,DIExpression * AddressExpression,const DILocation * DI) DPValue() argument
90 createDPVAssign(Value * Val,DILocalVariable * Variable,DIExpression * Expression,DIAssignID * AssignID,Value * Address,DIExpression * AddressExpression,const DILocation * DI) createDPVAssign() argument
100 createLinkedDPVAssign(Instruction * LinkedInstr,Value * Val,DILocalVariable * Variable,DIExpression * Expression,Value * Address,DIExpression * AddressExpression,const DILocation * DI) createLinkedDPVAssign() argument
[all...]
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/
H A DValue.h33 class Variable; variable
65 Variable enumerator
126 Variable *GetVariable();
/freebsd-src/contrib/llvm-project/clang/include/clang/Analysis/
H A DCloneDetection.h385 const VarDecl *Variable; member
392 SuspiciousCloneInfo(const VarDecl *Variable, const Stmt *Mention, in SuspiciousCloneInfo()
394 : Variable(Variable), Mention(Mention), Suggestion(Suggestion) {} in SuspiciousCloneInfo()
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyTIL.cpp84 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-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackFrameLayoutAnalysisPass.cpp57 Variable, // a slot used to store a local data (could be a tmp)
85 SlotTy = SlotType::Variable; in getPassName()
91 // correctly. Variable sized slots are sorted to the end of the list, as in getAnalysisUsage()
145 case SlotType::Variable: in emitStackSlotRemark()
146 return "Variable"; in emitStackSlotRemark()
55 Variable, // a slot used to store a local data (could be a tmp) global() enumerator
/freebsd-src/contrib/tcsh/nls/C/
H A Dset132 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-src/contrib/bc/locales/
H A Dde_AT.ISO8859-1.msg61 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 Dde_AT.ISO8859-15.msg61 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 Dde_CH.ISO8859-1.msg61 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 Dde_DE.ISO8859-1.msg61 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 Dde_DE.utf8.msg61 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 Dde_DE.ISO8859-15.msg61 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 Dde_AT.UTF-8.msg61 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"

12345678