/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | JSONBackend.cpp | 147 for (const RecordVal &RV : Def.getValues()) { in run() 148 if (!Def.isTemplateArg(RV.getNameInit())) { in run() 149 auto Name = RV.getNameInitAsString(); in run() 150 if (RV.getPrefix()) in run() 152 obj[Name] = translateInit(*RV.getValue()); in run()
|
H A D | TGParser.cpp | 71 static bool checkBitsConcrete(Record &R, const RecordVal &RV) { in checkBitsConcrete() argument 72 BitsInit *BV = cast<BitsInit>(RV.getValue()); in checkBitsConcrete() 91 for (const RecordVal &RV : R.getValues()) { in checkConcrete() 96 if (RV.getPrefix()) in checkConcrete() 99 if (Init *V = RV.getValue()) { in checkConcrete() 100 bool Ok = isa<BitsInit>(V) ? checkBitsConcrete(R, RV) : V->isConcrete(); in checkConcrete() 103 Twine("Initializer of '") + RV.getNameInitAsString() + in checkConcrete() 106 RV.getValue()->getAsString()); in checkConcrete() 140 bool TGParser::AddValue(Record *CurRec, SMLoc Loc, const RecordVal &RV) { in AddValue() argument 144 if (RecordVal *ERV = CurRec->getValue(RV in AddValue() 166 RecordVal *RV = CurRec->getValue(ValName); SetValue() local 866 const RecordVal *RV = TemplateRec->getValue(TemplateArgName); ParseIDValue() local 2368 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); ParseValueList() local 2397 const RecordVal *RV = ArgsRec->getValue(TArgs[ArgN]); ParseValueList() local [all...] |
H A D | Record.cpp | 1610 if (const RecordVal *RV = Def->getValue(FieldName)) 1611 return RV->getType(); 2152 void Record::resolveReferencesTo(const RecordVal *RV) { 2153 RecordValResolver R(*this, RV); 2154 resolveReferences(R, RV); 2171 const RecordVal *RV = R.getValue(TA); 2172 assert(RV && "Template argument record not found??"); 2173 RV->print(OS, false); 2435 if (RecordVal *RV = getCurrentRecord()->getValue(VarName)) { 2436 if (!isa<UnsetInit>(RV [all...] |
H A D | TGParser.h | 198 bool AddValue(Record *TheRec, SMLoc Loc, const RecordVal &RV);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
H A D | Mips16HardFloat.cpp | 280 FPReturnVariant RV = whichFPReturnVariant(FStub->getReturnType()); in assureFPCallStub() local 286 if (RV != NoFPRet) { in assureFPCallStub() 294 switch (RV) { in assureFPCallStub() 338 if (RV != NoFPRet) in assureFPCallStub() 395 FPReturnVariant RV = whichFPReturnVariant(T); in fixupFPReturnAndCall() local 396 if (RV == NoFPRet) continue; in fixupFPReturnAndCall() 401 const char *Name = Helper[RV]; in fixupFPReturnAndCall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | IPConstantPropagation.cpp | 183 Value *RV = RetVals[i]; in PropagateConstantReturn() local 184 if (!RV) in PropagateConstantReturn() 201 if (isa<UndefValue>(RV)) { in PropagateConstantReturn() 207 if (RV == V) in PropagateConstantReturn()
|
H A D | Attributor.cpp | 650 auto CheckReturnValue = [&](Value &RV) -> bool { in clampReturnedValueStates() 651 const IRPosition &RVPos = IRPosition::value(RV); in clampReturnedValueStates() 653 LLVM_DEBUG(dbgs() << "[Attributor] RV: " << RV << " AA: " << AA.getAsStr() in clampReturnedValueStates() 660 LLVM_DEBUG(dbgs() << "[Attributor] AA State: " << AAS << " RV State: " << T in clampReturnedValueStates() 1132 auto Pred = [&](Value &RV) -> bool { in getAssumedUniqueReturnValue() 1136 if (UniqueRV.hasValue() && UniqueRV != &RV && in getAssumedUniqueReturnValue() 1137 !(isa<UndefValue>(RV) || isa<UndefValue>(UniqueRV.getValue()))) { in getAssumedUniqueReturnValue() 1143 if (!UniqueRV.hasValue() || !isa<UndefValue>(RV)) in getAssumedUniqueReturnValue() 1144 UniqueRV = &RV; in getAssumedUniqueReturnValue() 1164 Value *RV = It.first; checkForAllReturnedValuesAndReturnInsts() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | Evaluator.cpp | 311 Constant *Evaluator::castCallResultIfNeeded(Value *CallExpr, Constant *RV) { in castCallResultIfNeeded() argument 313 if (!RV || !CE || CE->getOpcode() != Instruction::BitCast) in castCallResultIfNeeded() 314 return RV; in castCallResultIfNeeded() 318 RV = ConstantFoldLoadThroughBitcast(RV, FT->getReturnType(), DL); in castCallResultIfNeeded() 319 if (!RV) in castCallResultIfNeeded() 322 return RV; in castCallResultIfNeeded()
|
H A D | VNCoercion.cpp | 441 Value *RV = NewLoad; in getLoadValueForLoad() local 443 RV = Builder.CreateLShr(RV, (NewLoadSize - SrcValStoreSize) * 8); in getLoadValueForLoad() 444 RV = Builder.CreateTrunc(RV, SrcVal->getType()); in getLoadValueForLoad() 445 SrcVal->replaceAllUsesWith(RV); in getLoadValueForLoad()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineFunctionPass.cpp | 73 bool RV = runOnMachineFunction(MF); in runOnFunction() local 100 return RV; in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | BasicBlock.cpp | 161 if (Value *RV = RI->getReturnValue()) { in getTerminatingMustTailCall() 162 if (RV != Prev) in getTerminatingMustTailCall() 167 RV = BI->getOperand(0); in getTerminatingMustTailCall() 169 if (!Prev || RV != Prev) in getTerminatingMustTailCall()
|
H A D | Value.cpp | 507 if (const Value *RV = Call->getReturnedArgOperand()) { in stripPointerCastsAndOffsets() 508 V = RV; in stripPointerCastsAndOffsets() 596 if (const Value *RV = Call->getReturnedArgOperand()) in stripAndAccumulateConstantOffsets() 597 V = RV; in stripAndAccumulateConstantOffsets()
|
/third_party/ffmpeg/libswscale/x86/ |
H A D | input.asm | 34 %define RV 0x3838 75 ; bgr_Vcoeff_3x56: times 2 dw RV, 0, GV, RV 76 ; rgb_Vcoeff_12x4: times 2 dw RV, GV, 0, RV 87 ; rgba_Vcoeff_rb: times 4 dw RV, BV 88 ; rgba_Vcoeff_br: times 4 dw BV, RV 283 paddd m2, m3 ; (dword) { Bx*BV + Gx*GV + Rx*RV }[0-3] 301 paddd m4, m5 ; (dword) { Bx*BV + Gx*GV + Rx*RV }[4-7] 443 pmaddwd m3, m1, coeffV1 ; (dword) { Bx*BV + Rx*RV }[ [all...] |
H A D | rgb2rgb.c | 83 #define RV ((int)( 0.439*(1<<RGB2YUV_SHIFT)+0.5)) macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
H A D | Record.h | 1422 inline raw_ostream &operator<<(raw_ostream &OS, const RecordVal &RV) { in operator <<() argument 1423 RV.print(OS << " "); in operator <<() 1545 void addValue(const RecordVal &RV) { in addValue() argument 1546 assert(getValue(RV.getNameInit()) == nullptr && "Value already added!"); in addValue() 1547 Values.push_back(RV); in addValue() 1602 /// If anything in this record refers to RV, replace the 1603 /// reference to RV with the RHS of RV. If RV is null, we resolve all 1605 void resolveReferencesTo(const RecordVal *RV); 1936 const RecordVal *RV; global() member in llvm::final::final::LessRecordRegister::final 1939 RecordValResolver(Record &R, const RecordVal *RV) RecordValResolver() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/MCTargetDesc/ |
H A D | LanaiBaseInfo.h | 62 case Lanai::RV: in getLanaiRegisterNumbering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/ |
H A D | Evaluator.h | 86 Constant *castCallResultIfNeeded(Value *CallExpr, Constant *RV);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | simple_ilist.h | 275 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | simple_ilist.h | 279 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFastISel.cpp | 1313 Value *RV = Ret->getOperand(0); in selectRet() 1314 if (!Subtarget->hasSIMD128() && RV->getType()->isVectorTy()) in selectRet() 1317 switch (getSimpleType(RV->getType())) { in selectRet() 1339 Reg = getRegForSignedValue(RV); in selectRet() 1341 Reg = getRegForUnsignedValue(RV); in selectRet() 1343 Reg = getRegForValue(RV); in selectRet()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
H A D | SparcISelLowering.cpp | 1308 SDValue RV; local 1311 RV = Chain.getValue(0); 1314 if (!RV.getNode()) { 1315 RV = DAG.getCopyFromReg(Chain, DL, Reg, RVLocs[i].getLocVT(), InGlue); 1316 Chain = RV.getValue(1); 1322 RV = DAG.getNode(ISD::SRL, DL, VA.getLocVT(), RV, 1329 RV = DAG.getNode(ISD::AssertSext, DL, VA.getLocVT(), RV, 1333 RV [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMFastISel.cpp | 2118 const Value *RV = Ret->getOperand(0); in SelectRet() local 2119 unsigned Reg = getRegForValue(RV); in SelectRet() 2137 EVT RVEVT = TLI.getValueType(DL, RV->getType()); in SelectRet() 2468 bool RV; in ARMTryEmitSmallMemCpy() local 2470 RV = ARMEmitLoad(VT, ResultReg, Src); in ARMTryEmitSmallMemCpy() 2471 assert(RV && "Should be able to handle this load."); in ARMTryEmitSmallMemCpy() 2472 RV = ARMEmitStore(VT, ResultReg, Dest); in ARMTryEmitSmallMemCpy() 2473 assert(RV && "Should be able to handle this store."); in ARMTryEmitSmallMemCpy() 2474 (void)RV; in ARMTryEmitSmallMemCpy()
|
/third_party/mesa3d/src/amd/addrlib/src/ |
H A D | amdgpu_asic_addr.h | 63 #define FAMILY_IS_RV(f) FAMILY_IS(f, RV)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/Disassembler/ |
H A D | LanaiDisassembler.cpp | 157 Lanai::R6, Lanai::R7, Lanai::RV, Lanai::R9, Lanai::RR1, Lanai::RR2,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 1210 SDValue RV = in PromoteIntBinOp() local 1219 CombineTo(Op.getNode(), RV); in PromoteIntBinOp() 1280 SDValue RV = in PromoteIntShiftOp() local 1288 return RV; in PromoteIntShiftOp() 1452 SDValue RV = combine(N); in Run() local 1454 if (!RV.getNode()) in Run() 1463 if (RV.getNode() == N) in Run() 1467 RV.getOpcode() != ISD::DELETED_NODE && in Run() 1470 LLVM_DEBUG(dbgs() << " ... into: "; RV.getNode()->dump(&DAG)); in Run() 1472 if (N->getNumValues() == RV in Run() 1631 SDValue RV = visit(N); combine() local 15798 bool RV = false; MergeConsecutiveStores() local [all...] |