Home
last modified time | relevance | path

Searched refs:ByArg (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DModuleSummaryIndexYAML.h40 struct ScalarEnumerationTraits<WholeProgramDevirtResolution::ByArg::Kind> {
42 WholeProgramDevirtResolution::ByArg::Kind &value) {
43 io.enumCase(value, "Indir", WholeProgramDevirtResolution::ByArg::Indir);
45 WholeProgramDevirtResolution::ByArg::UniformRetVal);
47 WholeProgramDevirtResolution::ByArg::UniqueRetVal);
49 WholeProgramDevirtResolution::ByArg::VirtualConstProp);
53 template <> struct MappingTraits<WholeProgramDevirtResolution::ByArg> {
54 static void mapping(IO &io, WholeProgramDevirtResolution::ByArg &res) {
64 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>> {
67 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> &V) {
[all …]
DModuleSummaryIndex.h839 struct ByArg {
862 std::map<std::vector<uint64_t>, ByArg> ResByArg;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DWholeProgramDevirt.cpp523 WholeProgramDevirtResolution::ByArg *Res);
555 WholeProgramDevirtResolution::ByArg *Res,
1217 WholeProgramDevirtResolution::ByArg *Res) { in tryUniformRetValOpt()
1226 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in tryUniformRetValOpt()
1335 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res, in tryUniqueRetValOpt()
1354 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in tryUniqueRetValOpt()
1438 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr; in tryVirtualConstProp()
1488 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in tryVirtualConstProp()
1729 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in importResolution()
1732 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: { in importResolution()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTO.cpp261 for (auto &ByArg : WPD.second.ResByArg) { in computeLTOCacheKey() local
262 AddUint64(ByArg.first.size()); in computeLTOCacheKey()
263 for (uint64_t Arg : ByArg.first) in computeLTOCacheKey()
265 AddUnsigned(ByArg.second.TheKind); in computeLTOCacheKey()
266 AddUint64(ByArg.second.Info); in computeLTOCacheKey()
267 AddUnsigned(ByArg.second.Byte); in computeLTOCacheKey()
268 AddUnsigned(ByArg.second.Bit); in computeLTOCacheKey()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLParser.cpp7820 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg> in ParseOptionalResByArg()
7837 WholeProgramDevirtResolution::ByArg ByArg; in ParseOptionalResByArg() local
7840 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::Indir; in ParseOptionalResByArg()
7843 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal; in ParseOptionalResByArg()
7846 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal; in ParseOptionalResByArg()
7849 ByArg.TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp; in ParseOptionalResByArg()
7863 ParseUInt64(ByArg.Info)) in ParseOptionalResByArg()
7869 ParseUInt32(ByArg.Byte)) in ParseOptionalResByArg()
7875 ParseUInt32(ByArg.Bit)) in ParseOptionalResByArg()
7887 ResByArg[Args] = ByArg; in ParseOptionalResByArg()
DLLParser.h382 std::map<std::vector<uint64_t>, WholeProgramDevirtResolution::ByArg>
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAsmWriter.cpp2758 WholeProgramDevirtResolution::ByArg::Kind K) { in getWholeProgDevirtResByArgKindName()
2760 case WholeProgramDevirtResolution::ByArg::Indir: in getWholeProgDevirtResByArgKindName()
2762 case WholeProgramDevirtResolution::ByArg::UniformRetVal: in getWholeProgDevirtResByArgKindName()
2764 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: in getWholeProgDevirtResByArgKindName()
2766 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: in getWholeProgDevirtResByArgKindName()
2863 WholeProgramDevirtResolution::ByArg::UniformRetVal || in printWPDRes()
2865 WholeProgramDevirtResolution::ByArg::UniqueRetVal) in printWPDRes()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3586 const WholeProgramDevirtResolution::ByArg &ByArg) { in writeWholeProgramDevirtResolutionByArg() argument
3590 NameVals.push_back(ByArg.TheKind); in writeWholeProgramDevirtResolutionByArg()
3591 NameVals.push_back(ByArg.Info); in writeWholeProgramDevirtResolutionByArg()
3592 NameVals.push_back(ByArg.Byte); in writeWholeProgramDevirtResolutionByArg()
3593 NameVals.push_back(ByArg.Bit); in writeWholeProgramDevirtResolutionByArg()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp5679 WholeProgramDevirtResolution::ByArg &B = in parseWholeProgramDevirtResolutionByArg()
5684 static_cast<WholeProgramDevirtResolution::ByArg::Kind>(Record[Slot++]); in parseWholeProgramDevirtResolutionByArg()