Searched refs:Variable (Results 26 - 50 of 84) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/clang/utils/TableGen/
H A DNeonEmitter.cpp286 // Variable
290 class Variable { class in namespace:__anon2449
295 Variable() : T(Type::getVoid()), N("") {} function in class:__anon2449::Variable
296 Variable(Type T, std::string N) : T(std::move(T)), N(std::move(N)) {} function in class:__anon2449::Variable
338 std::map<std::string, Variable> Variables;
350 Variable RetVar;
507 void emitReverseVariable(Variable &Dest, Variable &Src);
1120 "Variable not defined!");
1137 Variables[Name] = Variable(Type
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DInitialization.h179 VD Variable; member in union:clang::__anon1465
212 : Kind(EK), Type(Var->getType()), Variable{Var, false, false} {}
228 Variable{Member, Implicit, DefaultMemberInit} {}
472 return getKind() == EK_Member && Variable.IsImplicitFieldInit;
478 return getKind() == EK_Member && Variable.IsDefaultMemberInit;
1058 /// Variable-length array must not have an initializer.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheckImpl.h304 NumericVariable *Variable; member in class:llvm::NumericVariableUse
307 NumericVariableUse(StringRef Name, NumericVariable *Variable) argument
308 : ExpressionAST(Name), Variable(Variable) {}
315 return Variable->getImplicitFormat();
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp30 static Variable::RangeList
37 Variable::RangeList result;
514 const Variable::RangeList &ranges) {
518 using RangeListEntry = Variable::RangeList::Entry;
547 const Variable::RangeList &ranges,
618 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps);
659 Variable::RangeList ranges = MakeRangeList(index, loc.Range, loc.Gaps);
H A DPdbUtil.h13 #include "lldb/Symbol/Variable.h"
107 llvm::Optional<Variable::RangeList> ranges;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h365 SelfVar = new (Arena) til::Variable(nullptr);
366 SelfVar->setKind(til::Variable::VK_SFun);
489 // Variable to use for 'this'. May be null.
490 til::Variable *SelfVar = nullptr;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h434 Register Reg, const MDNode *Variable,
441 MachineOperand &MO, const MDNode *Variable,
450 Register Reg, const MDNode *Variable,
458 MachineOperand &MO, const MDNode *Variable,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineInstr.cpp2051 Register Reg, const MDNode *Variable,
2053 assert(isa<DILocalVariable>(Variable) && "not a variable");
2055 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) &&
2062 return MIB.addMetadata(Variable).addMetadata(Expr);
2067 MachineOperand &MO, const MDNode *Variable,
2069 assert(isa<DILocalVariable>(Variable) && "not a variable");
2071 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) &&
2074 return BuildMI(MF, DL, MCID, IsIndirect, MO.getReg(), Variable, Expr);
2081 return MIB.addMetadata(Variable).addMetadata(Expr);
2088 const MDNode *Variable, cons
[all...]
H A DLiveDebugVariables.cpp80 "Debug Variable Analysis", false, false)
84 "Debug Variable Analysis", false, false)
160 const DILocalVariable *Variable; ///< The debug info variable we are part of. member in class:__anon3489::UserValue
195 : Variable(var), Fragment(Fragment), dl(std::move(L)), leader(this),
535 printExtendedName(OS, Variable, dl);
916 // Variable locations at the first instruction of a block should be
1322 assert(cast<DILocalVariable>(Variable)
1345 IsIndirect, MO, Variable, Expr);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp145 Info.Kind = SymbolKind::Variable;
333 Info.Kind = SymbolKind::Variable;
515 case SymbolKind::Variable: return "variable";
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h495 /// If we have dangling debug info that describes \p Variable, or an
498 void dropDanglingDebugInfo(const DILocalVariable *Variable,
800 bool EmitFuncArgumentDbgValue(const Value *V, DILocalVariable *Variable,
812 SDDbgValue *getDbgValue(SDValue N, DILocalVariable *Variable,
/freebsd-13-stable/contrib/tcsh/
H A Dtw.color.c57 } Variable; typedef in typeref:struct:__anon6281
59 static Variable variables[] = {
99 * Map from LSCOLORS entry index to Variable array index
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dcond-undef-lint.mk36 # TODO: Suppress the error message "Variable VAR. is undefined". That part
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h48 Variable, member in class:lldb_private::FormatEntity::Entry::Type
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolContext.h316 Variable *variable; ///< The global variable matching the given query
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DVariableList.cpp145 uint32_t VariableList::FindIndexForVariable(Variable *variable) {
H A DBlock.cpp404 const std::function<bool(Variable *)> &filter,
434 const std::function<bool(Variable *)> &filter,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp197 const VarDecl *Variable = dyn_cast<VarDecl>(AsmDeclRef->getDecl()); local
198 if (Variable && Variable->getStorageClass() == SC_Register) {
199 if (AsmLabelAttr *Attr = Variable->getAttr<AsmLabelAttr>())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DLLVMContextImpl.h1050 Metadata *Variable; member in struct:llvm::MDNodeKeyImpl
1053 MDNodeKeyImpl(Metadata *Variable, Metadata *Expression) argument
1054 : Variable(Variable), Expression(Expression) {}
1056 : Variable(N->getRawVariable()), Expression(N->getRawExpression()) {}
1059 return Variable == RHS->getRawVariable() &&
1063 unsigned getHashValue() const { return hash_combine(Variable, Expression); }
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h267 class Variable;
459 typedef std::shared_ptr<lldb_private::Variable> VariableSP;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp231 if (Variable) {
233 Variable->output(OS, Flags);
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp123 [](Variable *) { return true; }, var_list);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectVariable.cpp22 #include "lldb/Symbol/Variable.h"
129 Variable *variable = m_variable_sp.get();
226 // Copy the Value and set the context to use our Variable so it can
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp408 {CompilerContextKind::Variable, ConstString(GetPubname())});
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DMachineIRBuilder.h383 /// associated \p Variable lives in \p Reg (suitably modified by \p Expr).
384 MachineInstrBuilder buildDirectDbgValue(Register Reg, const MDNode *Variable,
388 /// associated \p Variable lives in memory at \p Reg (suitably modified by \p
391 const MDNode *Variable,
395 /// associated \p Variable lives in the stack slot specified by \p FI
397 MachineInstrBuilder buildFIDbgValue(int FI, const MDNode *Variable,
400 /// Build and insert a DBG_VALUE instructions specifying that \p Variable is
403 const MDNode *Variable,

Completed in 314 milliseconds

1234