Searched refs:OS (Results 226 - 250 of 1405) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1192 OS << "if(";
1194 OS << getOpenMPDirectiveName(Node->getNameModifier()) << ": ";
1195 Node->getCondition()->printPretty(OS, nullptr, Policy, 0);
1196 OS << ")";
1200 OS << "final(";
1201 Node->getCondition()->printPretty(OS, nullptr, Policy, 0);
1202 OS << ")";
1206 OS << "num_threads(";
1207 Node->getNumThreads()->printPretty(OS, nullptr, Policy, 0);
1208 OS << ")";
[all...]
H A DASTDumper.cpp27 OS << "StoredDeclsMap ";
32 OS << " primary";
46 OS << "DeclarationName ";
48 ColorScope Color(OS, ShowColors, DeclNameColor);
49 OS << '\'' << Name << '\'';
58 OS << " hidden";
77 ColorScope Color(OS, ShowColors, UndeserializedColor);
78 OS << "<undeserialized lookups>";
164 LLVM_DUMP_METHOD void QualType::dump(llvm::raw_ostream &OS) const {
165 ASTDumper Dumper(OS, nullpt
181 dump(raw_ostream &OS, bool Deserialize, ASTDumpOutputFormat Format) const argument
211 dumpLookups(raw_ostream &OS, bool DumpDecls, bool Deserialize) const argument
233 dump(raw_ostream &OS, SourceManager &SM) const argument
266 dump(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM) const argument
[all...]
H A DDeclarationName.cpp119 raw_ostream &OS,
125 OS << *ClassRec->getDecl();
130 OS << *InjTy->getDecl();
134 ClassType.print(OS, Policy);
137 void DeclarationName::print(raw_ostream &OS, argument
142 OS << II->getName();
148 getObjCSelector().print(OS);
152 return printCXXConstructorDestructorName(getCXXNameType(), OS, Policy);
155 OS << '~';
156 return printCXXConstructorDestructorName(getCXXNameType(), OS, Polic
118 printCXXConstructorDestructorName(QualType ClassType, raw_ostream &OS, PrintingPolicy Policy) argument
202 operator <<(raw_ostream &OS, DeclarationName N) argument
455 operator <<(raw_ostream &OS, DeclarationNameInfo DNInfo) argument
461 printName(raw_ostream &OS, PrintingPolicy Policy) const argument
[all...]
H A DTemplateName.cpp220 TemplateName::print(raw_ostream &OS, const PrintingPolicy &Policy, argument
223 OS << *Template;
226 QTN->getQualifier()->print(OS, Policy);
228 OS << "template ";
229 OS << *QTN->getDecl();
232 DTN->getQualifier()->print(OS, Policy);
233 OS << "template ";
236 OS << DTN->getIdentifier()->getName();
238 OS << "operator " << getOperatorSpelling(DTN->getOperator());
241 subst->getReplacement().print(OS, Polic
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86InstPrinterCommon.cpp92 raw_ostream &OS) {
93 OS << "vpcom";
98 case 0: OS << "lt"; break;
99 case 1: OS << "le"; break;
100 case 2: OS << "gt"; break;
101 case 3: OS << "ge"; break;
102 case 4: OS << "eq"; break;
103 case 5: OS << "neq"; break;
104 case 6: OS << "false"; break;
105 case 7: OS << "tru
91 printVPCOMMnemonic(const MCInst *MI, raw_ostream &OS) argument
121 printVPCMPMnemonic(const MCInst *MI, raw_ostream &OS) argument
208 printCMPMnemonic(const MCInst *MI, bool IsVCmp, raw_ostream &OS) argument
339 printVKPair(const MCInst *MI, unsigned OpNo, raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp37 void NativeTypeUDT::dump(raw_ostream &OS, int Indent, argument
41 NativeRawSymbol::dump(OS, Indent, ShowIdFields, RecurseIdFields);
43 dumpSymbolField(OS, "name", getName(), Indent);
44 dumpSymbolIdField(OS, "lexicalParentId", 0, Indent, Session,
48 dumpSymbolIdField(OS, "unmodifiedTypeId", getUnmodifiedTypeId(), Indent,
52 dumpSymbolField(OS, "virtualTableShapeId", getVirtualTableShapeId(),
54 dumpSymbolField(OS, "length", getLength(), Indent);
55 dumpSymbolField(OS, "udtKind", getUdtKind(), Indent);
56 dumpSymbolField(OS, "constructor", hasConstructor(), Indent);
57 dumpSymbolField(OS, "constTyp
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsInstPrinter.cpp74 void MipsInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const { argument
75 OS << '$' << StringRef(getRegisterName(RegNo)).lower();
205 unsigned OpNo, raw_ostream &OS) {
206 OS << "\t" << Str << "\t";
207 printOperand(&MI, OpNo, OS);
213 raw_ostream &OS) {
214 printAlias(Str, MI, OpNo0, OS);
215 OS << ", ";
216 printOperand(&MI, OpNo1, OS);
220 bool MipsInstPrinter::printAlias(const MCInst &MI, raw_ostream &OS) { argument
204 printAlias(const char *Str, const MCInst &MI, unsigned OpNo, raw_ostream &OS) argument
211 printAlias(const char *Str, const MCInst &MI, unsigned OpNo0, unsigned OpNo1, raw_ostream &OS) argument
[all...]
H A DMipsTargetStreamer.cpp367 formatted_raw_ostream &OS)
368 : MipsTargetStreamer(S), OS(OS) {}
371 OS << "\t.set\tmicromips\n";
376 OS << "\t.set\tnomicromips\n";
381 OS << "\t.set\tmips16\n";
386 OS << "\t.set\tnomips16\n";
391 OS << "\t.set\treorder\n";
396 OS << "\t.set\tnoreorder\n";
401 OS << "\
366 MipsTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS) argument
633 printHex32(unsigned Value, raw_ostream &OS) argument
878 MCStreamer &OS = getStreamer(); local
985 MCStreamer &OS = getStreamer(); local
1280 MCStreamer &OS = getStreamer(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypeChecker.cpp75 llvm::raw_svector_ostream OS(Buf);
76 OS << "Object has a dynamic type '";
77 QualType::print(DynamicType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(),
79 OS << "' which is incompatible with static type '";
80 QualType::print(StaticType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(),
82 OS << "'";
84 *BT, OS.str(), C.generateNonFatalErrorNode());
113 llvm::raw_svector_ostream OS(Buf);
114 OS << "Type '";
115 QualType::print(TrackedType.getType().getTypePtr(), Qualifiers(), OS,
[all...]
H A DUndefinedAssignmentChecker.cpp60 llvm::raw_svector_ostream OS(Str);
66 OS << "The expression is an uninitialized value. "
76 OS << "The left expression of the compound assignment is an "
97 OS << "Value assigned to field '" << I->getMember()->getName()
108 if (OS.str().empty())
109 OS << DefaultMsg;
111 auto R = std::make_unique<PathSensitiveBugReport>(*BT, OS.str(), N);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp42 if (std::unique_ptr<raw_ostream> OS =
44 return CreateHTMLPrinter(std::move(OS), CI.getPreprocessor());
165 if (std::unique_ptr<raw_ostream> OS =
169 InFile, std::move(OS), CI.getDiagnostics(), CI.getLangOpts(),
172 return CreateObjCRewriter(InFile, std::move(OS), CI.getDiagnostics(),
187 std::unique_ptr<raw_ostream> OS = local
189 if (!OS) return;
191 RewriteMacrosInInput(CI.getPreprocessor(), OS.get());
196 std::unique_ptr<raw_ostream> OS = local
198 if (!OS) retur
278 auto &OS = *OutputStream; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h116 virtual void printInternal(raw_ostream &OS, bool PrintEType) const { argument
118 OS << "etype = " << getExpressionType() << ",";
119 OS << "opcode = " << getOpcode() << ", ";
122 void print(raw_ostream &OS) const {
123 OS << "{ ";
124 printInternal(OS, true);
125 OS << "}";
131 inline raw_ostream &operator<<(raw_ostream &OS, const Expression &E) { argument
132 E.print(OS);
133 return OS;
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrintPreprocessedOutput.cpp35 Preprocessor &PP, raw_ostream &OS) {
36 OS << "#define " << II.getName();
39 OS << '(';
43 OS << (*AI)->getName();
44 OS << ',';
49 OS << "...";
51 OS << (*AI)->getName();
55 OS << "..."; // #define foo(x...)
57 OS << ')';
63 OS << ' ';
34 PrintMacroDefinition(const IdentifierInfo &II, const MacroInfo &MI, Preprocessor &PP, raw_ostream &OS) argument
84 raw_ostream &OS; member in class:__anon516::PrintPPOutputPPCallbacks
433 outputPrintable(raw_ostream &OS, StringRef Str) argument
712 PrintPreprocessedTokens(Preprocessor &PP, Token &Tok, PrintPPOutputPPCallbacks *Callbacks, raw_ostream &OS) argument
825 DoPrintMacros(Preprocessor &PP, raw_ostream *OS) argument
858 DoPrintPreprocessedInput(Preprocessor &PP, raw_ostream *OS, const PreprocessorOutputOptions &Opts) argument
[all...]
H A DDependencyFile.cpp276 static void PrintFilename(raw_ostream &OS, StringRef Filename, argument
287 OS << '\"' << NativePath << '\"';
289 OS << NativePath;
295 OS << '\\';
297 OS << '\\';
300 OS << '\\';
302 OS << '$';
303 OS << NativePath[i];
314 llvm::raw_fd_ostream OS(OutputFile, EC, llvm::sys::fs::OF_Text);
320 outputDependencyFile(OS);
323 outputDependencyFile(llvm::raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DInfoByHwMode.cpp82 void ValueTypeByHwMode::writeToStream(raw_ostream &OS) const {
84 OS << getMVTName(getSimple());
93 OS << '{';
96 OS << '(' << getModeName(P->first)
99 OS << ',';
101 OS << '}';
139 void RegSizeInfo::writeToStream(raw_ostream &OS) const {
140 OS << "[R=" << RegSize << ",S=" << SpillSize
178 void RegSizeInfoByHwMode::writeToStream(raw_ostream &OS) const {
185 OS << '{';
207 operator <<(raw_ostream &OS, const ValueTypeByHwMode &T) argument
212 operator <<(raw_ostream &OS, const RegSizeInfo &T) argument
217 operator <<(raw_ostream &OS, const RegSizeInfoByHwMode &T) argument
[all...]
H A DSequenceToOffsetTable.h113 void emit(raw_ostream &OS, argument
119 OS << " /* " << I->second << " */ ";
122 Print(OS, *SI);
123 OS << ", ";
125 OS << Term << ",\n";
131 static inline void printChar(raw_ostream &OS, char C) { argument
134 OS << '\'';
136 OS << '\\';
137 OS << C << '\'';
139 OS << unsigne
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DHeader.cpp23 raw_ostream &llvm::gsym::operator<<(raw_ostream &OS, const Header &H) { argument
24 OS << "Header:\n";
25 OS << " Magic = " << HEX32(H.Magic) << "\n";
26 OS << " Version = " << HEX16(H.Version) << '\n';
27 OS << " AddrOffSize = " << HEX8(H.AddrOffSize) << '\n';
28 OS << " UUIDSize = " << HEX8(H.UUIDSize) << '\n';
29 OS << " BaseAddress = " << HEX64(H.BaseAddress) << '\n';
30 OS << " NumAddresses = " << HEX32(H.NumAddresses) << '\n';
31 OS << " StrtabOffset = " << HEX32(H.StrtabOffset) << '\n';
32 OS << " StrtabSiz
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeAnalyzer.cpp399 static void printSize(raw_ostream &OS, double Bits) { argument
400 OS << format("%.2f/%.2fB/%luW", Bits, Bits / 8, (unsigned long)(Bits / 32));
402 static void printSize(raw_ostream &OS, uint64_t Bits) { argument
403 OS << format("%lub/%.2fB/%luW", (unsigned long)Bits, (double)Bits / 8,
479 O->OS << "<BITCODE_WRAPPER_HEADER"
504 raw_ostream &OS) {
514 OS << " num-strings = " << NumStrings << " {\n";
530 OS << Indent << " '";
531 OS.write_escaped(Strings.slice(0, Size), /*hex=*/true);
532 OS << "'\
501 decodeMetadataStringsBlob(StringRef Indent, ArrayRef<uint64_t> Record, StringRef Blob, raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/bmake/
H A Dmachine.sh20 OS=`uname`
46 case $OS in
50 MACHINE=$OS$OSMAJOR.$OSMINOR
54 MACHINE=$OS$OSMAJOR.$machine
59 MACHINE=$OS$OSMAJOR.$machine
63 MACHINE=$OS$OSMAJOR.$machine
93 MACHINE=${MACHINE:-$OS$OSMAJOR}
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DPostDominators.cpp88 void PostDominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { argument
89 DT.print(OS);
104 PostDominatorTreePrinterPass::PostDominatorTreePrinterPass(raw_ostream &OS) argument
105 : OS(OS) {}
109 OS << "PostDominatorTree for function: " << F.getName() << "\n";
110 AM.getResult<PostDominatorTreeAnalysis>(F).print(OS);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DDispatchStatistics.cpp34 void DispatchStatistics::printDispatchHistogram(raw_ostream &OS) const {
49 OS << Buffer;
52 static void printStalls(raw_ostream &OS, unsigned NumStalls, argument
55 OS << NumStalls;
60 OS << NumStalls << " ("
64 void DispatchStatistics::printDispatchStalls(raw_ostream &OS) const {
82 OS << Buffer;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLoc.cpp114 static void dumpExpression(raw_ostream &OS, ArrayRef<uint8_t> Data, argument
118 DWARFExpression(Extractor, dwarf::DWARF_VERSION, AddressSize).print(OS, MRI, U);
121 bool DWARFLocationTable::dumpLocationList(uint64_t *Offset, raw_ostream &OS, argument
133 OS << format("0x%8.8" PRIx64 ": ", *Offset);
137 dumpRawEntry(E, OS, Indent, DumpOpts, Obj);
139 OS << "\n";
140 OS.indent(Indent);
142 OS << " => ";
147 Loc.get()->Range->dump(OS, Data.getAddressSize(), RangeDumpOpts, &Obj);
149 OS << "<defaul
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTextStubCommon.cpp22 raw_ostream &OS) {
23 ScalarTraits<StringRef>::output(Value, Ctx, OS);
45 raw_ostream &OS) {
53 OS << "zippered";
63 OS << "macosx";
66 OS << "ios";
69 OS << "watchos";
72 OS << "tvos";
75 OS << "bridgeos";
129 raw_ostream &OS) {
21 output(const FlowStringRef &Value, void *Ctx, raw_ostream &OS) argument
44 output(const PlatformSet &Values, void *IO, raw_ostream &OS) argument
128 output(const Architecture &Value, void *, raw_ostream &OS) argument
141 output(const PackedVersion &Value, void *, raw_ostream &OS) argument
155 output(const SwiftVersion &Value, void *, raw_ostream &OS) argument
206 output(const UUID &Value, void *, raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DGCMetadata.cpp35 raw_ostream &OS; member in class:__anon1717::Printer
38 explicit Printer(raw_ostream &OS) : FunctionPass(ID), OS(OS) {} argument
92 FunctionPass *llvm::createGCInfoPrinter(raw_ostream &OS) { argument
93 return new Printer(OS);
112 OS << "GC roots for " << FD->getFunction().getName() << ":\n";
116 OS << "\t" << RI->Num << "\t" << RI->StackOffset << "[sp]\n";
118 OS << "GC safe points for " << FD->getFunction().getName() << ":\n";
122 OS << "\
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyExceptionInfo.cpp152 void WebAssemblyException::print(raw_ostream &OS, unsigned Depth) const { argument
153 OS.indent(Depth * 2) << "Exception at depth " << getExceptionDepth()
159 OS << ", ";
160 OS << "%bb." << MBB->getNumber();
163 OS << "." << BB->getName();
166 OS << " (landing-pad)";
168 OS << "\n";
171 SubE->print(OS, Depth + 2);
178 raw_ostream &operator<<(raw_ostream &OS, const WebAssemblyException &WE) { argument
179 WE.print(OS);
183 print(raw_ostream &OS, const Module *) const argument
[all...]

Completed in 286 milliseconds

1234567891011>>