Home
last modified time | relevance | path

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

12345678910>>...15

/openbsd/gnu/llvm/clang/lib/Analysis/FlowSensitive/
H A DWatchedLiteralsSolver.cpp45 using Variable = uint32_t; typedef
49 static constexpr Variable NullVar = 0;
84 const Variable LargestVar;
127 explicit BooleanFormula(Variable LargestVar, in BooleanFormula()
191 Variable NextVar = 1; in buildBooleanFormula()
197 Variable Var = NextVar; in buildBooleanFormula()
273 const Variable Var = GetVar(Val); in buildBooleanFormula()
405 std::vector<Variable> LevelVars;
438 std::vector<Variable> ActiveVars;
585 const Variable Var = LevelVars[Level]; in updateWatchedLiterals()
[all …]
/openbsd/gnu/llvm/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;
/openbsd/gnu/llvm/lldb/source/Symbol/
H A DVariable.cpp38 Variable::Variable(lldb::user_id_t uid, const char *name, const char *mangled, in Variable() function in Variable
52 Variable::~Variable() = default;
54 lldb::LanguageType Variable::GetLanguage() const { in GetLanguage()
71 ConstString Variable::GetName() const { in GetName()
80 bool Variable::NameMatches(ConstString name) const { in NameMatches()
96 Type *Variable::GetType() { in GetType()
192 size_t Variable::MemorySize() const { return sizeof(Variable); } in MemorySize()
194 CompilerDeclContext Variable::GetDeclContext() { in GetDeclContext()
201 CompilerDecl Variable::GetDecl() { in GetDecl()
272 bool Variable::IsInScope(StackFrame *frame) { in IsInScope()
[all …]
/openbsd/gnu/usr.bin/perl/t/lib/warnings/
H A Dpad7 Variable "%s" will not stay shared
137 Variable "$x" will not stay shared at - line 7.
159 Variable "$x" will not stay shared at - line 6.
173 Variable "$x" will not stay shared at - line 9.
194 Variable "$x" is not available at - line 5.
404 Variable "$è" is not available at - line 7.
415 Variable "$ニ" is not available at - line 7.
428 Variable "$に" will not stay shared at - line 9.
441 Variable "$に" will not stay shared at - line 8.
468 Variable "$に" is not available at - line 7.
[all …]
/openbsd/gnu/llvm/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h32 std::string lookup(StringRef Variable) const { in lookup() argument
33 return Expansions.lookup(Variable); in lookup()
38 const_iterator find(StringRef Variable) const { in find() argument
39 return Expansions.find(Variable); in find()
/openbsd/gnu/llvm/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h279 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()
633 if (CStyle && V->kind() == Variable::VK_SFun)
712 if (const auto *V = dyn_cast<Variable>(SAP->sfun())) { in printProject()
[all …]
H A DThreadSafetyTIL.h354 class Variable : public SExpr {
378 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function
666 Function(Variable *Vd, SExpr *Bd) in Function()
668 Vd->setKind(Variable::VK_Fun); in Function()
673 Vd->setKind(Variable::VK_Fun); in Function()
708 Variable *VarDecl;
717 SFunction(Variable *Vd, SExpr *B) in SFunction()
720 Vd->setKind(Variable::VK_SFun); in SFunction()
727 Vd->setKind(Variable::VK_SFun); in SFunction()
760 Variable *VarDecl;
[all …]
/openbsd/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DMCInstrDescView.h36 struct Variable { struct
120 const Operand &getPrimaryOperand(const Variable &Var) const;
158 const SmallVector<Variable, 4> Variables;
166 SmallVector<Variable, 4> Variables, const BitVector *ImplDefRegs,
H A DCodeTemplate.cpp44 MCOperand &InstructionTemplate::getValueFor(const Variable &Var) { in getValueFor()
48 const MCOperand &InstructionTemplate::getValueFor(const Variable &Var) const { in getValueFor()
61 return any_of(Instr->Variables, [this](const Variable &Var) { in hasImmediateVariables()
H A DMCInstrDescView.cpp20 unsigned Variable::getIndex() const { return *Index; } in getIndex()
22 unsigned Variable::getPrimaryOperandIndex() const { in getPrimaryOperandIndex()
27 bool Variable::hasTiedOperands() const { in hasTiedOperands()
95 SmallVector<Variable, 4> Variables, in Instruction() argument
112 SmallVector<Variable, 4> Variables; in create()
192 const Operand &Instruction::getPrimaryOperand(const Variable &Var) const { in getPrimaryOperand()
235 [](const Variable &Var) { return Var.hasTiedOperands(); }); in hasTiedRegisters()
H A DCodeTemplate.h34 MCOperand &getValueFor(const Variable &Var);
35 const MCOperand &getValueFor(const Variable &Var) const;
/openbsd/gnu/llvm/lldb/source/Core/
H A DValue.cpp188 case ContextType::Variable: // Variable * in ValueOf()
207 case ContextType::Variable: // Variable * in GetValueByteSize()
238 case ContextType::Variable: { in GetCompilerType()
239 Variable *variable = GetVariable(); in GetCompilerType()
265 case ContextType::Variable: { in GetValueDefaultFormat()
388 Variable *variable = GetVariable(); in GetValueAsData()
429 Variable *variable = GetVariable(); in GetValueAsData()
602 Variable *Value::GetVariable() { in GetVariable()
603 if (m_context_type == ContextType::Variable) in GetVariable()
604 return static_cast<Variable *>(m_context); in GetVariable()
[all …]
H A DValueObjectVariable.cpp130 Variable *variable = m_variable_sp.get(); in UpdateValue()
139 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
166 m_value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
233 value.SetContext(Value::ContextType::Variable, variable); in UpdateValue()
/openbsd/gnu/llvm/llvm/docs/CommandGuide/
H A Dllvm-debuginfo-analyzer.rst547 =Variable: A variable.
1804 [004] {Variable} 'Var_1' -> 'int'
1805 [004] {Variable} 'Var_2' -> 'int'
1811 [003] {Variable} 'Var_1' -> 'int'
1812 [004] {Variable} 'Var_2' -> 'int'
1818 [004] {Variable} 'Var_1' -> 'int'
1819 [003] 3 {Variable} 'Var_1' -> 'int'
1820 [005] {Variable} 'Var_2' -> 'int'
1821 [004] 5 {Variable} 'Var_2' -> 'int'
1827 [004] {Variable} 'Var_1' -> 'int'
[all …]
H A Dllvm-bcanalyzer.rst87 Ths size, in bytes, of the Global Variable Definitions and their initializers.
197 The total number of 32-bit integers encoded using the Variable Bit Rate
202 The total number of 64-bit integers encoded using the Variable Bit Rate encoding
208 the Variable Bit Rate encoding scheme.
213 integers had they not been compressed with the Variable Bit Rage encoding
218 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
278 integers that use the Variable Bit Rate encoding scheme.
283 the 32-bit and 64-bit integers had they not been compressed with the Variable
288 The total number of bytes saved in this function by using the Variable Bit
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dinline14.C8 enum TYPE { Variable, Constant } type; enumerator
14 case Variable: in printTo()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DValue.h33 class Variable; variable
65 Variable enumerator
126 Variable *GetVariable();
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/llvm/lib/CodeGen/
H A DStackFrameLayoutAnalysisPass.cpp55 Variable, // a slot used to store a local data (could be a tmp) enumerator
75 SlotTy = SlotType::Variable; in SlotData()
120 case SlotType::Variable: in getTypeString()
/openbsd/gnu/usr.bin/perl/t/lib/strict/
H A Dvars80 Variable "$joe" is not imported at - line 8.
95 Variable "$jòè" is not imported at - line 10.
140 Variable "$joe" is not imported at ./abc line 2.
157 Variable "$jòè" is not imported at ./abc line 4.
170 Variable "$joe" is not imported at abc.pm line 2.
188 Variable "$jòè" is not imported at abc.pm line 4.
267 Variable "$joe" is not imported at - line 9.
283 Variable "$jòè" is not imported at - line 11.
396 Variable "$fred" is not imported at - line 8.
411 Variable "$frèd" is not imported at - line 10.
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DCombinationGenerator.h83 for (WrappingIterator<choice_type> &Variable : in performGeneration()
85 bool Wrapped = Variable.advance(); in performGeneration()
/openbsd/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DMachineIRBuilder.cpp50 MachineIRBuilder::buildDirectDbgValue(Register Reg, const MDNode *Variable, in buildDirectDbgValue() argument
52 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildDirectDbgValue()
55 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) && in buildDirectDbgValue()
59 /*IsIndirect*/ false, Reg, Variable, Expr)); in buildDirectDbgValue()
63 MachineIRBuilder::buildIndirectDbgValue(Register Reg, const MDNode *Variable, in buildIndirectDbgValue() argument
65 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildIndirectDbgValue()
72 /*IsIndirect*/ true, Reg, Variable, Expr)); in buildIndirectDbgValue()
78 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildFIDbgValue()
86 .addMetadata(Variable) in buildFIDbgValue()
93 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildConstDbgValue()
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp35 static Variable::RangeList
44 Variable::RangeList result; in MakeRangeList()
88 const Variable::RangeList &ranges) { in AddMemberLocationRanges()
144 const Variable::RangeList &ranges) { in AddDwarfRange()
663 const Variable::RangeList &ranges) { in GetCorrespondingFrameData()
667 using RangeListEntry = Variable::RangeList::Entry; in GetCorrespondingFrameData()
696 const Variable::RangeList &ranges, in GetFrameDataProgram()
792 Variable::RangeList raw_ranges = in GetVariableLocationInfo()
831 Variable::RangeList raw_ranges = in GetVariableLocationInfo()
846 Variable::RangeList raw_ranges = in GetVariableLocationInfo()
[all …]
/openbsd/gnu/llvm/clang/utils/TableGen/
H A DNeonEmitter.cpp289 class Variable { class
294 Variable() : T(Type::getVoid()) {} in Variable() function in __anon28c10cfc0111::Variable
339 std::map<std::string, Variable> Variables;
351 Variable RetVar;
511 void emitReverseVariable(Variable &Dest, Variable &Src);
1163 Variable &V = Variables[Name]; in emitPrototype()
1195 void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) { in emitReverseVariable()
1228 Variable &V = Variables[Name]; in emitArgumentReversal()
1277 Variable &V = Variables[Name]; in emitShadowedArgs()
1316 Variable &V = Variables["p" + utostr(I)]; in emitBodyAsBuiltinCall()
[all …]

12345678910>>...15