/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | Scalarizer.cpp | 203 void gather(Instruction *Op, const ValueVector &CV); 205 void transferMetadataAndIRFlags(Instruction *Op, const ValueVector &CV); 266 ValueVector &CV = (CachePtr ? *CachePtr : Tmp); in operator []() local 268 if (CV[I]) in operator []() 269 return CV[I]; in operator []() 273 if (!CV[0]) { in operator []() 275 CV[0] = Builder.CreateBitCast(V, NewPtrTy, V->getName() + ".i0"); in operator []() 278 CV[I] = Builder.CreateConstGEP1_32(ElTy, CV[0], I, in operator []() 294 CV[ in operator []() 378 gather(Instruction *Op, const ValueVector &CV) gather() argument 420 transferMetadataAndIRFlags(Instruction *Op, const ValueVector &CV) transferMetadataAndIRFlags() argument 851 ValueVector &CV = *GMI.second; finish() local [all...] |
/third_party/python/Lib/test/ |
H A D | ann_module2.py | 33 class CV: class 34 var: ClassVar['CV'] 36 CV.var = CV()
|
H A D | dataclass_module_2_str.py | 17 class CV: class
|
H A D | dataclass_module_1_str.py | 17 class CV: class
|
H A D | dataclass_module_2.py | 17 class CV: class
|
H A D | dataclass_module_1.py | 17 class CV: class
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFISelDAGToDAG.cpp | 84 bool fillGenericConstant(const DataLayout &DL, const Constant *CV, 392 const Constant *CV, in fillGenericConstant() 394 uint64_t Size = DL.getTypeAllocSize(CV->getType()); in fillGenericConstant() 396 if (isa<ConstantAggregateZero>(CV) || isa<UndefValue>(CV)) in fillGenericConstant() 399 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in fillGenericConstant() 416 if (const ConstantDataArray *CDA = dyn_cast<ConstantDataArray>(CV)) in fillGenericConstant() 419 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) in fillGenericConstant() 422 if (const ConstantStruct *CVS = dyn_cast<ConstantStruct>(CV)) in fillGenericConstant() 391 fillGenericConstant(const DataLayout &DL, const Constant *CV, val_vec_type &Vals, uint64_t Offset) fillGenericConstant() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUMCInstLower.cpp | 228 const Constant *CV, in lowerAddrSpaceCast() 234 auto *CE = dyn_cast<ConstantExpr>(CV); in lowerAddrSpaceCast() 251 const MCExpr *AMDGPUAsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 252 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant() 254 return AsmPrinter::lowerConstant(CV); in lowerConstant() 409 const MCExpr *R600AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 410 if (const MCExpr *E = lowerAddrSpaceCast(TM, CV, OutContext)) in lowerConstant() 412 return AsmPrinter::lowerConstant(CV); in lowerConstant() 227 lowerAddrSpaceCast(const TargetMachine &TM, const Constant *CV, MCContext &OutContext) lowerAddrSpaceCast() argument
|
H A D | R600AsmPrinter.h | 33 const MCExpr *lowerConstant(const Constant *CV) override;
|
/third_party/ffmpeg/libavcodec/ |
H A D | cavsdsp.c | 345 #define CAVS_SUBPIX_HV(OPNAME, OP, NAME, AH, BH, CH, DH, EH, FH, AV, BV, CV, DV, EV, FV, FULL) \ 385 OP(dst[0*dstStride], AV*tmpB + BV*tmpA + CV*tmp0 + DV*tmp1 + EV*tmp2 + FV*tmp3 + 64*src2[0*srcStride]); \ 386 OP(dst[1*dstStride], AV*tmpA + BV*tmp0 + CV*tmp1 + DV*tmp2 + EV*tmp3 + FV*tmp4 + 64*src2[1*srcStride]); \ 387 OP(dst[2*dstStride], AV*tmp0 + BV*tmp1 + CV*tmp2 + DV*tmp3 + EV*tmp4 + FV*tmp5 + 64*src2[2*srcStride]); \ 388 OP(dst[3*dstStride], AV*tmp1 + BV*tmp2 + CV*tmp3 + DV*tmp4 + EV*tmp5 + FV*tmp6 + 64*src2[3*srcStride]); \ 389 OP(dst[4*dstStride], AV*tmp2 + BV*tmp3 + CV*tmp4 + DV*tmp5 + EV*tmp6 + FV*tmp7 + 64*src2[4*srcStride]); \ 390 OP(dst[5*dstStride], AV*tmp3 + BV*tmp4 + CV*tmp5 + DV*tmp6 + EV*tmp7 + FV*tmp8 + 64*src2[5*srcStride]); \ 391 OP(dst[6*dstStride], AV*tmp4 + BV*tmp5 + CV*tmp6 + DV*tmp7 + EV*tmp8 + FV*tmp9 + 64*src2[6*srcStride]); \ 392 OP(dst[7*dstStride], AV*tmp5 + BV*tmp6 + CV*tmp7 + DV*tmp8 + EV*tmp9 + FV*tmp10 + 64*src2[7*srcStride]); \ 414 OP(dst[0*dstStride], AV*tmpB + BV*tmpA + CV*tmp [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Constants.cpp | 46 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isNegativeZeroValue() 47 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat()) in isNegativeZeroValue() 48 if (CV->getElementAsAPFloat(0).isNegZero()) in isNegativeZeroValue() 51 if (const ConstantVector *CV = dyn_cast<ConstantVector>(this)) in isNegativeZeroValue() 52 if (ConstantFP *SplatCFP = dyn_cast_or_null<ConstantFP>(CV->getSplatValue())) in isNegativeZeroValue() 72 if (const ConstantDataVector *CV = dyn_cast<ConstantDataVector>(this)) in isZeroValue() 73 if (CV->getElementType()->isFloatingPointTy() && CV->isSplat()) in isZeroValue() 74 if (CV in isZeroValue() [all...] |
H A D | ConstantFold.cpp | 45 static Constant *BitCastConstantVector(Constant *CV, VectorType *DstTy) { in BitCastConstantVector() argument 47 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy); in BitCastConstantVector() 48 if (CV->isNullValue()) return Constant::getNullValue(DstTy); in BitCastConstantVector() 54 if (NumElts != CV->getType()->getVectorNumElements()) in BitCastConstantVector() 60 Type *Ty = IntegerType::get(CV->getContext(), 32); in BitCastConstantVector() 63 ConstantExpr::getExtractElement(CV, ConstantInt::get(Ty, i)); in BitCastConstantVector() 974 const APFloat &CV = CFP->getValueAPF(); in ConstantFoldUnaryInstruction() local 979 return ConstantFP::get(C->getContext(), neg(CV)); in ConstantFoldUnaryInstruction() 1038 const APInt *CV; in ConstantFoldBinaryInstruction() local 1040 if (match(C1, m_APInt(CV)) || matc in ConstantFoldBinaryInstruction() 2160 auto *CV = cast<ConstantDataVector>(Idxs[0]); isInBoundsIndices() local 2398 auto *CV = cast<ConstantDataVector>(Idxs[i]); ConstantFoldGetElementPtr() local [all...] |
H A D | AsmWriter.cpp | 1292 static void WriteConstantInternal(raw_ostream &Out, const Constant *CV, in WriteConstantInternal() argument 1296 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { in WriteConstantInternal() 1305 if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { in WriteConstantInternal() 1384 if (isa<ConstantAggregateZero>(CV)) { in WriteConstantInternal() 1389 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) { in WriteConstantInternal() 1400 if (const ConstantArray *CA = dyn_cast<ConstantArray>(CV)) { in WriteConstantInternal() 1419 if (const ConstantDataArray *CA = dyn_cast<ConstantDataArray>(CV)) { in WriteConstantInternal() 1447 if (const ConstantStruct *CS = dyn_cast<ConstantStruct>(CV)) { in WriteConstantInternal() 1477 if (isa<ConstantVector>(CV) || isa<ConstantDataVector>(CV)) { in WriteConstantInternal() 2237 const Constant *CV = dyn_cast<Constant>(V); WriteAsOperandInternal() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 2214 const MCExpr *AsmPrinter::lowerConstant(const Constant *CV) { in lowerConstant() argument 2217 if (CV->isNullValue() || isa<UndefValue>(CV)) in lowerConstant() 2220 if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) in lowerConstant() 2223 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CV)) in lowerConstant() 2226 if (const BlockAddress *BA = dyn_cast<BlockAddress>(CV)) in lowerConstant() 2229 const ConstantExpr *CE = dyn_cast<ConstantExpr>(CV); in lowerConstant() 2281 Op = ConstantExpr::getIntegerCast(Op, DL.getIntPtrType(CV->getType()), in lowerConstant() 2483 const ConstantVector *CV, AsmPrinter &AP) { in emitGlobalConstantVector() 2484 for (unsigned i = 0, e = CV in emitGlobalConstantVector() 2482 emitGlobalConstantVector(const DataLayout &DL, const ConstantVector *CV, AsmPrinter &AP) emitGlobalConstantVector() argument 2717 emitGlobalConstantImpl(const DataLayout &DL, const Constant *CV, AsmPrinter &AP, const Constant *BaseCV, uint64_t Offset) emitGlobalConstantImpl() argument 2798 EmitGlobalConstant(const DataLayout &DL, const Constant *CV) EmitGlobalConstant() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
H A D | Evaluator.h | 66 if (Constant *CV = dyn_cast<Constant>(V)) return CV; in getVal()
|
/third_party/libabigail/include/ |
H A D | abg-ir.h | 2199 enum CV enum in abigail::ir::qualified_type_def 2207 qualified_type_def(type_base_sptr type, CV quals, const location& locus); 2209 qualified_type_def(const environment& env, CV quals, const location& locus); 2223 CV 2227 set_cv_quals(CV cv_quals); 2257 qualified_type_def::CV 2258 operator|(qualified_type_def::CV, qualified_type_def::CV); 2260 qualified_type_def::CV& 2261 operator|=(qualified_type_def::CV [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | LoopUnrollAnalyzer.cpp | 135 Constant *CV = CDS->getElementAsConstant(Index); in visitLoad() local 136 assert(CV && "Constant expected."); in visitLoad() 137 SimplifiedValues[&I] = CV; in visitLoad()
|
H A D | BranchProbabilityInfo.cpp | 700 ConstantInt *CV = GetConstantInt(RHS); in calcZeroHeuristics() local 701 if (!CV) in calcZeroHeuristics() 742 } else if (CV->isZero()) { in calcZeroHeuristics() 763 } else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) { in calcZeroHeuristics() 767 } else if (CV->isMinusOne()) { in calcZeroHeuristics()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | AsmPrinter.h | 369 virtual const MCExpr *lowerConstant(const Constant *CV); 372 void EmitGlobalConstant(const DataLayout &DL, const Constant *CV); 442 virtual void EmitXXStructor(const DataLayout &DL, const Constant *CV) { in EmitXXStructor() argument 443 EmitGlobalConstant(DL, CV); in EmitXXStructor()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngine.cpp | 921 const ConstantVector *CV = dyn_cast<ConstantVector>(C); in getConstantValue() local 927 } else if (CV || CAZ) { in getConstantValue() 945 if(CV) { in getConstantValue() 947 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 949 CV->getOperand(i))->getValueAPF().convertToFloat(); in getConstantValue() 967 if(CV) { in getConstantValue() 969 if (!isa<UndefValue>(CV->getOperand(i))) in getConstantValue() 971 CV->getOperand(i))->getValueAPF().convertToDouble(); in getConstantValue() 989 if(CV) { in getConstantValue() 991 if (!isa<UndefValue>(CV in getConstantValue() [all...] |
/third_party/benchmark/test/ |
H A D | statistics_gtest.cc | 28 TEST(StatisticsTest, CV) { in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.h | 236 const MCExpr *lowerConstantForGV(const Constant *CV, bool ProcessingGeneric); 264 void bufferAggregateConstant(const Constant *CV, AggBuffer *aggBuffer);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
H A D | ObjCARCContract.cpp | 327 const ColorVector &CV = BlockColors.find(InsertBefore->getParent())->second; in createCallInst() local 328 assert(CV.size() == 1 && "non-unique color for block!"); in createCallInst() 329 Instruction *EHPad = CV.front()->getFirstNonPHI(); in createCallInst()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSimplifyDemanded.cpp | 1375 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(0))) { in SimplifyDemandedVectorElts() 1377 Value = CV->getOperand(LHSValIdx); in SimplifyDemandedVectorElts() 1382 if (auto *CV = dyn_cast<ConstantVector>(Shuffle->getOperand(1))) { in SimplifyDemandedVectorElts() 1384 Value = CV->getOperand(RHSValIdx); in SimplifyDemandedVectorElts() 1427 if (auto *CV = dyn_cast<ConstantVector>(Sel->getCondition())) { in SimplifyDemandedVectorElts() 1431 Constant *CElt = CV->getAggregateElement(i); in SimplifyDemandedVectorElts() 1528 if (auto *CV = dyn_cast<ConstantVector>(II->getOperand(2))) in SimplifyDemandedVectorElts() 1530 Constant *CElt = CV->getAggregateElement(i); in SimplifyDemandedVectorElts()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | IRTranslator.cpp | 2164 } else if (auto CV = dyn_cast<ConstantDataVector>(&C)) { in translate() 2166 if (CV->getNumElements() == 1) in translate() 2167 return translate(*CV->getElementAsConstant(0), Reg); in translate() 2169 for (unsigned i = 0; i < CV->getNumElements(); ++i) { in translate() 2170 Constant &Elt = *CV->getElementAsConstant(i); in translate() 2183 } else if (auto CV = dyn_cast<ConstantVector>(&C)) { in translate() 2184 if (CV->getNumOperands() == 1) in translate() 2185 return translate(*CV->getOperand(0), Reg); in translate() 2187 for (unsigned i = 0; i < CV->getNumOperands(); ++i) { in translate() 2188 Ops.push_back(getOrCreateVReg(*CV in translate() [all...] |