| /openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/ |
| H A D | WatchedLiteralsSolver.cpp | 45 using Variable = uint32_t; typedef 49 static constexpr Variable NullVar = 0; 62 static constexpr Literal posLit(Variable V) { return 2 * V; } in posLit() 65 static constexpr Literal negLit(Variable V) { return 2 * V + 1; } in negLit() 71 static constexpr Variable var(Literal L) { return L >> 1; } in var() 84 const Variable LargestVar; 125 llvm::DenseMap<Variable, AtomicBoolValue *> Atomics; 127 explicit BooleanFormula(Variable LargestVar, in BooleanFormula() 128 llvm::DenseMap<Variable, AtomicBoolValue *> Atomics) in BooleanFormula() 188 llvm::DenseMap<BoolValue *, Variable> SubValsToVar; in buildBooleanFormula() [all …]
|
| /openbsd-src/gnu/llvm/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;
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | Variable.cpp | 38 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() 78 ConstString Variable::GetUnqualifiedName() const { return m_name; } in GetUnqualifiedName() 80 bool Variable::NameMatches(ConstString name) const { in NameMatches() 88 bool Variable::NameMatches(const RegularExpression ®ex) const { in NameMatches() 96 Type *Variable::GetType() { in GetType() 102 void Variable::Dump(Stream *s, bool show_context) const { in Dump() 168 bool Variable::DumpDeclaration(Stream *s, bool show_fullpaths, in DumpDeclaration() [all …]
|
| /openbsd-src/gnu/usr.bin/perl/t/lib/warnings/ |
| H A D | pad | 7 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. 213 Variable "$x" is not available at (eval 1) line 1. 235 Variable "$x" is not available at (eval 1) line 1. 245 Variable "$x" is not available at (eval 1) line 1. 254 Variable "$x" is not available at (eval 4) line 1. 404 Variable "$è" is not available at - line 7. [all …]
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/GlobalISel/ |
| H A D | CodeExpansions.h | 32 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-src/gnu/llvm/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 | 354 class Variable : public SExpr { 367 Variable(StringRef s, SExpr *D = nullptr) 372 Variable(SExpr *D, const ValueDecl *Cvd = nullptr) 378 Variable(const Variable &Vd, SExpr *D) // rewrite constructor in Variable() function 412 typename C::CType compare(const Variable* E, C& Cmp) const { in compare() 666 Function(Variable *Vd, SExpr *Bd) in Function() 668 Vd->setKind(Variable::VK_Fun); in Function() 671 Function(const Function &F, Variable *Vd, SExpr *Bd) // rewrite constructor in Function() 673 Vd->setKind(Variable::VK_Fun); in Function() 678 Variable *variableDecl() { return VarDecl; } in variableDecl() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| H A D | MCInstrDescView.h | 36 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 D | CodeTemplate.cpp | 44 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 D | MCInstrDescView.cpp | 20 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 D | CodeTemplate.h | 34 MCOperand &getValueFor(const Variable &Var); 35 const MCOperand &getValueFor(const Variable &Var) const;
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | Value.cpp | 188 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 D | ValueObjectVariable.cpp | 130 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-src/gnu/llvm/llvm/docs/CommandGuide/ |
| H A D | llvm-debuginfo-analyzer.rst | 547 =Variable: A variable. 770 [004] 5 {Variable} 'CONSTANT' -> 'const INTEGER' 838 [004] 5 {Variable} 'CONSTANT' -> 'const INTEGER' 880 [004] 5 {Variable} 'CONSTANT' -> 'const INTEGER' 887 [004] 5 {Variable} 'CONSTANT' -> 'const INTEGER' 930 [004] 5 {Variable} 'CONSTANT' -> 'const INTEGER' 1205 [004] {Variable} 'Added' -> 'float' 1211 [003] {Variable} 'Value' -> 'int' 1227 [003] {Variable} 'Input' -> 'float' 1232 [005] {Variable} 'Added' -> 'float' [all …]
|
| H A D | llvm-bcanalyzer.rst | 87 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-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| H A D | inline14.C | 8 enum TYPE { Variable, Constant } type; enumerator 14 case Variable: in printTo()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Core/ |
| H A D | Value.h | 33 class Variable; variable 65 Variable enumerator 126 Variable *GetVariable();
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | StackFrameLayoutAnalysisPass.cpp | 55 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-src/gnu/usr.bin/perl/t/lib/strict/ |
| H A D | vars | 80 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-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | CombinationGenerator.h | 83 for (WrappingIterator<choice_type> &Variable : in performGeneration() 85 bool Wrapped = Variable.advance(); in performGeneration()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | MachineIRBuilder.cpp | 50 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() 68 cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(getDL()) && in buildIndirectDbgValue() 72 /*IsIndirect*/ true, Reg, Variable, Expr)); in buildIndirectDbgValue() 76 const MDNode *Variable, in buildFIDbgValue() argument 78 assert(isa<DILocalVariable>(Variable) && "not a variable"); in buildFIDbgValue() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbUtil.cpp | 35 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-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 289 class Variable { class 294 Variable() : T(Type::getVoid()) {} in Variable() function in __anoncfaa73c60111::Variable 295 Variable(Type T, std::string N) : T(std::move(T)), N(std::move(N)) {} in Variable() function in __anoncfaa73c60111::Variable 339 std::map<std::string, Variable> Variables; 351 Variable RetVar; 511 void emitReverseVariable(Variable &Dest, Variable &Src); 1138 Variables[Name] = Variable(Types[I], Name + VariablePostfix); in initVariables() 1140 RetVar = Variable(Types[0], "ret" + VariablePostfix); in initVariables() 1163 Variable &V = Variables[Name]; in emitPrototype() 1195 void Intrinsic::emitReverseVariable(Variable &Dest, Variable &Src) { in emitReverseVariable() [all …]
|