| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| UndefCapturedBlockVarChecker.cpp | 65 const VarRegion *VR = I.getCapturedRegion(); 66 const VarDecl *VD = VR->getDecl(); 90 *V, VR, /*EnableNullFPSuppression*/ false,
|
| MIGChecker.cpp | 131 const auto *VR = dyn_cast<VarRegion>(MR); 132 if (VR && VR->hasStackParametersStorage() && 133 VR->getStackFrame()->inTopFrame()) 134 return cast<ParmVarDecl>(VR->getDecl());
|
| StackAddrEscapeChecker.cpp | 96 } else if (const auto *VR = dyn_cast<VarRegion>(R)) { 97 os << "stack memory associated with local variable '" << VR->getString() 99 range = VR->getDecl()->getSourceRange(); 318 const MemRegion *VR = Val.getAsRegion(); 319 if (VR && isa<StackSpaceRegion>(VR->getMemorySpace()) && 320 !isArcManagedBlock(VR, Ctx) && !isNotInCurrentFrame(VR, Ctx)) 321 V.emplace_back(Region, VR); 357 const VarRegion *VR = cast<VarRegion>(P.first->getBaseRegion()) [all...] |
| MallocChecker.cpp | 1946 const VarRegion *VR = dyn_cast<VarRegion>(MR); 1948 if (VR) 1949 VD = VR->getDecl(); 1961 const VarRegion *VR = dyn_cast<VarRegion>(MR); 1963 if (VR) 1964 VD = VR->getDecl(); 1976 const VarRegion *VR = dyn_cast<VarRegion>(MR); 1978 if (VR) 1979 VD = VR->getDecl(); 2501 const VarRegion *VR = MR->getBaseRegion()->getAs<VarRegion>() [all...] |
| /src/external/gpl3/gdb/dist/sim/ppc/ |
| altivec_registers.h | 36 vreg vr[32]; member in struct:altivec_regs 41 #define VR(N) cpu_registers(processor)->altivec.vr[N]
|
| /src/external/gpl3/gdb.old/dist/sim/ppc/ |
| altivec_registers.h | 36 vreg vr[32]; member in struct:altivec_regs 41 #define VR(N) cpu_registers(processor)->altivec.vr[N]
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| Interp.h | 187 unsigned VR = RHS.getByteOffset(); 188 S.Stk.push<BoolT>(BoolT::from(Fn(Compare(VL, VR)))); 209 unsigned VR = RHS.getByteOffset(); 210 S.Stk.push<BoolT>(BoolT::from(Fn(Compare(VL, VR))));
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| RetainCountDiagnostics.cpp | 442 const auto *VR = cast<VarRegion>(cast<SymbolRegionValue>(Sym)->getRegion()); 443 const auto *PVD = cast<ParmVarDecl>(VR->getDecl()); 612 if (const auto *VR = dyn_cast_or_null<VarRegion>(MR)) 613 return std::string(VR->getDecl()->getName());
|
| RetainCountChecker.cpp | 171 const VarRegion *VR = I.getCapturedRegion(); 172 if (VR->getSuperRegion() == R) { 173 VR = MemMgr.getVarRegion(VR->getDecl(), LC); 175 Regions.push_back(VR); 509 const auto *VR = dyn_cast<VarRegion>(R); 511 if (!R->hasStackStorage() || !VR) 514 const VarDecl *VD = VR->getDecl();
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| MIPatternMatch.h | 176 static bool bind(const MachineRegisterInfo &MRI, BindTy &VR, BindTy &V) { 177 VR = V; 217 Class &VR; 219 bind_ty(Class &V) : VR(V) {} 222 return bind_helper<Class>::bind(MRI, VR, V);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| MipsSEFrameLowering.cpp | 168 // load $vr, FI 169 // copy ccond, $vr 174 Register VR = MRI.createVirtualRegister(RC); 177 TII.loadRegFromStack(MBB, I, VR, FI, RC, &RegInfo, 0); 179 .addReg(VR, RegState::Kill); 183 // copy $vr, ccond 184 // store $vr, FI 189 Register VR = MRI.createVirtualRegister(RC); 192 BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), VR) 194 TII.storeRegToStack(MBB, I, VR, true, FI, RC, &RegInfo, 0) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/ |
| RISCVFrameLowering.cpp | 500 Register VR = 502 BuildMI(MBB, MBBI, DL, TII->get(RISCV::SRLI), VR) 506 .addReg(VR)
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| MemRegion.cpp | 712 const auto *const VR = dyn_cast<VarRegion>(this->getBaseRegion()); 721 else if (VR) { 722 return VR->getDecl()->getSourceRange(); 908 if (const auto *VR = dyn_cast<VarRegion>(OrigR)) { 909 if (VR->getDecl() == VD) 1588 const VarRegion *VR = nullptr; 1592 VR = MemMgr.getNonParamVarRegion(VD, this); 1597 VR = MemMgr.getVarRegion(VD, LC); 1598 OriginalVR = VR; 1601 VR = MemMgr.getNonParamVarRegion(VD, MemMgr.getUnknownRegion()) [all...] |
| BugReporterVisitors.cpp | 539 const MemRegion *VR = V.getAsRegion(); 544 if (RegionOfInterest == VR) 553 if (PT.isNull() || PT->isVoidType() || !VR) 558 findRegionOfInterestInRecord(RRD, State, VR, VecF, depth + 1)) 1236 /// \p VR. 1237 static bool isInitializationOfVar(const ExplodedNode *N, const VarRegion *VR) { 1246 if (DS->getSingleDecl() != VR->getDecl()) 1249 const MemSpaceRegion *VarSpace = VR->getMemorySpace(); 1255 assert(VR->getDecl()->isStaticLocal() && "non-static stackless VarRegion"); 1259 assert(VR->getDecl()->hasLocalStorage()) [all...] |
| RegionStore.cpp | 1105 const VarRegion *VR = BI.getCapturedRegion(); 1106 const VarDecl *VD = VR->getDecl(); 1108 AddToWorkList(VR); 1110 else if (Loc::isLocType(VR->getValueType())) { 1116 SVal V = RM.getBinding(B, loc::MemRegionVal(VR)); 1502 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) { 1509 return svalBuilder.evalCast(getBindingForVar(B, VR), T, QualType{}); 1660 } else if (const VarRegion *VR = dyn_cast<VarRegion>(superR)) { 1663 const VarDecl *VD = VR->getDecl(); 1751 if (const auto *VR = dyn_cast<VarRegion>(superR)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| RuntimeDyld.cpp | 399 auto &VR = KV.first; 403 if (VR.SymbolName) { 404 NotifyStubEmitted(FileName, SectionName, VR.SymbolName, SectionID, 413 if (GSTEntry.getSectionID() == VR.SectionID && 414 GSTEntry.getOffset() == VR.Offset) {
|
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| InstrProf.cpp | 856 ValueProfRecord *VR = getFirstValueProfRecord(this); 858 VR->deserializeTo(Record, SymTab); 859 VR = getValueProfRecordNext(VR); 885 ValueProfRecord *VR = getFirstValueProfRecord(this); 887 if (VR->Kind > IPVK_Last) 889 VR = getValueProfRecordNext(VR); 890 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) 931 ValueProfRecord *VR = getFirstValueProfRecord(this) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| PatternMatch.h | 730 Class *&VR; 732 bind_ty(Class *&V) : VR(V) {} 736 VR = CV; 851 uint64_t &VR; 853 bind_const_intval_ty(uint64_t &V) : VR(V) {} 858 VR = CV->getZExtValue();
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/M68k/ |
| M68kISelLowering.cpp | 271 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); 272 if (!Register::isVirtualRegister(VR)) 274 MachineInstr *Def = MRI->getVRegDef(VR);
|
| /src/external/gpl3/gdb/dist/sim/v850/ |
| v850-sim.h | 93 #define VR (V850_SIM_CPU (CPU)->reg.vregs)
|
| /src/external/gpl3/gdb.old/dist/sim/v850/ |
| v850-sim.h | 93 #define VR (V850_SIM_CPU (CPU)->reg.vregs)
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| PPCISelLowering.cpp | 3897 // However, if the argument is actually passed in an FPR or a VR, 4232 static const MCPhysReg VR[] = { 4239 const unsigned Num_VR_Regs = array_lengthof(VR); 4514 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass); 4700 static const MCPhysReg VR[] = { 4707 const unsigned NumVRs = array_lengthof(VR); 5934 static const MCPhysReg VR[] = { 5941 const unsigned NumVRs = array_lengthof(VR); 6391 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Load)); 6409 RegsToPass.push_back(std::make_pair(VR[VR_idx++], Arg)) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| ARMISelLowering.cpp | 2743 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg(); 2744 if (!Register::isVirtualRegister(VR)) 2746 MachineInstr *Def = MRI->getVRegDef(VR);
|