HomeSort by relevance Sort by last modified time
    Searched refs:raw_ostream (Results 1 - 25 of 836) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Support/
SystemUtils.h 21 class raw_ostream;
23 /// Determine if the raw_ostream provided is connected to a terminal. If so,
28 raw_ostream &stream_to_check, ///< The stream to be checked
  /external/llvm/include/llvm/TableGen/
TableGenBackend.h 21 class raw_ostream;
24 /// raw_ostream.
25 void emitSourceFileHeader(StringRef Desc, raw_ostream &OS);
Main.h 20 class raw_ostream;
23 typedef bool TableGenMainFn(raw_ostream &OS, RecordKeeper &Records);
  /external/llvm/tools/opt/
BreakpointPrinter.h 20 class raw_ostream;
22 ModulePass *createBreakpointPrinter(raw_ostream &out);
PassPrinters.h 26 class raw_ostream;
28 FunctionPass *createFunctionPassPrinter(const PassInfo *PI, raw_ostream &out,
32 raw_ostream &out, bool Quiet);
34 ModulePass *createModulePassPrinter(const PassInfo *PI, raw_ostream &out,
37 LoopPass *createLoopPassPrinter(const PassInfo *PI, raw_ostream &out,
40 RegionPass *createRegionPassPrinter(const PassInfo *PI, raw_ostream &out,
44 raw_ostream &out, bool Quiet);
  /external/clang/utils/TableGen/
TableGenBackends.h 19 class raw_ostream;
23 using llvm::raw_ostream;
28 void EmitClangDeclContext(RecordKeeper &RK, raw_ostream &OS);
29 void EmitClangASTNodes(RecordKeeper &RK, raw_ostream &OS,
32 void EmitClangAttrParserStringSwitches(RecordKeeper &Records, raw_ostream &OS);
33 void EmitClangAttrClass(RecordKeeper &Records, raw_ostream &OS);
34 void EmitClangAttrImpl(RecordKeeper &Records, raw_ostream &OS);
35 void EmitClangAttrList(RecordKeeper &Records, raw_ostream &OS);
36 void EmitClangAttrPCHRead(RecordKeeper &Records, raw_ostream &OS);
37 void EmitClangAttrPCHWrite(RecordKeeper &Records, raw_ostream &OS)
    [all...]
  /external/llvm/lib/Target/X86/InstPrinter/
X86InstComments.h 20 class raw_ostream;
21 void EmitAnyX86InstComments(const MCInst *MI, raw_ostream &OS,
  /external/llvm/utils/TableGen/
TableGenBackends.h 19 // EmitFoo(RecordKeeper &RK, raw_ostream &OS /*, anything else you need */ )
22 // involve generating C++ code to the provided raw_ostream.
60 class raw_ostream;
63 void EmitIntrinsics(RecordKeeper &RK, raw_ostream &OS, bool TargetOnly = false);
64 void EmitAsmMatcher(RecordKeeper &RK, raw_ostream &OS);
65 void EmitAsmWriter(RecordKeeper &RK, raw_ostream &OS);
66 void EmitCallingConv(RecordKeeper &RK, raw_ostream &OS);
67 void EmitCodeEmitter(RecordKeeper &RK, raw_ostream &OS);
68 void EmitDAGISel(RecordKeeper &RK, raw_ostream &OS);
69 void EmitDFAPacketizer(RecordKeeper &RK, raw_ostream &OS)
    [all...]
X86DisassemblerTables.h 22 #include "llvm/Support/raw_ostream.h"
87 void emitModRMDecision(raw_ostream &o1, raw_ostream &o2,
115 void emitOpcodeDecision(raw_ostream &o1, raw_ostream &o2,
149 void emitContextDecision(raw_ostream &o1, raw_ostream &o2,
182 void emitInstructionInfo(raw_ostream &o, unsigned &i) const;
198 void emitContextTable(raw_ostream &o, uint32_t &i) const;
209 void emitContextDecisions(raw_ostream &o1, raw_ostream &o2
    [all...]
  /external/llvm/lib/Target/R600/InstPrinter/
AMDGPUInstPrinter.h 18 #include "llvm/Support/raw_ostream.h"
29 void printInstruction(const MCInst *MI, raw_ostream &O);
32 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
35 void printU8ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
36 void printU16ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
37 void printU32ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
38 void printRegOperand(unsigned RegNo, raw_ostream &O);
39 void printImmediate(uint32_t Imm, raw_ostream &O);
40 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
41 void printOperandAndMods(const MCInst *MI, unsigned OpNo, raw_ostream &O)
    [all...]
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.h 29 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
30 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
33 void printInstruction(const MCInst *MI, raw_ostream &O);
37 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
39 void printSORegRegOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
40 void printSORegImmOperand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
42 void printAddrModeTBB(const MCInst *MI, unsigned OpNum, raw_ostream &O);
43 void printAddrModeTBH(const MCInst *MI, unsigned OpNum, raw_ostream &O);
44 void printAddrMode2Operand(const MCInst *MI, unsigned OpNum, raw_ostream &O);
45 void printAM2PostIndexOp(const MCInst *MI, unsigned OpNum, raw_ostream &O)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitcodeWriterPass.h 23 class raw_ostream;
29 ModulePass *createBitcodeWriterPass(raw_ostream &Str);
36 raw_ostream &OS;
40 explicit BitcodeWriterPass(raw_ostream &OS) : OS(OS) {}
  /frameworks/rs/cpu_ref/linkloader/utils/
raw_ostream.h 20 #include <llvm/Support/raw_ostream.h>
23 extern llvm::raw_ostream &out();
31 extern llvm::raw_ostream &operator<<(llvm::raw_ostream &, MyFormat const &);
  /external/llvm/lib/Target/SystemZ/InstPrinter/
SystemZInstPrinter.h 30 void printInstruction(const MCInst *MI, raw_ostream &O);
35 raw_ostream &O);
38 static void printOperand(const MCOperand &MO, raw_ostream &O);
41 void printRegName(raw_ostream &O, unsigned RegNo) const override;
42 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
46 void printOperand(const MCInst *MI, int OpNum, raw_ostream &O);
47 void printBDAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
48 void printBDXAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
49 void printBDLAddrOperand(const MCInst *MI, int OpNum, raw_ostream &O);
50 void printU4ImmOperand(const MCInst *MI, int OpNum, raw_ostream &O)
    [all...]
  /external/clang/include/clang/Index/
USRGeneration.h 32 void generateUSRForObjCClass(StringRef Cls, raw_ostream &OS);
35 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS);
40 void generateUSRForObjCIvar(StringRef Ivar, raw_ostream &OS);
44 raw_ostream &OS);
47 void generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS);
50 void generateUSRForObjCProtocol(StringRef Prot, raw_ostream &OS);
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.h 34 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
35 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
38 void printInstruction(const MCInst *MI, raw_ostream &O);
42 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
44 raw_ostream &O, const char *Modifier = nullptr);
46 void printU2ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
47 void printS5ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
48 void printU5ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
49 void printU6ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
50 void printS16ImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O)
    [all...]
  /external/llvm/include/llvm/IR/
IRPrintingPasses.h 32 class raw_ostream;
35 /// \c raw_ostream.
36 ModulePass *createPrintModulePass(raw_ostream &OS,
40 /// \c raw_ostream as they are processed.
41 FunctionPass *createPrintFunctionPass(raw_ostream &OS,
45 /// \c raw_ostream.
46 BasicBlockPass *createPrintBasicBlockPass(raw_ostream &OS,
54 raw_ostream &OS;
59 PrintModulePass(raw_ostream &OS, const std::string &Banner = "");
71 raw_ostream &OS
    [all...]
  /external/llvm/include/llvm/MC/
MCLabel.h 21 class raw_ostream;
46 void print(raw_ostream &OS) const;
52 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) {
  /external/llvm/lib/Support/
SystemUtils.cpp 18 #include "llvm/Support/raw_ostream.h"
21 bool llvm::CheckBitcodeOutputToConsole(raw_ostream &stream_to_check,
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.h 85 void printInstruction(const MCInst *MI, raw_ostream &O);
88 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
89 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
91 bool printAliasInstr(const MCInst *MI, raw_ostream &OS);
93 unsigned PrintMethodIdx, raw_ostream &O);
96 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
97 void printUnsignedImm(const MCInst *MI, int opNum, raw_ostream &O);
98 void printUnsignedImm8(const MCInst *MI, int opNum, raw_ostream &O);
99 void printMemOperand(const MCInst *MI, int opNum, raw_ostream &O);
100 void printMemOperandEA(const MCInst *MI, int opNum, raw_ostream &O)
    [all...]
  /external/clang/include/clang/Rewrite/Frontend/
Rewriters.h 24 void RewriteMacrosInInput(Preprocessor &PP, raw_ostream *OS);
27 void DoRewriteTest(Preprocessor &PP, raw_ostream *OS);
30 void RewriteIncludesInInput(Preprocessor &PP, raw_ostream *OS,
  /external/llvm/tools/yaml2obj/
yaml2obj.h 16 class raw_ostream;
21 int yaml2coff(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
22 int yaml2elf(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
  /external/llvm/lib/Target/Hexagon/InstPrinter/
HexagonInstPrinter.h 30 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
31 void printInst(const HexagonMCInst *MI, raw_ostream &O, StringRef Annot);
33 void printInstruction(const MCInst *MI, raw_ostream &O);
37 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) const;
38 void printImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) const;
39 void printExtOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O) const;
41 raw_ostream &O) const;
42 void printNegImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O)
44 void printNOneImmOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O)
46 void printMEMriOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O
    [all...]
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.h 31 void printInst(const MCInst *MI, raw_ostream &O, StringRef Annot) override;
32 void printRegName(raw_ostream &OS, unsigned RegNo) const override;
35 virtual void printInstruction(const MCInst *MI, raw_ostream &O);
36 virtual bool printAliasInstr(const MCInst *MI, raw_ostream &O);
38 unsigned PrintMethodIdx, raw_ostream &O);
46 bool printSysAlias(const MCInst *MI, raw_ostream &O);
48 void printOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O);
49 void printHexImm(const MCInst *MI, unsigned OpNo, raw_ostream &O);
51 raw_ostream &O);
53 void printPostIncOperand(const MCInst *MI, unsigned OpNo, raw_ostream &O)
    [all...]
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 43 void print(raw_ostream &O, const Module *M) const override;
56 raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const;
60 raw_ostream &printBlockFreq(raw_ostream &OS, const BasicBlock *BB) const;

Completed in 448 milliseconds

1 2 3 4 5 6 7 8 91011>>