Searched refs:OS (Results 201 - 225 of 1115) sorted by last modified time

1234567891011>>

/external/llvm/include/llvm/IR/
H A DDominators.h181 void print(raw_ostream &OS, const Module *M = nullptr) const override;
H A DIRPrintingPasses.h36 ModulePass *createPrintModulePass(raw_ostream &OS,
41 FunctionPass *createPrintFunctionPass(raw_ostream &OS,
46 BasicBlockPass *createPrintBasicBlockPass(raw_ostream &OS,
54 raw_ostream &OS; member in class:llvm::PrintModulePass
59 PrintModulePass(raw_ostream &OS, const std::string &Banner = "");
71 raw_ostream &OS; member in class:llvm::PrintFunctionPass
76 PrintFunctionPass(raw_ostream &OS, const std::string &Banner = "");
H A DLegacyPassManagers.h129 /// print - Emit information about this stack frame to OS.
130 void print(raw_ostream &OS) const override;
H A DMangler.h54 void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV,
61 void getNameWithPrefix(raw_ostream &OS, const Twine &GVName,
H A DModule.h602 void print(raw_ostream &OS, AssemblyAnnotationWriter *AAW) const;
H A DType.h426 static inline raw_ostream &operator<<(raw_ostream &OS, Type &T) {
427 T.print(OS);
428 return OS;
H A DValue.h464 inline raw_ostream &operator<<(raw_ostream &OS, const Value &V) { argument
465 V.print(OS);
466 return OS;
H A DVerifier.h40 /// a message describing the error is written to OS (if non-null) and true is
42 bool verifyFunction(const Function &F, raw_ostream *OS = nullptr);
47 /// a message describing the error is written to OS (if non-null) and true is
49 bool verifyModule(const Module &M, raw_ostream *OS = nullptr);
/external/llvm/include/llvm/MC/MCAnalysis/
H A DMCModuleYAML.h28 /// \brief Dump a YAML representation of the MCModule \p MCM to \p OS.
30 StringRef mcmodule2yaml(raw_ostream &OS, const MCModule &MCM,
/external/llvm/include/llvm/MC/
H A DMCAsmBackend.h51 virtual MCObjectWriter *createObjectWriter(raw_ostream &OS) const = 0;
H A DMCAssembler.h872 raw_ostream &OS; member in class:llvm::MCAssembler
1020 /// \param OS The stream to output to.
1028 raw_ostream &OS);
H A DMCCodeEmitter.h37 /// stream \p OS.
38 virtual void EncodeInstruction(const MCInst &Inst, raw_ostream &OS,
H A DMCDwarf.h262 raw_ostream &OS);
491 raw_ostream &OS);
H A DMCELFObjectWriter.h111 /// \param OS - The stream to write to.
114 raw_ostream &OS, bool IsLittleEndian);
H A DMCELFStreamer.h32 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
34 : MCObjectStreamer(Context, TAB, OS, Emitter),
37 MCELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_ostream &OS, argument
39 : MCObjectStreamer(Context, TAB, OS, Emitter, Assembler),
109 raw_ostream &OS, MCCodeEmitter *Emitter,
H A DMCExpr.h70 void print(raw_ostream &OS) const;
115 inline raw_ostream &operator<<(raw_ostream &OS, const MCExpr &E) { argument
116 E.print(OS);
117 return OS;
525 virtual void PrintImpl(raw_ostream &OS) const = 0;
H A DMCInst.h142 void print(raw_ostream &OS, const MCAsmInfo *MAI) const;
181 void print(raw_ostream &OS, const MCAsmInfo *MAI) const;
187 void dump_pretty(raw_ostream &OS, const MCAsmInfo *MAI = nullptr,
192 inline raw_ostream& operator<<(raw_ostream &OS, const MCOperand &MO) { argument
193 MO.print(OS, nullptr);
194 return OS;
197 inline raw_ostream& operator<<(raw_ostream &OS, const MCInst &MI) { argument
198 MI.print(OS, nullptr);
199 return OS;
H A DMCInstPrinter.h56 void printAnnotation(raw_ostream &OS, StringRef Annot);
67 void setCommentStream(raw_ostream &OS) { CommentStream = &OS; } argument
71 virtual void printInst(const MCInst *MI, raw_ostream &OS,
79 virtual void printRegName(raw_ostream &OS, unsigned RegNo) const;
H A DMCInstrItineraries.h126 const unsigned *OS, const unsigned *F)
127 : SchedModel(SM), Stages(S), OperandCycles(OS), Forwardings(F),
125 InstrItineraryData(const MCSchedModel *SM, const InstrStage *S, const unsigned *OS, const unsigned *F) argument
H A DMCLabel.h45 /// print - Print the value to the stream \p OS.
46 void print(raw_ostream &OS) const;
52 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) { argument
53 Label.print(OS);
54 return OS;
H A DMCMachObjectWriter.h271 /// \param OS - The stream to write to.
274 raw_ostream &OS, bool IsLittleEndian);
H A DMCObjectWriter.h44 raw_ostream &OS; member in class:llvm::MCObjectWriter
50 : OS(_OS), IsLittleEndian(_IsLittleEndian) {}
60 raw_ostream &getStream() { return OS; }
117 OS << char(Value);
175 OS << StringRef(Zeros, 16);
177 OS << StringRef(Zeros, N % 16);
189 OS << Str;
H A DMCSection.h52 raw_ostream &OS,
H A DMCSectionCOFF.h75 void PrintSwitchToSection(const MCAsmInfo &MAI, raw_ostream &OS,
/external/llvm/include/llvm/MC/MCParser/
H A DMCParsedAsmOperand.h72 virtual void print(raw_ostream &OS) const = 0;
80 inline raw_ostream& operator<<(raw_ostream &OS, const MCParsedAsmOperand &MO) { argument
81 MO.print(OS);
82 return OS;

Completed in 209 milliseconds

1234567891011>>