/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 376 SmallVectorImpl<unsigned> &Vals); 379 SmallVectorImpl<unsigned> &Vals); 381 SmallVectorImpl<uint64_t> &Vals); 383 SmallVectorImpl<unsigned> &Vals); 586 SmallVector<unsigned, 64> Vals; in writeStringRecord() local 592 Vals.push_back(Str[i]); in writeStringRecord() 596 Stream.EmitRecord(Code, Vals, AbbrevToUse); in writeStringRecord() 1096 SmallVector<unsigned, 64> Vals; in writeComdats() local 1099 Vals.push_back(addToStrtab(C->getName())); in writeComdats() 1100 Vals.push_back(C->getName().size()); in writeComdats() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitstream/ |
D | BitstreamWriter.h | 296 void EmitRecordWithAbbrevImpl(unsigned Abbrev, ArrayRef<uintty> Vals, in EmitRecordWithAbbrevImpl() argument 325 assert(RecordIdx < Vals.size() && "Invalid abbrev/record"); in EmitRecordWithAbbrevImpl() 326 EmitAbbreviatedLiteral(Op, Vals[RecordIdx]); in EmitRecordWithAbbrevImpl() 336 assert(RecordIdx == Vals.size() && in EmitRecordWithAbbrevImpl() 349 EmitVBR(static_cast<uint32_t>(Vals.size()-RecordIdx), 6); in EmitRecordWithAbbrevImpl() 352 for (unsigned e = Vals.size(); RecordIdx != e; ++RecordIdx) in EmitRecordWithAbbrevImpl() 353 EmitAbbreviatedField(EltEnc, Vals[RecordIdx]); in EmitRecordWithAbbrevImpl() 360 assert(RecordIdx == Vals.size() && in EmitRecordWithAbbrevImpl() 368 emitBlob(Vals.slice(RecordIdx)); in EmitRecordWithAbbrevImpl() 371 assert(RecordIdx < Vals.size() && "Invalid abbrev/record"); in EmitRecordWithAbbrevImpl() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BPFISelDAGToDAG.cpp | 85 val_vec_type &Vals, uint64_t Offset); 87 val_vec_type &Vals, int Offset); 89 val_vec_type &Vals, int Offset); 91 val_vec_type &Vals, int Offset); 366 val_vec_type Vals(total_size, 0); in getConstantFieldValue() local 367 if (fillGenericConstant(DL, Init, Vals, 0) == false) in getConstantFieldValue() 369 cs_vals_[static_cast<const void *>(Init)] = Vals; in getConstantFieldValue() 370 TmpVal = std::move(Vals); in getConstantFieldValue() 393 val_vec_type &Vals, uint64_t Offset) { in fillGenericConstant() argument 409 Vals[Offset + i] = DL.isLittleEndian() in fillGenericConstant() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | MDBuilder.cpp | 45 SmallVector<Metadata *, 4> Vals(Weights.size() + 1); in createBranchWeights() local 46 Vals[0] = createString("branch_weights"); in createBranchWeights() 50 Vals[i + 1] = createConstant(ConstantInt::get(Int32Ty, Weights[i])); in createBranchWeights() 52 return MDNode::get(Context, Vals); in createBranchWeights() 202 SmallVector<Metadata *, 4> Vals(Fields.size() * 3); in createTBAAStructNode() local 205 Vals[i * 3 + 0] = createConstant(ConstantInt::get(Int64, Fields[i].Offset)); in createTBAAStructNode() 206 Vals[i * 3 + 1] = createConstant(ConstantInt::get(Int64, Fields[i].Size)); in createTBAAStructNode() 207 Vals[i * 3 + 2] = Fields[i].Type; in createTBAAStructNode() 209 return MDNode::get(Context, Vals); in createTBAAStructNode() 306 Metadata *Vals[] = { in createIrrLoopHeaderWeight() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Format.h | 91 std::tuple<Ts...> Vals; 97 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); 99 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); 105 : format_object_base(fmt), Vals(vals...) { 124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) { 125 return format_object<Ts...>(Fmt, Vals...);
|
D | FormatVariadic.h | 236 inline auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object<decltype( 237 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...))> { 239 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...)); 242 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Format.h | 91 std::tuple<Ts...> Vals; 97 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); 99 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...); 105 : format_object_base(fmt), Vals(vals...) { 124 inline format_object<Ts...> format(const char *Fmt, const Ts &... Vals) { 125 return format_object<Ts...>(Fmt, Vals...);
|
D | FormatVariadic.h | 253 inline auto formatv(const char *Fmt, Ts &&... Vals) -> formatv_object<decltype( 254 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...))> { 256 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...)); 259 std::make_tuple(detail::build_format_adapter(std::forward<Ts>(Vals))...));
|
D | Error.h | 1198 const Ts &... Vals) { in createStringError() 1201 Stream << format(Fmt, Vals...); in createStringError() 1213 const Ts &... Vals) { in createStringError() 1214 return createStringError(std::make_error_code(EC), Fmt, Vals...); in createStringError()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitstream/Reader/ |
D | BitstreamReader.cpp | 206 SmallVectorImpl<uint64_t> &Vals, in readRecord() argument 220 Vals.push_back(MaybeVal.get()); in readRecord() 247 Vals.push_back(Op.getLiteralValue()); in readRecord() 254 Vals.push_back(MaybeVal.get()); in readRecord() 283 Vals.push_back(MaybeVal.get()); in readRecord() 291 Vals.push_back(MaybeVal.get()); in readRecord() 298 Vals.push_back(BitCodeAbbrevOp::DecodeChar6(MaybeVal.get())); in readRecord() 320 Vals.append(NumElts, 0); in readRecord() 338 Vals.push_back((unsigned char)*Ptr++); in readRecord()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocEntry.h | 136 ArrayRef<DbgValueLoc> Vals) in DebugLocEntry() argument 138 addValues(Vals); in DebugLocEntry() 157 void addValues(ArrayRef<DbgValueLoc> Vals) { in addValues() argument 158 Values.append(Vals.begin(), Vals.end()); in addValues()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/ |
D | NaClBitstreamReader.cpp | 194 SmallVectorImpl<uint64_t> &Vals) { in readArrayAbbrev() argument 196 Vals.push_back(readArrayAbbreviatedField(Op)); in readArrayAbbrev() 201 SmallVectorImpl<uint64_t> &Vals) { in readRecord() argument 206 Vals.push_back(ReadVBR64(6)); in readRecord() 221 readArrayAbbrev(Op, Value - 1, Vals); in readRecord() 232 readArrayAbbrev(Abbv->getOperandInfo(i), Value, Vals); in readRecord() 236 Vals.push_back(Value); in readRecord()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Value.h | 800 inline Value **unwrap(LLVMValueRef *Vals) { 801 return reinterpret_cast<Value**>(Vals); 805 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) { 807 for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I) 811 return reinterpret_cast<T**>(Vals); 814 inline LLVMValueRef *wrap(const Value **Vals) { 815 return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | Value.h | 907 inline Value **unwrap(LLVMValueRef *Vals) { 908 return reinterpret_cast<Value**>(Vals); 912 inline T **unwrap(LLVMValueRef *Vals, unsigned Length) { 914 for (LLVMValueRef *I = Vals, *E = Vals + Length; I != E; ++I) 918 return reinterpret_cast<T**>(Vals); 921 inline LLVMValueRef *wrap(const Value **Vals) { 922 return reinterpret_cast<LLVMValueRef*>(const_cast<Value**>(Vals));
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeTypesGeneric.cpp | 120 SmallVector<SDValue, 8> Vals; in ExpandRes_BITCAST() local 122 Vals.push_back(DAG.getNode( in ExpandRes_BITCAST() 128 for (unsigned e = Vals.size(); e - Slot > 2; Slot += 2, e += 1) { in ExpandRes_BITCAST() 131 SDValue LHS = Vals[Slot]; in ExpandRes_BITCAST() 132 SDValue RHS = Vals[Slot + 1]; in ExpandRes_BITCAST() 137 Vals.push_back(DAG.getNode( in ExpandRes_BITCAST() 142 Lo = Vals[Slot++]; in ExpandRes_BITCAST() 143 Hi = Vals[Slot++]; in ExpandRes_BITCAST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | CGProfile.cpp | 90 Metadata *Vals[] = {ValueAsMetadata::get(E.first.first), in addModuleFlags() local 94 Nodes.push_back(MDNode::get(Context, Vals)); in addModuleFlags()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | RegisterCoalescer.cpp | 2315 SmallVector<Val, 8> Vals; member in __anonccb485930311::JoinVals 2380 TRI(TRI), Assignments(LR.getNumValNums(), -1), Vals(LR.getNumValNums()) {} in JoinVals() 2426 return Vals[Num].Resolution; in getResolution() 2525 Val &V = Vals[ValNo]; in analyzeValue() 2575 V.ValidLanes |= Vals[V.RedefVNI->id].ValidLanes; in analyzeValue() 2613 Val &OtherV = Other.Vals[OtherVNI->id]; in analyzeValue() 2640 Val &OtherV = Other.Vals[V.OtherVNI->id]; in analyzeValue() 2763 Val &V = Vals[ValNo]; in computeAssignment() 2775 assert(Other.Vals[V.OtherVNI->id].isAnalyzed() && "Missing recursion"); in computeAssignment() 2787 Val &OtherV = Other.Vals[V.OtherVNI->id]; in computeAssignment() [all …]
|
D | TailDuplicator.cpp | 336 AvailableValsTy Vals; in addSSAUpdateEntry() local 337 Vals.push_back(std::make_pair(BB, NewReg)); in addSSAUpdateEntry() 338 SSAUpdateVals.insert(std::make_pair(OrigReg, Vals)); in addSSAUpdateEntry()
|
/third_party/json/test/thirdparty/Fuzzer/ |
D | FuzzerTracePC.cpp | 305 uint64_t *Vals = Cases + 2; in __sanitizer_cov_trace_switch() local 319 if ((Val | Vals[Idx]) < TwoIn32) in __sanitizer_cov_trace_switch() 321 static_cast<uint32_t>(Vals[Idx])); in __sanitizer_cov_trace_switch() 323 fuzzer::TPC.HandleCmp(PC + Idx, Val, Vals[Idx]); in __sanitizer_cov_trace_switch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | GVN.cpp | 1631 LeaderTableEntry *Vals = &Gvn.LeaderTable[Num]; in areAllValsInBB() local 1632 while (Vals && Vals->BB == BB) in areAllValsInBB() 1633 Vals = Vals->Next; in areAllValsInBB() 1634 return !Vals; in areAllValsInBB() 1655 LeaderTableEntry *Vals = &Gvn.LeaderTable[Num]; in areCallValsEqual() local 1656 while (Vals) { in areCallValsEqual() 1657 Call = dyn_cast<CallInst>(Vals->Val); in areCallValsEqual() 1660 Vals = Vals->Next; in areCallValsEqual() 1755 LeaderTableEntry Vals = LeaderTable[num]; in findLeader() local 1756 if (!Vals.Val) return nullptr; in findLeader() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
D | InstrProf.cpp | 953 SmallVector<Metadata *, 3> Vals; in annotateValueSite() local 955 Vals.push_back(MDHelper.createString("VP")); in annotateValueSite() 957 Vals.push_back(MDHelper.createConstant( in annotateValueSite() 960 Vals.push_back( in annotateValueSite() 966 Vals.push_back(MDHelper.createConstant( in annotateValueSite() 968 Vals.push_back(MDHelper.createConstant( in annotateValueSite() 973 Inst.setMetadata(LLVMContext::MD_prof, MDNode::get(Ctx, Vals)); in annotateValueSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | TGParser.cpp | 1927 SmallVector<Init*, 16> Vals; in ParseSimpleValue() local 1930 ParseValueList(Vals, CurRec); in ParseSimpleValue() 1931 if (Vals.empty()) return nullptr; in ParseSimpleValue() 1944 for (unsigned i = 0, e = Vals.size(); i != e; ++i) { in ParseSimpleValue() 1949 if (BitsInit *BI = dyn_cast<BitsInit>(Vals[i])) { in ParseSimpleValue() 1955 if (VarInit *VI = dyn_cast<VarInit>(Vals[i])) { in ParseSimpleValue() 1964 Init *Bit = Vals[i]->getCastTo(BitRecTy::get()); in ParseSimpleValue() 1966 Error(BraceLoc, "Element #" + Twine(i) + " (" + Vals[i]->getAsString() + in ParseSimpleValue() 1977 SmallVector<Init*, 16> Vals; in ParseSimpleValue() local 1993 ParseValueList(Vals, CurRec, nullptr, in ParseSimpleValue() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 327 Node Phi(wasm::LocalType, uint32_t Count, Node *Vals, Node Control) { in Phi() argument 330 LOG(out << ", " << Vals[i]); in Phi() 339 auto *Dest = makeVariable(Vals[0].toOperand()->getType(), Control); in Phi() 347 auto *Op = Vals[i].toOperand(); in Phi() 1024 Node Return(uint32_t Count, Node *Vals) { in Return() argument 1028 LOG(out << Vals[0]); in Return() 1032 1 == Count ? InstRet::create(Func, Vals[0]) : InstRet::create(Func); in Return()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCDwarf.h | 568 static MCCFIInstruction createEscape(MCSymbol *L, StringRef Vals) { in createEscape() argument 569 return MCCFIInstruction(OpEscape, L, 0, 0, Vals); in createEscape()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | DenseMap.h | 718 DenseMap(std::initializer_list<typename BaseT::value_type> Vals) { in DenseMap() argument 719 init(Vals.size()); in DenseMap() 720 this->insert(Vals.begin(), Vals.end()); in DenseMap()
|