Searched refs:ByArg (Results 1 – 9 of 9) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndexYAML.h | 41 struct ScalarEnumerationTraits<WholeProgramDevirtResolution::ByArg::Kind> { 43 WholeProgramDevirtResolution::ByArg::Kind &value) { 44 io.enumCase(value, "Indir", WholeProgramDevirtResolution::ByArg::Indir); 46 WholeProgramDevirtResolution::ByArg::UniformRetVal); 48 WholeProgramDevirtResolution::ByArg::UniqueRetVal); 50 WholeProgramDevirtResolution::ByArg::VirtualConstProp); 54 template <> struct MappingTraits<WholeProgramDevirtResolution::ByArg> { 55 static void mapping(IO &io, WholeProgramDevirtResolution::ByArg &res) { 65 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>> { 68 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) { [all …]
|
D | ModuleSummaryIndex.h | 690 struct ByArg { 713 std::map<std::vector<uint64_t>, ByArg> ResByArg;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | WholeProgramDevirt.cpp | 482 WholeProgramDevirtResolution::ByArg *Res); 514 WholeProgramDevirtResolution::ByArg *Res, 991 WholeProgramDevirtResolution::ByArg *Res) { in tryUniformRetValOpt() 1000 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt() 1110 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res, in tryUniqueRetValOpt() 1129 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt() 1213 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr; in tryVirtualConstProp() 1263 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp() 1492 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in importResolution() 1495 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: { in importResolution() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
D | LTO.cpp | 244 for (auto &ByArg : WPD.second.ResByArg) { in computeCacheKey() local 245 AddUint64(ByArg.first.size()); in computeCacheKey() 246 for (uint64_t Arg : ByArg.first) in computeCacheKey() 248 AddUnsigned(ByArg.second.TheKind); in computeCacheKey() 249 AddUint64(ByArg.second.Info); in computeCacheKey() 250 AddUnsigned(ByArg.second.Byte); in computeCacheKey() 251 AddUnsigned(ByArg.second.Bit); in computeCacheKey()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 7256 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> in ParseOptionalResByArg() 7273 WholeProgramDevirtResolution::ByArg ByArg; in ParseOptionalResByArg() local 7276 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in ParseOptionalResByArg() 7279 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in ParseOptionalResByArg() 7282 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in ParseOptionalResByArg() 7285 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in ParseOptionalResByArg() 7299 ParseUInt64(ByArg.Info)) in ParseOptionalResByArg() 7305 ParseUInt32(ByArg.Byte)) in ParseOptionalResByArg() 7311 ParseUInt32(ByArg.Bit)) in ParseOptionalResByArg() 7323 ResByArg[Args] = ByArg; in ParseOptionalResByArg()
|
D | LLParser.h | 374 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | AsmWriter.cpp | 2669 WholeProgramDevirtResolution::ByArg::Kind K) { in getWholeProgDevirtResByArgKindName() 2671 case WholeProgramDevirtResolution::ByArg::Indir: in getWholeProgDevirtResByArgKindName() 2673 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in getWholeProgDevirtResByArgKindName() 2675 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: in getWholeProgDevirtResByArgKindName() 2677 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: in getWholeProgDevirtResByArgKindName() 2761 WholeProgramDevirtResolution::ByArg::UniformRetVal || in printWPDRes() 2763 WholeProgramDevirtResolution::ByArg::UniqueRetVal) in printWPDRes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 3405 const WholeProgramDevirtResolution::ByArg &ByArg) { in writeWholeProgramDevirtResolutionByArg() argument 3409 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg() 3410 NameVals.push_back(ByArg.Info); in writeWholeProgramDevirtResolutionByArg() 3411 NameVals.push_back(ByArg.Byte); in writeWholeProgramDevirtResolutionByArg() 3412 NameVals.push_back(ByArg.Bit); in writeWholeProgramDevirtResolutionByArg()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 5117 WholeProgramDevirtResolution::ByArg &B = in parseWholeProgramDevirtResolutionByArg() 5122 static_cast<WholeProgramDevirtResolution::ByArg::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolutionByArg()
|