/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/WholeProgramDevirt/ |
D | export-single-impl.ll | 6 ; SUMMARY-NEXT: TTRes: 19 ; SUMMARY-NEXT: TTRes: 32 ; SUMMARY-NEXT: TTRes: 45 ; SUMMARY-NEXT: TTRes:
|
D | export-unique-ret-val.ll | 8 ; SUMMARY-NEXT: TTRes: 26 ; SUMMARY-NEXT: TTRes:
|
D | branch-funnel.ll | 12 ; SUMMARY-NEXT: TTRes: 25 ; SUMMARY-NEXT: TTRes: 38 ; SUMMARY-NEXT: TTRes:
|
D | export-uniform-ret-val.ll | 8 ; SUMMARY-NEXT: TTRes:
|
D | export-vcp.ll | 11 ; SUMMARY-NEXT: TTRes: 31 ; SUMMARY-NEXT: TTRes:
|
D | import-indir.ll | 33 ; SUMMARY-NEXT: TTRes:
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 839 TypeTestResolution &TTRes = in exportTypeId() local 840 ExportSummary->getOrInsertTypeIdSummary(TypeId).TTRes; in exportTypeId() 841 TTRes.TheKind = TIL.TheKind; in exportTypeId() 863 ExportConstant("align", TTRes.AlignLog2, TIL.AlignLog2); in exportTypeId() 864 ExportConstant("size_m1", TTRes.SizeM1, TIL.SizeM1); in exportTypeId() 868 TTRes.SizeM1BitWidth = (BitSize <= 32) ? 5 : 6; in exportTypeId() 870 TTRes.SizeM1BitWidth = (BitSize <= 128) ? 7 : 32; in exportTypeId() 878 return &TTRes.BitMask; in exportTypeId() 882 ExportConstant("inline_bits", TTRes.InlineBits, TIL.InlineBits); in exportTypeId() 892 const TypeTestResolution &TTRes = TidSummary->TTRes; in importTypeId() local [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/LowerTypeTests/ |
D | export-inline.ll | 30 ; SUMMARY-NEXT: TTRes: 43 ; SUMMARY-NEXT: TTRes:
|
D | export-icall.ll | 65 ; SUMMARY-NEXT: TTRes: 74 ; SUMMARY-NEXT: TTRes:
|
D | export-bytearray.ll | 37 ; SUMMARY-NEXT: TTRes: 50 ; SUMMARY-NEXT: TTRes:
|
D | export-single.ll | 15 ; SUMMARY-NEXT: TTRes:
|
D | import-unsat.ll | 14 ; SUMMARY-NEXT: TTRes:
|
D | export-allones.ll | 158 ; SUMMARY-NEXT: TTRes: 171 ; SUMMARY-NEXT: TTRes:
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/ |
D | LTO.cpp | 229 AddUnsigned(S.TTRes.TheKind); in computeCacheKey() 230 AddUnsigned(S.TTRes.SizeM1BitWidth); in computeCacheKey() 232 AddUint64(S.TTRes.AlignLog2); in computeCacheKey() 233 AddUint64(S.TTRes.SizeM1); in computeCacheKey() 234 AddUint64(S.TTRes.BitMask); in computeCacheKey() 235 AddUint64(S.TTRes.InlineBits); in computeCacheKey()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | AsmWriter.cpp | 2351 void printTypeTestResolution(const TypeTestResolution &TTRes); 2699 void AssemblyWriter::printTypeTestResolution(const TypeTestResolution &TTRes) { in printTypeTestResolution() argument 2700 Out << "typeTestRes: (kind: " << getTTResKindName(TTRes.TheKind) in printTypeTestResolution() 2701 << ", sizeM1BitWidth: " << TTRes.SizeM1BitWidth; in printTypeTestResolution() 2705 if (TTRes.AlignLog2) in printTypeTestResolution() 2706 Out << ", alignLog2: " << TTRes.AlignLog2; in printTypeTestResolution() 2707 if (TTRes.SizeM1) in printTypeTestResolution() 2708 Out << ", sizeM1: " << TTRes.SizeM1; in printTypeTestResolution() 2709 if (TTRes.BitMask) in printTypeTestResolution() 2711 Out << ", bitMask: " << (unsigned)TTRes.BitMask; in printTypeTestResolution() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ModuleSummaryIndexYAML.h | 133 io.mapOptional("TTRes", summary.TTRes);
|
D | ModuleSummaryIndex.h | 717 TypeTestResolution TTRes;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/ |
D | LLParser.cpp | 7068 ParseTypeTestResolution(TIS.TTRes)) in ParseTypeIdSummary() 7089 bool LLParser::ParseTypeTestResolution(TypeTestResolution &TTRes) { in ParseTypeTestResolution() argument 7099 TTRes.TheKind = TypeTestResolution::Unsat; in ParseTypeTestResolution() 7102 TTRes.TheKind = TypeTestResolution::ByteArray; in ParseTypeTestResolution() 7105 TTRes.TheKind = TypeTestResolution::Inline; in ParseTypeTestResolution() 7108 TTRes.TheKind = TypeTestResolution::Single; in ParseTypeTestResolution() 7111 TTRes.TheKind = TypeTestResolution::AllOnes; in ParseTypeTestResolution() 7121 ParseUInt32(TTRes.SizeM1BitWidth)) in ParseTypeTestResolution() 7130 ParseUInt64(TTRes.AlignLog2)) in ParseTypeTestResolution() 7135 if (ParseToken(lltok::colon, "expected ':'") || ParseUInt64(TTRes.SizeM1)) in ParseTypeTestResolution() [all …]
|
D | LLParser.h | 369 bool ParseTypeTestResolution(TypeTestResolution &TTRes);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 3436 NameVals.push_back(Summary.TTRes.TheKind); in writeTypeIdSummaryRecord() 3437 NameVals.push_back(Summary.TTRes.SizeM1BitWidth); in writeTypeIdSummaryRecord() 3438 NameVals.push_back(Summary.TTRes.AlignLog2); in writeTypeIdSummaryRecord() 3439 NameVals.push_back(Summary.TTRes.SizeM1); in writeTypeIdSummaryRecord() 3440 NameVals.push_back(Summary.TTRes.BitMask); in writeTypeIdSummaryRecord() 3441 NameVals.push_back(Summary.TTRes.InlineBits); in writeTypeIdSummaryRecord()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 5152 TypeId.TTRes.TheKind = static_cast<TypeTestResolution::Kind>(Record[Slot++]); in parseTypeIdSummaryRecord() 5153 TypeId.TTRes.SizeM1BitWidth = Record[Slot++]; in parseTypeIdSummaryRecord() 5154 TypeId.TTRes.AlignLog2 = Record[Slot++]; in parseTypeIdSummaryRecord() 5155 TypeId.TTRes.SizeM1 = Record[Slot++]; in parseTypeIdSummaryRecord() 5156 TypeId.TTRes.BitMask = Record[Slot++]; in parseTypeIdSummaryRecord() 5157 TypeId.TTRes.InlineBits = Record[Slot++]; in parseTypeIdSummaryRecord()
|