Home
last modified time | relevance | path

Searched refs:PV (Results 1 – 25 of 44) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DPagedVector.h169 const PagedVector *PV; variable
180 : PV(PV), ElementIdx(ElementIdx) {} in MaterializedIterator()
189 while (ElementIdx < PV->Size &&
190 !PV->PageToDataPtrs[ElementIdx / PageSize])
192 if (ElementIdx > PV->Size)
193 ElementIdx = PV->Size;
206 assert(ElementIdx < PV->Size);
207 assert(PV->PageToDataPtrs[ElementIdx / PageSize]);
228 ElementIdx == PV->Size || in verify()
229 (ElementIdx < PV->Size && PV->PageToDataPtrs[ElementIdx / PageSize])); in verify()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonLoopIdiomRecognition.cpp791 PV.X = X; in matchLeftShift()
792 PV.Q = Q; in matchLeftShift()
793 PV.R = R; in matchLeftShift()
866 PV.X = X; in matchRightShift()
867 PV.Q = Q; in matchRightShift()
868 PV.R = R; in matchRightShift()
931 PV.P = PV.X; in scanSelect()
939 if (PV.X != PV.R) { in scanSelect()
969 if (PV.Inv && !isa<ConstantInt>(PV.Q)) in scanSelect()
1543 Value *P = PV.P, *Q = PV.Q, *P0 = P; in generate()
[all …]
H A DBitTracker.cpp85 raw_ostream &operator<< (raw_ostream &OS, const printv &PV) { in operator <<() argument
86 if (PV.R) in operator <<()
87 OS << 'v' << Register::virtReg2Index(PV.R); in operator <<()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPhiValues.h91 PhiValues *PV; variable
96 PhiValuesCallbackVH(Value *V, PhiValues *PV = nullptr)
97 : CallbackVH(V), PV(PV) {} in CallbackVH()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp661 Value *PV = nullptr; member
767 Result.PV = Old.PV; in computeFromBCI()
808 Result.PV = RHS.PV; in computeFromSVI()
813 Result.PV = LHS.PV; in computeFromSVI()
816 else if ((LHS.BB == RHS.BB) && (LHS.PV == RHS.PV)) { in computeFromSVI()
818 Result.PV = LHS.PV; in computeFromSVI()
887 Result.PV = BasePtr; in computeFromLI()
1043 if (PV) in print()
1044 OS << *PV; in print()
1073 if (C->PV != C0->PV) in findPattern()
H A DSplitKit.cpp444 VNInfo *PV = PS.getVNInfoAt(Def); in addDeadDef() local
445 if (PV != nullptr && PV->def == Def) in addDeadDef()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMips16HardFloat.cpp187 static std::string swapFPIntParams(FPParamVariant PV, Module *M, bool LE, in swapFPIntParams() argument
192 switch (PV) { in swapFPIntParams()
282 FPParamVariant PV = whichFPParamVariantNeeded(F); in assureFPCallStub() local
286 AsmText += swapFPIntParams(PV, M, LE, true); in assureFPCallStub()
445 static void createFPFnStub(Function *F, Module *M, FPParamVariant PV, in createFPFnStub() argument
474 AsmText += swapFPIntParams(PV, M, LE, false); in createFPFnStub()
H A DMipsAsmPrinter.cpp880 Mips16HardFloatInfo::FPParamVariant PV, in EmitSwapFPIntParams() argument
885 switch (PV) { in EmitSwapFPIntParams()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600Packetizer.cpp222 const DenseMap<unsigned, unsigned> &PV, in isBundlableWithCurrentPMI() argument
263 PV, BS, isTransSlot)) { in isBundlableWithCurrentPMI()
289 const DenseMap<unsigned, unsigned> &PV = in addToPacket() local
294 if (isBundlableWithCurrentPMI(MI, PV, BS, isTransSlot)) { in addToPacket()
306 substitutePV(MI, PV); in addToPacket()
H A DR600RegisterInfo.td140 def PV_X : R600RegWithChan<"PV.X", 254, "X">;
141 def PV_Y : R600RegWithChan<"PV.Y", 254, "Y">;
142 def PV_Z : R600RegWithChan<"PV.Z", 254, "Z">;
143 def PV_W : R600RegWithChan<"PV.W", 254, "W">;
H A DR600InstrInfo.h44 ExtractSrcs(MachineInstr &MI, const DenseMap<unsigned, unsigned> &PV,
143 const DenseMap<unsigned, unsigned> &PV,
H A DR600InstrInfo.cpp318 const DenseMap<unsigned, unsigned> &PV, in ExtractSrcs() argument
331 if (PV.contains(Reg)) { in ExtractSrcs()
512 const DenseMap<unsigned, unsigned> &PV, in fitsReadPortLimitations() argument
523 IGSrcs.push_back(ExtractSrcs(*MI, PV, ConstCount)); in fitsReadPortLimitations()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DPhiValues.cpp17 PV->invalidateValue(getValPtr()); in deleted()
23 PV->invalidateValue(getValPtr()); in allUsesReplacedWith()
/freebsd/sys/amd64/conf/
H A DNOTES126 device xentimer # Xen x86 PV timer device
159 # Enable detailed accounting by the PV entry allocator.
H A DMINIMAL141 device xentimer # Xen x86 PV timer device
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_verbose.ksh53 while getopts :PV:b:ospv opt; do
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp598 const ParmVarDecl *PV = D->getParamDecl(1); in create_dispatch_sync() local
599 QualType Ty = PV->getType(); in create_dispatch_sync()
611 DeclRefExpr *DR = M.makeDeclRefExpr(PV); in create_dispatch_sync()
H A DThreadSafetyCommon.cpp313 if (const auto *PV = dyn_cast<ParmVarDecl>(VD)) { in translateDeclRefExpr() local
314 unsigned I = PV->getFunctionScopeIndex(); in translateDeclRefExpr()
315 const DeclContext *D = PV->getDeclContext(); in translateDeclRefExpr()
/freebsd/contrib/file/magic/Magdir/
H A Dlinux340 0x218 string/b LVM2\ 001 LVM2 PV (Linux Logical Volume Manager)
343 0x018 string/b LVM2\ 001 LVM2 PV (Linux Logical Volume Manager)
346 0x418 string/b LVM2\ 001 LVM2 PV (Linux Logical Volume Manager)
349 0x618 string/b LVM2\ 001 LVM2 PV (Linux Logical Volume Manager)
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DTextStubV5.cpp533 PackedVersion PV; in getPackedVersion() local
534 auto [success, truncated] = PV.parse64(Version); in getPackedVersion()
537 return PV; in getPackedVersion()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DIndexDecl.cpp129 for (const auto *PV : FD->parameters()) { in handleDeclarator() local
130 IndexDefaultParmeterArgument(PV, D); in handleDeclarator()
/freebsd/sys/i386/conf/
H A DNOTES315 # Set the number of PV entries per process. Increasing this can
341 # Enable detailed accounting by the PV entry allocator.
H A DMINIMAL149 device xentimer # Xen x86 PV timer device
/freebsd/sys/contrib/device-tree/Bindings/display/
H A Dbrcm,bcm-vc4.txt13 - reg: Physical base address and length of the PV's registers
/freebsd/contrib/sendmail/contrib/
H A Dmail.local.linux51 M"@3<7@KB@X0G7,&++$Q-$+;IOQMNCWU.:-[SQ->\%-Y1AC34Y/_.^+PV(M"-
150 M1`@#9QE@0DL*8%+A*05PH1Y=(,1<@"PX6"SM-%I`P!;@4LPK"PV(I4"67$#I

12