Home
last modified time | relevance | path

Searched refs:TTRes (Results 1 – 21 of 21) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/WholeProgramDevirt/
Dexport-single-impl.ll6 ; SUMMARY-NEXT: TTRes:
19 ; SUMMARY-NEXT: TTRes:
32 ; SUMMARY-NEXT: TTRes:
45 ; SUMMARY-NEXT: TTRes:
Dexport-unique-ret-val.ll8 ; SUMMARY-NEXT: TTRes:
26 ; SUMMARY-NEXT: TTRes:
Dbranch-funnel.ll12 ; SUMMARY-NEXT: TTRes:
25 ; SUMMARY-NEXT: TTRes:
38 ; SUMMARY-NEXT: TTRes:
Dexport-uniform-ret-val.ll8 ; SUMMARY-NEXT: TTRes:
Dexport-vcp.ll11 ; SUMMARY-NEXT: TTRes:
31 ; SUMMARY-NEXT: TTRes:
Dimport-indir.ll33 ; SUMMARY-NEXT: TTRes:
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DLowerTypeTests.cpp839 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/
Dexport-inline.ll30 ; SUMMARY-NEXT: TTRes:
43 ; SUMMARY-NEXT: TTRes:
Dexport-icall.ll65 ; SUMMARY-NEXT: TTRes:
74 ; SUMMARY-NEXT: TTRes:
Dexport-bytearray.ll37 ; SUMMARY-NEXT: TTRes:
50 ; SUMMARY-NEXT: TTRes:
Dexport-single.ll15 ; SUMMARY-NEXT: TTRes:
Dimport-unsat.ll14 ; SUMMARY-NEXT: TTRes:
Dexport-allones.ll158 ; SUMMARY-NEXT: TTRes:
171 ; SUMMARY-NEXT: TTRes:
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DLTO.cpp229 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/
DAsmWriter.cpp2351 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/
DModuleSummaryIndexYAML.h133 io.mapOptional("TTRes", summary.TTRes);
DModuleSummaryIndex.h717 TypeTestResolution TTRes;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/AsmParser/
DLLParser.cpp7068 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 …]
DLLParser.h369 bool ParseTypeTestResolution(TypeTestResolution &TTRes);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp3436 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/
DBitcodeReader.cpp5152 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()