Home
last modified time | relevance | path

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

12345678910>>...17

/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/
H A DREADME.md163 step 7 (Variable is optimized away and not available.)
164 step 8 (Variable is optimized away and not available.)
165 step 11 (Variable is optimized away and not available.)
166 step 14 (Variable is optimized away and not available.)
167 step 17 (Variable is optimized away and not available.)
168 step 20 (Variable is optimized away and not available.)
169 step 23 (Variable is optimized away and not available.)
178 step 12 (Variable is optimized away and not available.)
179 step 14 (Variable is optimized away and not available.)
246 step 7 (Variable is optimized away and not available.)
[all …]
/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/IR/
H A Dmemory-ops.mlir50 %1 = spv.Variable : !spv.ptr<f32, Function>
156 %0 = spv.Variable : !spv.ptr<f32, Function>
164 %0 = spv.Variable : !spv.ptr<f32, Function>
172 %0 = spv.Variable : !spv.ptr<f32, Function>
180 %0 = spv.Variable : !spv.ptr<f32, Function>
188 %0 = spv.Variable : !spv.ptr<f32, Function>
198 %0 = spv.Variable : !spv.ptr<f32, Function>
207 %0 = spv.Variable : !spv.ptr<f32, Function>
216 %0 = spv.Variable : !spv.ptr<f32, Function>
482 // spv.Variable
[all …]
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/PDB/
H A Dvariables.test14 GLOBALS-DAG: Variable{{.*}}, name = "g_IntVar"
16 GLOBALS-DAG: Variable{{.*}}, name = "g_pConst"
18 GLOBALS-DAG: Variable{{.*}}, name = "same_name_var"
22 GLOBALS-DAG: Variable{{.*}}, name = "g_EnumVar"
24 GLOBALS-DAG: Variable{{.*}}, name = "g_tls"
26 GLOBALS-DAG: Variable{{.*}}, name = "ClassVar"
28 GLOBALS-DAG: Variable{{.*}}, name = "g_Const"
34 FUNC-F-NEXT: Variable{{.*}}, name = "var_arg1"
36 FUNC-F-NEXT: Variable{{.*}}, name = "var_arg2"
51 FUNC-MAIN-NEXT: Variable{{.*}}, name = "a"
[all …]
H A Dpointers.test24 MAIN: Variable{{.*}}, name = "array_pointer"
26 MAIN: Variable{{.*}}, name = "p_int"
28 MAIN: Variable{{.*}}, name = "p_member_field"
30 MAIN: Variable{{.*}}, name = "p_member_method"
35 F: Variable{{.*}}, name = "this"
37 F: Variable{{.*}}, name = "x"
/llvm-project-15.0.7/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()
268 const Variable Var = GetVar(Val); in buildBooleanFormula()
400 std::vector<Variable> LevelVars;
433 std::vector<Variable> ActiveVars;
580 const Variable Var = LevelVars[Level]; in updateWatchedLiterals()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DConstCorrectnessCheck.cpp129 if (Variable->getType()->isReferenceType()) in check()
131 if (Variable->getType()->isPointerType()) in check()
133 if (Variable->getType()->isArrayType()) { in check()
146 Variable->getType()->getPointeeType()->isPointerType() && in check()
160 if (ScopesCache[LocalScope]->isMutated(Variable)) in check()
163 auto Diag = diag(Variable->getBeginLoc(), in check()
165 << Variable << Variable->getType(); in check()
167 TemplateDiagnosticsCache.insert(Variable->getBeginLoc()); in check()
178 Diag << addQualifierToVarDecl(*Variable, *Result.Context, in check()
187 Diag << addQualifierToVarDecl(*Variable, *Result.Context, in check()
[all …]
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/NativePDB/
H A Dinline_sites.test60 # CHECK-NEXT: Variable: id = {{.*}}, name = "argc", type = "int", valid ranges = [0x00000001400010…
61 # CHECK-NEXT: Variable: id = {{.*}}, name = "argv", type = "char **", valid ranges = [0x0000000140…
71 # CHECK-NEXT: Variable: id = {{.*}}, name = "argc", type = "int", valid ranges = [0x00000001400010…
72 # CHECK-NEXT: Variable: id = {{.*}}, name = "argv", type = "char **", valid ranges = [0x0000000140…
83 # CHECK-NEXT: Variable: id = {{.*}}, name = "argc", type = "int", valid ranges = [0x00000001400010…
84 # CHECK-NEXT: Variable: id = {{.*}}, name = "argv", type = "char **", valid ranges = [0x0000000140…
96 # CHECK-NEXT: Variable: id = {{.*}}, name = "x", type = "int", valid ranges = [0x000000014000101c-…
99 # CHECK-NEXT: Variable: id = {{.*}}, name = "argc", type = "int", valid ranges = [0x00000001400010…
114 # CHECK-NEXT: Variable: id = {{.*}}, name = "x", type = "int", valid ranges = [0x000000014000102a-…
118 # CHECK-NEXT: Variable: id = {{.*}}, name = "argc", type = "int", valid ranges = [0x00000001400010…
[all …]
/llvm-project-15.0.7/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;
/llvm-project-15.0.7/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 …]
/llvm-project-15.0.7/lldb/test/Shell/SymbolFile/DWARF/x86/
H A Ddebug_loc.s21 # ALL-RANGES: Variable: id = {{.*}}, name = "x1", type = "int", valid ranges = <block>, location = …
24 # ALL-RANGES: Variable: id = {{.*}}, name = "x1", type = "int", valid ranges = <block>, location = …
28 # CHECK: Variable: {{.*}}, name = "x0", type = "int", valid ranges = <block>, location = [0x0000000…
29 # CHECK: Variable: {{.*}}, name = "x1", type = "int", valid ranges = <block>, location = <empty>,
32 # CHECK: Variable: {{.*}}, name = "x0", type = "int", valid ranges = <block>, location = [0x0000000…
33 # CHECK: Variable: {{.*}}, name = "x1", type = "int", valid ranges = <block>, location = <empty>,
39 # CHECK: Variable{{.*}}, name = "x0", {{.*}}, scope = parameter, location =
42 # CHECK: Variable{{.*}}, name = "x1", {{.*}}, scope = parameter
43 # CHECK: Variable{{.*}}, name = "x2", {{.*}}, scope = parameter
44 # CHECK: Variable{{.*}}, name = "x3", {{.*}}, scope = parameter, location =
[all …]
H A Ddwp.s15 # CHECK: Variable: {{.*}}, name = "x", type = "int", valid ranges = <block>, location = [0x00000000…
19 # SYMBOLS-NEXT: Variable{{.*}}, name = "A", {{.*}}, location = DW_OP_GNU_addr_index 0x0
22 # SYMBOLS-NEXT: Variable{{.*}}, name = "x", {{.*}}, location =
26 # SYMBOLS-NEXT: Variable{{.*}}, name = "A", {{.*}}, location = DW_OP_GNU_addr_index 0x2
29 # SYMBOLS-NEXT: Variable{{.*}}, name = "x", {{.*}}, location =
33 # SYMBOLS-NEXT: Variable{{.*}}, name = "A", {{.*}}, location = DW_OP_GNU_addr_index 0x4
36 # SYMBOLS-NEXT: Variable{{.*}}, name = "x", {{.*}}, location =
40 # SYMBOLS-NEXT: Variable{{.*}}, name = "A", {{.*}}, location = DW_OP_GNU_addr_index 0x6
43 # SYMBOLS-NEXT: Variable{{.*}}, name = "x", {{.*}}, location =
/llvm-project-15.0.7/mlir/test/Conversion/SPIRVToLLVM/
H A Dmemory-ops-to-llvm.mlir96 %0 = spv.Variable : !spv.ptr<f32, Function>
104 %0 = spv.Variable : !spv.ptr<f32, Function>
112 %0 = spv.Variable : !spv.ptr<f32, Function>
120 %0 = spv.Variable : !spv.ptr<f32, Function>
128 %0 = spv.Variable : !spv.ptr<f32, Function>
140 %0 = spv.Variable : !spv.ptr<f32, Function>
156 %0 = spv.Variable : !spv.ptr<f32, Function>
164 %0 = spv.Variable : !spv.ptr<f32, Function>
172 %0 = spv.Variable : !spv.ptr<f32, Function>
179 // spv.Variable
[all …]
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/altera/
H A DIdDependentBackwardBranchCheck.cpp116 const VarDecl *Variable) { in saveIdDepVar() argument
118 IdDepVarsMap[Variable] = in saveIdDepVar()
119 IdDependencyRecord(Variable, Variable->getBeginLoc(), in saveIdDepVar()
121 Variable->getNameAsString()); in saveIdDepVar()
201 const auto *Variable = Result.Nodes.getNodeAs<VarDecl>("tid_dep_var"); in check() local
211 if (Statement && (Variable || Field)) { in check()
212 if (Variable) in check()
213 saveIdDepVar(Statement, Variable); in check()
/llvm-project-15.0.7/flang/include/flang/Lower/
H A DConvertVariable.h34 struct Variable;
48 void instantiateVariable(AbstractConverter &, const pft::Variable &var,
55 void defineModuleVariable(AbstractConverter &, const pft::Variable &var);
69 void mapSymbolAttributes(AbstractConverter &, const pft::Variable &, SymMap &,
/llvm-project-15.0.7/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()
630 if (CStyle && V->kind() == Variable::VK_SFun)
709 if (const auto *V = dyn_cast<Variable>(SAP->sfun())) { in printProject()
[all …]
/llvm-project-15.0.7/clang/test/Modules/
H A Dno-linkage.cpp12 enum { Variable }; // expected-note {{candidate}} enumerator
37 use(Variable); in use_things()
52 use(Variable); // expected-error {{ambiguous}} in use_things_again()
/llvm-project-15.0.7/mlir/test/Conversion/MemRefToSPIRV/
H A Dalloca.mlir13 // CHECK: %[[VAR:.+]] = spv.Variable : !spv.ptr<!spv.struct<(!spv.array<20 x f32>)>, Functi…
31 // CHECK-DAG: spv.Variable : !spv.ptr<!spv.struct<(!spv.array<6 x i32>)>, Function>
32 // CHECK-DAG: spv.Variable : !spv.ptr<!spv.struct<(!spv.array<20 x f32>)>, Function>
45 // CHECK-DAG: spv.Variable : !spv.ptr<!spv.struct<(!spv.array<2 x vector<2xi32>>)>, Function>
46 // CHECK-DAG: spv.Variable : !spv.ptr<!spv.struct<(!spv.array<4 x vector<4xf32>>)>, Function>
/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/Transforms/
H A Dcanonicalize.mlir9 // CHECK-NEXT: %[[VAR:.*]] = spv.Variable
24 // CHECK-NEXT: %[[VAR:.*]] = spv.Variable
43 // CHECK-NEXT: %[[VAR_0:.*]] = spv.Variable
44 // CHECK-NEXT: %[[VAR_1:.*]] = spv.Variable
131 %0 = spv.Variable : !spv.ptr<vector<3xi32>, Function>
494 %3 = spv.Variable init(%0) : !spv.ptr<i32, Function>
525 %3 = spv.Variable init(%0) : !spv.ptr<vector<3xi32>, Function>
559 %3 = spv.Variable init(%0) : !spv.ptr<vector<3xi32>, Function>
561 %4 = spv.Variable init(%0) : !spv.ptr<vector<3xi32>, Function>
598 %3 = spv.Variable init(%0) : !spv.ptr<vector<3xi32>, Function>
[all …]
/llvm-project-15.0.7/clang/test/AST/
H A Dast-dump-stmt.cpp13 int Variable; variable
16 using n::Variable;
20 Variable = 4; in TestFunction()
H A Dast-dump-stmt-json.cpp5 int Variable; variable
8 using n::Variable;
11 Variable = 4; in TestFunction()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DAvoidNonConstGlobalVariablesCheck.cpp50 if (const auto *Variable = in check() local
52 diag(Variable->getLocation(), "variable %0 is non-const and globally " in check()
54 << Variable; // FIXME: Add fix-it hint to Variable in check()
/llvm-project-15.0.7/llvm/tools/llvm-exegesis/lib/
H A DMCInstrDescView.h37 struct Variable { struct
122 const Operand &getPrimaryOperand(const Variable &Var) const;
160 const SmallVector<Variable, 4> Variables;
168 SmallVector<Variable, 4> Variables, const BitVector *ImplDefRegs,
/llvm-project-15.0.7/lldb/source/Core/
H A DValue.cpp187 case ContextType::Variable: // Variable * in ValueOf()
206 case ContextType::Variable: // Variable * in GetValueByteSize()
237 case ContextType::Variable: { in GetCompilerType()
238 Variable *variable = GetVariable(); in GetCompilerType()
264 case ContextType::Variable: { in GetValueDefaultFormat()
387 Variable *variable = GetVariable(); in GetValueAsData()
428 Variable *variable = GetVariable(); in GetValueAsData()
601 Variable *Value::GetVariable() { in GetVariable()
602 if (m_context_type == ContextType::Variable) in GetVariable()
603 return static_cast<Variable *>(m_context); in GetVariable()
[all …]
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DHoverTests.cpp138 HI.Kind = index::SymbolKind::Variable; in TEST()
180 HI.Kind = index::SymbolKind::Variable; in TEST()
278 HI.Kind = index::SymbolKind::Variable; in TEST()
343 HI.Kind = index::SymbolKind::Variable; in TEST()
363 HI.Kind = index::SymbolKind::Variable; in TEST()
500 HI.Kind = index::SymbolKind::Variable; in TEST()
511 HI.Kind = index::SymbolKind::Variable; in TEST()
525 HI.Kind = index::SymbolKind::Variable; in TEST()
552 HI.Kind = index::SymbolKind::Variable; in TEST()
3099 HI.Kind = index::SymbolKind::Variable; in TEST()
[all …]

12345678910>>...17