| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| SSAUpdaterBulk.cpp | 41 unsigned Var = Rewrites.size(); 42 LLVM_DEBUG(dbgs() << "SSAUpdater: Var=" << Var << ": initialized with Ty = " 46 return Var; 51 void SSAUpdaterBulk::AddAvailableValue(unsigned Var, BasicBlock *BB, Value *V) { 52 assert(Var < Rewrites.size() && "Variable not found!"); 53 LLVM_DEBUG(dbgs() << "SSAUpdater: Var=" << Var 56 Rewrites[Var].Defines[BB] = V; 61 void SSAUpdaterBulk::AddUse(unsigned Var, Use *U) [all...] |
| Debugify.cpp | 334 auto *Var = DVI->getVariable(); 335 DIPreservationMap[NameOfWrappedPass].DIVariables[Var]++; 475 {{"metadata", "dbg-var-intrinsic"}, 569 auto *Var = DVI->getVariable(); 570 DIPreservationAfter[NameOfWrappedPass].DIVariables[Var]++; 732 unsigned Var = ~0U; 733 (void)to_integer(DVI->getVariable()->getName(), Var, 10); 734 assert(Var <= OriginalNumVars && "Unexpected name for DILocalVariable"); 737 MissingVars.reset(Var - 1);
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/ |
| DIAEnumTables.cpp | 26 VARIANT Var; 27 Var.vt = VT_UINT; 28 Var.uintVal = Index; 29 if (S_OK != Enumerator->Item(Var, &Item))
|
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/ |
| CodeExpander.cpp | 55 StringRef Var; 56 std::tie(Var, Current) = Current.split("}"); 59 StringRef EndVar = StartVar.drop_front(2 /* ${ */ + Var.size()); 61 PrintWarning(Loc, "Unterminated expansion '${" + Var + "'"); 65 auto ValueI = Expansions.find(Var); 68 "Attempt to expand an undeclared variable '" + Var + "'"); 72 OS << "/*$" << Var << "{*/"; 73 OS << Expansions.lookup(Var);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| MachineCheckDebugify.cpp | 80 unsigned Var = ~0U; 82 (void)to_integer(LocalVar->getName(), Var, 10); 83 assert(Var <= NumVars && "Unexpected name for DILocalVariable"); 84 MissingVars.reset(Var - 1);
|
| Analysis.cpp | 171 GlobalVariable *Var = dyn_cast<GlobalVariable>(V); 173 if (Var && Var->getName() == "llvm.eh.catch.all.value") { 174 assert(Var->hasInitializer() && 176 Value *Init = Var->getInitializer();
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/ |
| PDBSymbolCompiland.cpp | 49 std::string Var = Env->getName(); 50 if (Var == "cwd") { 54 if (Var == "src") {
|
| /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
| TransBlockObjCVariable.cpp | 44 VarDecl *Var; 48 BlockVarChecker(VarDecl *var) : Var(var) { } 53 if (ref->getDecl() == Var) { 57 Var->getASTContext().getLangOpts().CPlusPlus) 66 if (E->getDecl() == Var) 81 VarDecl *var = I.getVariable(); local 83 var->getType()->isObjCObjectPointerType() && 84 isImplicitStrong(var->getType())) 90 VarDecl *var = BlockVars[i]; local 135 VarDecl *var = *I; local [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| ASTMatchers.h | 2116 const VarDecl *const Var = Node.getLoopVariable(); 2117 return (Var != nullptr && InnerMatcher.matches(*Var, Finder, Builder)); 2748 /// fieldDecl(hasName("bar")).bind("var") 2751 /// will produce a result binding for both "record" and "var". 6789 /// C<char> var; // B
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/ |
| MCAsmParser.h | 63 VariableIdentifier Var; 80 Var.Decl = decl; 81 Var.IsGlobalLV = isGlobalLV; 82 Var.Size = size; 83 Var.Type = type; 84 Var.Length = size / type;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| DbgEntityHistoryCalculator.cpp | 71 bool DbgValueHistoryMap::startDbgValue(InlinedEntity Var, 77 auto &Entries = VarEntries[Var]; 91 EntryIndex DbgValueHistoryMap::startClobber(InlinedEntity Var, 93 auto &Entries = VarEntries[Var]; 296 // Claim that @Var is not described by @RegNo anymore. 298 InlinedEntity Var) { 302 const auto &VarPos = llvm::find(VarSet, Var); 310 // Claim that @Var is now described by @RegNo. 312 InlinedEntity Var) { 315 assert(!is_contained(VarSet, Var)); [all...] |
| DwarfCompileUnit.h | 133 const GlobalVariable *Var; 276 /// Find abstract variable associated with Var. 345 void applyVariableAttributes(const DbgVariable &Var, DIE &VariableDie);
|
| DwarfCompileUnit.cpp | 206 const GlobalVariable *Global = GE.Var; 888 auto Var = constructVariableDIE(DV, Scope.isAbstractScope()); 890 ObjectPointer = Var; 891 return Var; 895 static SmallVector<const DIVariable *, 2> dependencies(DbgVariable *Var) { 897 auto *Array = dyn_cast<DICompositeType>(Var->getType()); 952 for (auto Var : reverse(Input)) { 953 DbgVar.insert({Var->getVariable(), Var}); 954 WorkList.push_back({Var, 0}) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| SDNodeDbgValue.h | 145 DIVariable *Var; 155 SDDbgValue(BumpPtrAllocator &Alloc, DIVariable *Var, DIExpression *Expr, 162 Var(Var), Expr(Expr), DL(DL), Order(O), IsIndirect(IsIndirect), 179 DIVariable *getVariable() const { return Var; }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/ |
| OMPIRBuilder.h | 623 /// <critical_section_name> + ".var" for "omp critical" directives; 2) 951 Value *Var = nullptr;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86OptimizeLEAs.cpp | 603 const MDNode *Var = MI.getDebugVariable(); 622 NewOps, Var, Expr);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/ |
| Target.cpp | 693 Error randomizeTargetMCOperand(const Instruction &Instr, const Variable &Var, 809 const Instruction &Instr, const Variable &Var, MCOperand &AssignedValue, 811 const Operand &Op = Instr.getPrimaryOperand(Var); 911 const Variable &Var = std::get<0>(I); 914 switch (Instr.getPrimaryOperand(Var).getExplicitOperandInfo().OperandType) {
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| UninitializedValues.cpp | 366 FindVarResult Var = findVar(E, DC); 367 if (const DeclRefExpr *DRE = Var.getDeclRefExpr()) 766 FindVarResult Var = findVar(BO->getLHS()); 767 if (const VarDecl *VD = Var.getDecl())
|
| Consumed.cpp | 279 const VarDecl *Var; 313 const VarDecl *Var; 323 PropagationInfo(const VarDecl *Var, ConsumedState TestsFor) 325 VarTest.Var = Var; 344 BinTest.LTest.Var = LVar; 346 BinTest.RTest.Var = RVar; 352 PropagationInfo(const VarDecl *Var) : InfoType(IT_Var), Var(Var) {} [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineCXX.cpp | 126 const auto *Var = cast<VarDecl>(DS->getSingleDecl()); 127 QualType Ty = Var->getType(); 128 return makeZeroElementRegion(State, State->getLValue(Var, LCtx), Ty,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| MachineFunction.h | 384 const DILocalVariable *Var; 390 VariableDbgInfo(const DILocalVariable *Var, const DIExpression *Expr, 392 : Var(Var), Expr(Expr), Slot(Slot), Loc(Loc) {} 1087 void setVariableDbgInfo(const DILocalVariable *Var, const DIExpression *Expr, 1089 VariableDbgInfos.emplace_back(Var, Expr, Slot, Loc);
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/ |
| MIRParser.cpp | 837 MDNode *Var = nullptr, *Expr = nullptr, *Loc = nullptr; 838 if (parseMDNode(PFS, Var, Object.DebugVar) || 842 if (!Var && !Expr && !Loc) 847 if (typecheckMDNode(DIVar, Var, Object.DebugVar, "DILocalVariable", *this) ||
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGCUDANV.cpp | 59 llvm::GlobalVariable *Var; 130 void registerDeviceVar(const VarDecl *VD, llvm::GlobalVariable &Var, 132 DeviceVars.push_back({&Var, 138 void registerDeviceSurf(const VarDecl *VD, llvm::GlobalVariable &Var, 140 DeviceVars.push_back({&Var, 146 void registerDeviceTex(const VarDecl *VD, llvm::GlobalVariable &Var, 148 DeviceVars.push_back({&Var, 172 llvm::GlobalVariable &Var) override; 439 // Replace the original variable Var with the address loaded from variable 441 static void replaceManagedVar(llvm::GlobalVariable *Var, [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateInstantiate.cpp | 1305 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator, 1307 if (Var) 1308 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); 1309 return Var; 1315 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); 1316 if (Var) 1317 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); 1318 return Var; 3274 } else if (auto *Var = dyn_cast<VarDecl>(D)) { 3275 if (isa<VarTemplateSpecializationDecl>(Var)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| BasicAliasAnalysis.cpp | 1205 const VariableGEPIndex &Var = DecompGEP1.VarIndices[0]; 1206 if (isKnownNonZero(Var.V, DL, 0, &AC, Var.CxtI, DT)) 1207 MinAbsVarIndex = Var.Scale.abs();
|