| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonGenInsert.cpp | 215 unsigned operator[](unsigned VR) const { in operator []() 216 const_iterator F = find(VR); in operator []() 273 const BitTracker::RegisterCell &lookup(unsigned VR) { in lookup() 274 unsigned RInd = Register::virtReg2Index(VR); in lookup() 280 CP = CVect[RInd] = &BT.lookup(VR); in lookup() 389 void insert(unsigned VR); 390 void remove(unsigned VR); 442 void OrderedRegisterList::insert(unsigned VR) { in insert() argument 443 iterator L = llvm::lower_bound(Seq, VR, Ord); in insert() 445 Seq.push_back(VR); in insert() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoXTHead.td | 35 : THInstVdotVV<funct6, opv, (outs VR:$vd), 36 (ins VR:$vs1, VR:$vs2, VMaskOp:$vm), 41 : THInstVdotVX<funct6, opv, (outs VR:$vd), 42 (ins GPR:$rs1, VR:$vs2, VMaskOp:$vm), 72 def THVdotV_M1 : LMULInfo<0b000, 8, VR, VR, VR, VR, VR, "M1">; 73 def THVdotV_M2 : LMULInfo<0b001, 16, VRM2, VRM2, VR, VR, VR, "M2">; 74 def THVdotV_M4 : LMULInfo<0b010, 32, VRM4, VRM4, VRM2, VR, VR, "M4">; 75 def THVdotV_M8 : LMULInfo<0b011, 64, VRM8, VRM8, VRM4, VRM2, VR, "M8">;
|
| H A D | RISCVInstrInfoV.td | 195 (outs VR:$vd), 210 (outs VR:$vd), 217 (outs VR:$vd), 223 (outs VR:$vd), 230 (outs VR:$vd), 231 (ins GPRMem:$rs1, VR:$vs2, VMaskOp:$vm), opcodestr, 237 (outs VR:$vd), 243 (outs VR:$vd), 249 (outs VR:$vd), 257 (outs VR:$vd), [all …]
|
| H A D | RISCVInstrInfoVVLPatterns.td | 634 VR:$merge, 638 VR:$merge, 650 VR:$merge, 654 VR:$merge, vti.RegClass:$rs1, 663 VR:$merge, 666 (instruction_masked VR:$merge, vti.RegClass:$rs1, 670 VR:$merge, 673 (instruction_masked VR:$merge, vti.RegClass:$rs1, 682 VR:$merge, 685 (instruction_masked VR:$merge, vti.RegClass:$rs1, [all …]
|
| H A D | RISCVInstrInfoVSDPatterns.td | 72 (store_instr VR:$rs2, GPR:$rs1, m.AVL, m.Log2SEW)>; 789 def : Pat<(mti.Mask (and VR:$rs1, VR:$rs2)), 791 VR:$rs1, VR:$rs2, mti.AVL, mti.Log2SEW)>; 792 def : Pat<(mti.Mask (or VR:$rs1, VR:$rs2)), 794 VR:$rs1, VR:$rs2, mti.AVL, mti.Log2SEW)>; 795 def : Pat<(mti.Mask (xor VR:$rs1, VR:$rs2)), 797 VR:$rs1, VR:$rs2, mti.AVL, mti.Log2SEW)>; 799 def : Pat<(mti.Mask (rvv_vnot (and VR:$rs1, VR:$rs2))), 801 VR:$rs1, VR:$rs2, mti.AVL, mti.Log2SEW)>; 802 def : Pat<(mti.Mask (rvv_vnot (or VR:$rs1, VR:$rs2))), [all …]
|
| H A D | RISCVInstrInfoVPseudos.td | 88 def V_M1 : LMULInfo<0b000, 8, VR, VRM2, VR, VR, VR, "M1">; 89 def V_M2 : LMULInfo<0b001, 16, VRM2, VRM4, VR, VR, VR, "M2">; 90 def V_M4 : LMULInfo<0b010, 32, VRM4, VRM8, VRM2, VR, VR, "M4">; 91 def V_M8 : LMULInfo<0b011, 64, VRM8,/*NoVReg*/VR, VRM4, VRM2, VR, "M8">; 93 def V_MF8 : LMULInfo<0b101, 1, VR, VR,/*NoVReg*/VR,/*NoVReg*/VR,/*NoVReg*/VR, "MF8">; 94 def V_MF4 : LMULInfo<0b110, 2, VR, VR, VR,/*NoVReg*/VR,/*NoVReg*/VR, "MF4">; 95 def V_MF2 : LMULInfo<0b111, 4, VR, VR, VR, VR,/*NoVReg*/VR, "MF2">; 216 def VI8MF8: VTypeInfo<vint8mf8_t, vbool64_t, 8, VR, V_MF8>; 217 def VI8MF4: VTypeInfo<vint8mf4_t, vbool32_t, 8, VR, V_MF4>; 218 def VI8MF2: VTypeInfo<vint8mf2_t, vbool16_t, 8, VR, V_MF2>; [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/profile/ |
| H A D | InstrProfilingMergeFile.c | 28 ValueProfRecord *VR = getFirstValueProfRecord(SrcValueProfData); in lprofMergeValueProfData() local 30 VData = getValueProfRecordValueData(VR); in lprofMergeValueProfData() 32 for (S = 0; S < VR->NumValueSites; S++) { in lprofMergeValueProfData() 33 uint8_t NV = VR->SiteCountArray[S]; in lprofMergeValueProfData() 41 VR = getValueProfRecordNext(VR); in lprofMergeValueProfData()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StackAddrEscapeChecker.cpp | 95 } else if (const auto *VR = dyn_cast<VarRegion>(R)) { in genName() local 96 os << "stack memory associated with local variable '" << VR->getString() in genName() 98 range = VR->getDecl()->getSourceRange(); in genName() 332 const MemRegion *VR = Val.getAsRegion(); in checkEndFunction() local 333 if (!VR) in checkEndFunction() 336 if (checkForDanglingStackVariable(Region, VR)) in checkEndFunction() 342 if (VR && VR->hasStackStorage() && !isNotInCurrentFrame(VR, Ctx)) in checkEndFunction() 343 V.emplace_back(Region, VR); in checkEndFunction()
|
| H A D | MacOSXAPIChecker.cpp | 96 if (const VarRegion *VR = dyn_cast<VarRegion>(RB)) { in CheckDispatchOnce() local 97 const VarDecl *VD = VR->getDecl(); in CheckDispatchOnce() 106 if (VR != R) in CheckDispatchOnce() 112 os << VR->getDecl()->getName() << '\''; in CheckDispatchOnce()
|
| H A D | MIGChecker.cpp | 133 const auto *VR = dyn_cast<VarRegion>(MR); in REGISTER_TRAIT_WITH_PROGRAMSTATE() local 134 if (VR && VR->hasStackParametersStorage() && in REGISTER_TRAIT_WITH_PROGRAMSTATE() 135 VR->getStackFrame()->inTopFrame()) in REGISTER_TRAIT_WITH_PROGRAMSTATE() 136 return cast<ParmVarDecl>(VR->getDecl()); in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| H A D | UndefCapturedBlockVarChecker.cpp | 66 const VarRegion *VR = I.getCapturedRegion(); in checkPostStmt() local 67 const VarDecl *VD = VR->getDecl(); in checkPostStmt() 90 bugreporter::trackStoredValue(*V, VR, *R, in checkPostStmt()
|
| H A D | NSErrorChecker.cpp | 203 if (const VarRegion *VR = R->getAs<VarRegion>()) in parameterTypeFromSVal() local 205 stackReg = dyn_cast<StackArgumentsSpaceRegion>(VR->getMemorySpace())) in parameterTypeFromSVal() 207 return VR->getValueType(); in parameterTypeFromSVal()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/ |
| H A D | CSKYFrameLowering.cpp | 180 Register VR = in emitPrologue() local 182 BuildMI(MBB, MBBI, DL, TII->get(CSKY::LSRI32), VR) in emitPrologue() 186 .addReg(VR) in emitPrologue() 189 Register VR = in emitPrologue() local 191 BuildMI(MBB, MBBI, DL, TII->get(CSKY::MOV16), VR).addReg(SPReg); in emitPrologue() 192 BuildMI(MBB, MBBI, DL, TII->get(CSKY::LSRI16), VR) in emitPrologue() 193 .addReg(VR) in emitPrologue() 195 BuildMI(MBB, MBBI, DL, TII->get(CSKY::LSLI16), VR) in emitPrologue() 196 .addReg(VR) in emitPrologue() 198 BuildMI(MBB, MBBI, DL, TII->get(CSKY::MOV16), SPReg).addReg(VR); in emitPrologue()
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 914 ValueProfRecord *VR = getFirstValueProfRecord(this); in deserializeTo() local 916 VR->deserializeTo(Record, SymTab); in deserializeTo() 917 VR = getValueProfRecordNext(VR); in deserializeTo() 945 ValueProfRecord *VR = getFirstValueProfRecord(this); in checkIntegrity() local 947 if (VR->Kind > IPVK_Last) in checkIntegrity() 950 VR = getValueProfRecordNext(VR); in checkIntegrity() 951 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) in checkIntegrity() 994 ValueProfRecord *VR = getFirstValueProfRecord(this); in swapBytesToHost() local 996 VR->swapBytes(Endianness, getHostEndianness()); in swapBytesToHost() 997 VR = getValueProfRecordNext(VR); in swapBytesToHost() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | SymbolManager.cpp | 450 if (const auto *VR = dyn_cast<VarRegion>(MR)) in isLiveRegion() local 451 return isLive(VR, true); in isLiveRegion() 541 bool SymbolReaper::isLive(const VarRegion *VR, bool includeStoreBindings) const{ in isLive() argument 542 const StackFrameContext *VarContext = VR->getStackFrame(); in isLive() 561 if (LCtx->getAnalysis<RelaxedLiveVariables>()->isLive(Loc, VR->getDecl())) in isLive() 568 const_cast<SymbolReaper *>(this)->includedRegionCache[VR]; in isLive() 577 reapedStore.getStoreManager().includedInBindings(store, VR); in isLive()
|
| H A D | MemRegion.cpp | 715 const auto *const VR = dyn_cast<VarRegion>(this->getBaseRegion()); in sourceRange() local 724 else if (VR) { in sourceRange() 725 return VR->getDecl()->getSourceRange(); in sourceRange() 952 if (const auto *VR = dyn_cast<VarRegion>(OrigR)) { in getStackOrCaptureRegionForDeclContext() local 953 if (VR->getDecl() == VD) in getStackOrCaptureRegionForDeclContext() 1627 const VarRegion *VR = nullptr; in getCaptureRegions() local 1631 VR = MemMgr.getNonParamVarRegion(VD, this); in getCaptureRegions() 1636 VR = MemMgr.getVarRegion(VD, LC); in getCaptureRegions() 1637 OriginalVR = VR; in getCaptureRegions() 1640 VR = MemMgr.getNonParamVarRegion(VD, MemMgr.getUnknownRegion()); in getCaptureRegions() [all …]
|
| H A D | BugReporterVisitors.cpp | 649 const MemRegion *VR = V.getAsRegion(); in findRegionOfInterestInRecord() local 654 if (RegionOfInterest == VR) in findRegionOfInterestInRecord() 663 if (PT.isNull() || PT->isVoidType() || !VR) in findRegionOfInterestInRecord() 668 findRegionOfInterestInRecord(RRD, State, VR, VecF, depth + 1)) in findRegionOfInterestInRecord() 1242 static bool isInitializationOfVar(const ExplodedNode *N, const VarRegion *VR) { in isInitializationOfVar() argument 1251 if (DS->getSingleDecl() != VR->getDecl()) in isInitializationOfVar() 1254 const MemSpaceRegion *VarSpace = VR->getMemorySpace(); in isInitializationOfVar() 1260 assert(VR->getDecl()->isStaticLocal() && "non-static stackless VarRegion"); in isInitializationOfVar() 1264 assert(VR->getDecl()->hasLocalStorage()); in isInitializationOfVar() 1341 const auto *VR = cast<VarRegion>(SI.Dest); in showBRParamDiagnostics() local [all …]
|
| H A D | RegionStore.cpp | 1099 const VarRegion *VR = BI.getCapturedRegion(); in VisitCluster() local 1100 const VarDecl *VD = VR->getDecl(); in VisitCluster() 1102 AddToWorkList(VR); in VisitCluster() 1104 else if (Loc::isLocType(VR->getValueType())) { in VisitCluster() 1110 SVal V = RM.getBinding(B, loc::MemRegionVal(VR)); in VisitCluster() 1492 if (const VarRegion *VR = dyn_cast<VarRegion>(R)) { in getBinding() local 1499 return svalBuilder.evalCast(getBindingForVar(B, VR), T, QualType{}); in getBinding() 1733 const VarRegion *VR = dyn_cast<VarRegion>(Base); in getConstantValFromConstArrayInitializer() local 1734 if (!VR) in getConstantValFromConstArrayInitializer() 1742 const VarDecl *VD = VR->getDecl(); in getConstantValFromConstArrayInitializer() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | README_P9.txt | 57 VR[VRT].word[i] ← EXTS32(VR[VRB].word[i].byte[3]) 65 VR[VRT].word[i] ← EXTS32(VR[VRB].word[i].hword[1]) 73 VR[VRT].dword[i] ← EXTS64(VR[VRB].dword[i].byte[7]) 81 VR[VRT].dword[i] ← EXTS64(VR[VRB].dword[i].hword[3]) 89 VR[VRT].dword[i] ← EXTS64(VR[VRB].dword[i].word[1]) 122 sh ← VR[VRB].byte[i].bit[5:7] 123 VR[VRT].byte[i] ← src.byte[i:i+1].bit[sh:sh+7] 126 VR[VRT].byte[i] is composed of 2 bytes from src.byte[i:i+1]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | MipsSEFrameLowering.cpp | 174 Register VR = MRI.createVirtualRegister(RC); in expandLoadCCond() local 177 TII.loadRegFromStack(MBB, I, VR, FI, RC, &RegInfo, 0); in expandLoadCCond() 179 .addReg(VR, RegState::Kill); in expandLoadCCond() 189 Register VR = MRI.createVirtualRegister(RC); in expandStoreCCond() local 192 BuildMI(MBB, I, I->getDebugLoc(), TII.get(TargetOpcode::COPY), VR) in expandStoreCCond() 194 TII.storeRegToStack(MBB, I, VR, true, FI, RC, &RegInfo, 0); in expandStoreCCond() 541 Register VR = MF.getRegInfo().createVirtualRegister(RC); in emitPrologue() local 546 BuildMI(MBB, MBBI, dl, TII.get(ADDiu), VR).addReg(ZERO).addImm(MaxAlign); in emitPrologue() 547 BuildMI(MBB, MBBI, dl, TII.get(AND), SP).addReg(SP).addReg(VR); in emitPrologue()
|
| /openbsd-src/regress/lib/libcrypto/x509/bettertls/certificates/ |
| H A D | 1824.crt | 13 lWwK1TJlaJFLwlnZ4dgYorpJGcGHfJoAPlXjXCjjCzi0t3cVguzaN3VT8RwiI/VR
|
| H A D | 3491.crt | 15 VR+V82cTMW+srbapTZYfRXgSvHPy0GBf9cbK1C7LBG/9bi9ZCyhn0yGrAgMBAAGj
|
| H A D | 2656.key | 26 VR+MObMRTD3IujCwpBhfXd+cxFrZE70+OvdqxBYCnepDf1rCNflY
|
| H A D | 734.chain | 45 CZv78rJ3c+VR+PFTtqWp2U7Wv4QdthHfv7yB2N8Z3YDs3NN3T5vuTmPIRo8V4ffX
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.cpp | 172 const VarRegion *VR = I.getCapturedRegion(); in checkPostStmt() local 173 if (VR->getSuperRegion() == R) { in checkPostStmt() 174 VR = MemMgr.getVarRegion(VR->getDecl(), LC); in checkPostStmt() 176 Regions.push_back(VR); in checkPostStmt() 510 const auto *VR = dyn_cast<VarRegion>(R); in shouldEscapeRegion() local 512 if (!R->hasStackStorage() || !VR) in shouldEscapeRegion() 515 const VarDecl *VD = VR->getDecl(); in shouldEscapeRegion()
|