reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/IPO/LowerTypeTests.cpp
  905   TTRes.TheKind = TIL.TheKind;
  921   if (TIL.TheKind != TypeTestResolution::Unsat)
  922     ExportGlobal("global_addr", TIL.OffsetedGlobal);
  924   if (TIL.TheKind == TypeTestResolution::ByteArray ||
  925       TIL.TheKind == TypeTestResolution::Inline ||
  926       TIL.TheKind == TypeTestResolution::AllOnes) {
  927     ExportConstant("align", TTRes.AlignLog2, TIL.AlignLog2);
  928     ExportConstant("size_m1", TTRes.SizeM1, TIL.SizeM1);
  930     uint64_t BitSize = cast<ConstantInt>(TIL.SizeM1)->getZExtValue() + 1;
  931     if (TIL.TheKind == TypeTestResolution::Inline)
  937   if (TIL.TheKind == TypeTestResolution::ByteArray) {
  938     ExportGlobal("byte_array", TIL.TheByteArray);
  940       ExportGlobal("bit_mask", TIL.BitMask);
  945   if (TIL.TheKind == TypeTestResolution::Inline)
  946     ExportConstant("inline_bits", TTRes.InlineBits, TIL.InlineBits);