Home | History | Annotate | Download | only in IR

Lines Matching refs:OS

1007 void DIDescriptor::print(raw_ostream &OS) const {
1011 OS << "[ " << Tag << " ]";
1014 DISubrange(DbgNode).printInternal(OS);
1016 DICompileUnit(DbgNode).printInternal(OS);
1018 DIFile(DbgNode).printInternal(OS);
1020 DIEnumerator(DbgNode).printInternal(OS);
1022 DIType(DbgNode).printInternal(OS);
1024 DIDerivedType(DbgNode).printInternal(OS);
1026 DICompositeType(DbgNode).printInternal(OS);
1028 DISubprogram(DbgNode).printInternal(OS);
1030 DIGlobalVariable(DbgNode).printInternal(OS);
1032 DIVariable(DbgNode).printInternal(OS);
1034 DIObjCProperty(DbgNode).printInternal(OS);
1036 DIScope(DbgNode).printInternal(OS);
1040 void DISubrange::printInternal(raw_ostream &OS) const {
1043 OS << " [" << getLo() << ", " << Count - 1 << ']';
1045 OS << " [unbounded]";
1048 void DIScope::printInternal(raw_ostream &OS) const {
1049 OS << " [" << getDirectory() << "/" << getFilename() << ']';
1052 void DICompileUnit::printInternal(raw_ostream &OS) const {
1053 DIScope::printInternal(OS);
1055 OS << " [" << Lang << ']';
1058 void DIEnumerator::printInternal(raw_ostream &OS) const {
1059 OS << " [" << getName() << " :: " << getEnumValue() << ']';
1062 void DIType::printInternal(raw_ostream &OS) const {
1067 OS << " [" << Res << "]";
1071 OS << " [line " << getLineNumber()
1078 OS << ", enc " << Enc;
1079 OS << "]";
1082 OS << " [private]";
1084 OS << " [protected]";
1087 OS << " [artificial]";
1090 OS << " [fwd]";
1092 OS << " [vector]";
1094 OS << " [static]";
1097 void DIDerivedType::printInternal(raw_ostream &OS) const {
1098 DIType::printInternal(OS);
1099 OS << " [from " << getTypeDerivedFrom().getName() << ']';
1102 void DICompositeType::printInternal(raw_ostream &OS) const {
1103 DIType::printInternal(OS);
1105 OS << " [" << A.getNumElements() << " elements]";
1108 void DISubprogram::printInternal(raw_ostream &OS) const {
1110 OS << " [line " << getLineNumber() << ']';
1113 OS << " [local]";
1116 OS << " [def]";
1119 OS << " [scope " << getScopeLineNumber() << "]";
1122 OS << " [private]";
1124 OS << " [protected]";
1128 OS << " [" << Res << ']';
1131 void DIGlobalVariable::printInternal(raw_ostream &OS) const {
1134 OS << " [" << Res << ']';
1136 OS << " [line " << getLineNumber() << ']';
1141 OS << " [local]";
1144 OS << " [def]";
1147 void DIVariable::printInternal(raw_ostream &OS) const {
1150 OS << " [" << Res << ']';
1152 OS << " [line " << getLineNumber() << ']';
1155 void DIObjCProperty::printInternal(raw_ostream &OS) const {
1158 OS << " [" << Name << ']';
1160 OS << " [line " << getLineNumber()
1185 void DIVariable::printExtendedName(raw_ostream &OS) const {
1189 OS << Res << "," << getLineNumber();
1193 OS << " @[";
1194 printDebugLoc(InlinedAtDL, OS, Ctx);
1195 OS << "]";