Searched refs:VR (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefCapturedBlockVarChecker.cpp71 const VarRegion *VR = I.getCapturedRegion(); local
72 const VarDecl *VD = VR->getDecl();
95 R->addVisitor(new FindLastStoreBRVisitor(*V, VR,
H A DMacOSXAPIChecker.cpp86 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
87 os << " the local variable '" << VR->getDecl()->getName() << '\'';
H A DStackAddrEscapeChecker.cpp76 else if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
78 << VR->getString() << '\'';
79 range = VR->getDecl()->getSourceRange();
231 const VarRegion *VR = cast<VarRegion>(cb.V[i].first->getBaseRegion()); local
232 os << *VR->getDecl()
H A DNSErrorChecker.cpp193 if (const VarRegion *VR = R->getAs<VarRegion>())
195 stackReg = dyn_cast<StackArgumentsSpaceRegion>(VR->getMemorySpace()))
197 return VR->getValueType();
H A DUnixAPIChecker.cpp168 if (const VarRegion *VR = dyn_cast<VarRegion>(R))
169 os << " the local variable '" << VR->getDecl()->getName() << '\'';
H A DMallocChecker.cpp1275 const VarRegion *VR = dyn_cast<VarRegion>(MR); local
1277 if (VR)
1278 VD = VR->getDecl();
1290 const VarRegion *VR = dyn_cast<VarRegion>(MR); local
1292 if (VR)
1293 VD = VR->getDecl();
1305 const VarRegion *VR = dyn_cast<VarRegion>(MR); local
1307 if (VR)
1308 VD = VR->getDecl();
1711 const VarRegion* VR local
1949 const VarRegion *VR = I.getCapturedRegion(); local
[all...]
H A DRetainCountChecker.cpp2165 const VarRegion *VR = R->getBaseRegion()->getAs<VarRegion>(); local
2168 if (!VR || VR->getStackFrame() == LeakContext->getCurrentStackFrame())
2667 const VarRegion *VR = I.getCapturedRegion(); local
2668 if (VR->getSuperRegion() == R) {
2669 VR = MemMgr.getVarRegion(VR->getDecl(), LC);
2671 Regions.push_back(VR);
/external/libyuv/files/source/
H A Drow_posix.cc1282 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
1287 #define BR UR * 128 + VR * 128
1306 { UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR },
[all...]
H A Drow_win.cc1484 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
1489 #define BR UR * 128 + VR * 128
1496 UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR
[all...]
H A Drow_common.cc434 #define VR 102 /* static_cast<int8>(1.596 * 64 + 0.5) */ macro
439 #define BR UR * 128 + VR * 128
455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
/external/llvm/include/llvm/CodeGen/
H A DMachineSSAUpdater.h44 /// VR - Current virtual register whose uses are being updated.
45 unsigned VR; member in class:llvm::MachineSSAUpdater
/external/clang/test/SemaCXX/
H A Daddr-of-overloaded-function.cpp216 void VR() volatile __restrict {};
228 X = &Qualifiers::VR; // expected-error-re{{assigning to 'void (test1::Qualifiers::*)(){{( __attribute__\(\(thiscall\)\))?}}' from incompatible type 'void (test1::Qualifiers::*)(){{( __attribute__\(\(thiscall\)\))?}} volatile restrict': different qualifiers (none vs volatile and restrict)}}
/external/clang/lib/StaticAnalyzer/Core/
H A DSymbolManager.cpp418 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
419 return isLive(VR, true);
508 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ argument
509 const StackFrameContext *VarContext = VR->getStackFrame();
523 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl()))
530 const_cast<SymbolReaper*>(this)->includedRegionCache[VR];
539 reapedStore.getStoreManager().includedInBindings(store, VR);
H A DMemRegion.cpp754 if (const VarRegion *VR = dyn_cast<VarRegion>(I.getOriginalRegion()))
755 if (VR->getDecl() == VD)
1361 const VarRegion *VR = nullptr; local
1365 VR = MemMgr.getVarRegion(VD, this);
1370 VR = MemMgr.getVarRegion(VD, LC);
1371 OriginalVR = VR;
1374 VR = MemMgr.getVarRegion(VD, MemMgr.getUnknownRegion());
1378 return std::make_pair(VR, OriginalVR);
1405 const VarRegion *VR = nullptr; local
1407 std::tie(VR, OriginalV
[all...]
H A DBugReporterVisitors.cpp422 /// \p VR.
423 static bool isInitializationOfVar(const ExplodedNode *N, const VarRegion *VR) { argument
432 if (DS->getSingleDecl() != VR->getDecl())
435 const MemSpaceRegion *VarSpace = VR->getMemorySpace();
441 assert(VR->getDecl()->isStaticLocal() && "non-static stackless VarRegion");
445 assert(VR->getDecl()->hasLocalStorage());
463 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
464 if (isInitializationOfVar(Pred, VR)) {
466 InitE = VR->getDecl()->getInit();
509 if (const VarRegion *VR
555 const VarRegion *VR = dyn_cast<VarRegion>(R); local
[all...]
H A DRegionStore.cpp1014 const VarRegion *VR = BI.getCapturedRegion(); local
1015 const VarDecl *VD = VR->getDecl();
1017 AddToWorkList(VR);
1019 else if (Loc::isLocType(VR->getValueType())) {
1025 SVal V = RM.getBinding(B, loc::MemRegionVal(VR));
1347 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) {
1354 return CastRetrievedVal(getBindingForVar(B, VR), VR, T, false);
2203 if (const VarRegion *VR = dyn_cast<VarRegion>(baseR)) {
2204 if (SymReaper.isLive(VR))
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Drow_posix.cc2065 #define VR 102 /* (int8)(1.596 * 64 + 0.5) */ macro
2070 #define BR UR * 128 + VR * 128
2089 { UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR },
[all...]
H A Drow_win.cc35 #define VR 102 /* (int8)(1.596 * 64 + 0.5) */ macro
40 #define BR UR * 128 + VR * 128
47 UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR
[all...]
/external/chromium_org/third_party/libyuv/source/
H A Drow_posix.cc2065 #define VR 102 /* (int8)(1.596 * 64 + 0.5) */ macro
2070 #define BR UR * 128 + VR * 128
2089 { UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR },
[all...]
H A Drow_win.cc34 #define VR 102 /* (int8)(1.596 * 64 + 0.5) */ macro
39 #define BR UR * 128 + VR * 128
46 UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR, UR, VR
[all...]
/external/llvm/lib/CodeGen/
H A DMachineSSAUpdater.cpp58 VR = V;
59 VRC = MRI->getRegClass(VR);
/external/llvm/lib/Target/Mips/
H A DMipsSEFrameLowering.cpp135 unsigned VR = MRI.createVirtualRegister(RC); local
138 TII.loadRegFromStack(MBB, I, VR, FI, RC, &RegInfo, 0);
140 .addReg(VR, RegState::Kill);
155 unsigned VR = MRI.createVirtualRegister(RC); local
158 BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), VR)
160 TII.storeRegToStack(MBB, I, VR, true, FI, RC, &RegInfo, 0);
/external/llvm/include/llvm/IR/
H A DPatternMatch.h286 Class *&VR; member in struct:llvm::PatternMatch::bind_ty
287 bind_ty(Class *&V) : VR(V) {}
292 VR = CV;
351 uint64_t &VR; member in struct:llvm::PatternMatch::bind_const_intval_ty
352 bind_const_intval_ty(uint64_t &V) : VR(V) {}
358 VR = CV->getZExtValue();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h599 bool isLive(const VarRegion *VR, bool includeStoreBindings = false) const;
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2461 static const MCPhysReg VR[] = { local
2472 const unsigned Num_VR_Regs = array_lengthof(VR);
2639 MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
2742 static const MCPhysReg VR[] = { local
2749 const unsigned Num_VR_Regs = array_lengthof( VR);
2976 unsigned VReg = MF.addLiveIn(VR[VR_idx], &PPC::VRRCRegClass);
4039 static const MCPhysReg VR[] = { local
4050 const unsigned NumVRs = array_lengthof(VR);
4279 VSRH[VR_idx] : VR[VR_idx];
4302 VSRH[VR_idx] : VR[VR_id
4480 static const MCPhysReg VR[] = { local
[all...]

Completed in 529 milliseconds

12