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

References

lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
 1618     case 1:  STK = SimpleTypeKind::Boolean8;   break;
 1619     case 2:  STK = SimpleTypeKind::Boolean16;  break;
 1620     case 4:  STK = SimpleTypeKind::Boolean32;  break;
 1621     case 8:  STK = SimpleTypeKind::Boolean64;  break;
 1622     case 16: STK = SimpleTypeKind::Boolean128; break;
 1627     case 2:  STK = SimpleTypeKind::Complex16;  break;
 1628     case 4:  STK = SimpleTypeKind::Complex32;  break;
 1629     case 8:  STK = SimpleTypeKind::Complex64;  break;
 1630     case 10: STK = SimpleTypeKind::Complex80;  break;
 1631     case 16: STK = SimpleTypeKind::Complex128; break;
 1636     case 2:  STK = SimpleTypeKind::Float16;  break;
 1637     case 4:  STK = SimpleTypeKind::Float32;  break;
 1638     case 6:  STK = SimpleTypeKind::Float48;  break;
 1639     case 8:  STK = SimpleTypeKind::Float64;  break;
 1640     case 10: STK = SimpleTypeKind::Float80;  break;
 1641     case 16: STK = SimpleTypeKind::Float128; break;
 1646     case 1:  STK = SimpleTypeKind::SignedCharacter; break;
 1647     case 2:  STK = SimpleTypeKind::Int16Short;      break;
 1648     case 4:  STK = SimpleTypeKind::Int32;           break;
 1649     case 8:  STK = SimpleTypeKind::Int64Quad;       break;
 1650     case 16: STK = SimpleTypeKind::Int128Oct;       break;
 1655     case 1:  STK = SimpleTypeKind::UnsignedCharacter; break;
 1656     case 2:  STK = SimpleTypeKind::UInt16Short;       break;
 1657     case 4:  STK = SimpleTypeKind::UInt32;            break;
 1658     case 8:  STK = SimpleTypeKind::UInt64Quad;        break;
 1659     case 16: STK = SimpleTypeKind::UInt128Oct;        break;
 1664     case 2: STK = SimpleTypeKind::Character16; break;
 1665     case 4: STK = SimpleTypeKind::Character32; break;
 1670       STK = SimpleTypeKind::SignedCharacter;
 1674       STK = SimpleTypeKind::UnsignedCharacter;
 1681   if (STK == SimpleTypeKind::Int32 && Ty->getName() == "long int")
 1682     STK = SimpleTypeKind::Int32Long;
 1683   if (STK == SimpleTypeKind::UInt32 && Ty->getName() == "long unsigned int")
 1684     STK = SimpleTypeKind::UInt32Long;
 1685   if (STK == SimpleTypeKind::UInt16Short &&
 1687     STK = SimpleTypeKind::WideCharacter;
 1688   if ((STK == SimpleTypeKind::SignedCharacter ||
 1689        STK == SimpleTypeKind::UnsignedCharacter) &&
 1691     STK = SimpleTypeKind::NarrowCharacter;
 1693   return TypeIndex(STK);