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

1 2

  /frameworks/compile/slang/
llvm-rs-as.cpp 42 OutputFilename("o", cl::desc("Override output filename"),
66 if (OutputFilename.empty()) {
68 OutputFilename = "-";
74 OutputFilename = std::string(IFN.begin(), IFN.end()-3);
76 OutputFilename = IFN; // Append a .bc to it
78 OutputFilename += ".bc";
84 (new tool_output_file(OutputFilename.c_str(), EC, llvm::sys::fs::F_None));
  /external/llvm/lib/TableGen/
Main.cpp 32 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"),
53 if (OutputFilename == "-") {
64 DepOut.os() << OutputFilename << ":";
98 tool_output_file Out(OutputFilename, EC, sys::fs::F_Text);
100 errs() << argv0 << ": error opening " << OutputFilename << ":"
  /external/llvm/tools/llvm-as/
llvm-as.cpp 38 OutputFilename("o", cl::desc("Override output filename"),
65 if (OutputFilename.empty()) {
67 OutputFilename = "-";
70 OutputFilename = (IFN.endswith(".ll") ? IFN.drop_back(3) : IFN).str();
71 OutputFilename += ".bc";
77 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
  /external/llvm/tools/yaml2obj/
yaml2obj.cpp 60 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
84 if (OutputFilename.empty())
85 OutputFilename = "-";
89 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 48 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
102 if (OutputFilename == "") {
107 OutputFilename = base+".bc";
109 if (OutputFilename != "-") {
111 out = new raw_fd_ostream(OutputFilename, EC, sys::fs::F_None);
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 44 OutputFilename("o", cl::desc("Override output filename"),
170 OutputFilename = "-";
172 if (OutputFilename.empty()) { // Unspecified output, infer it.
174 OutputFilename = "-";
177 OutputFilename = (IFN.endswith(".bc") ? IFN.drop_back(3) : IFN).str();
178 OutputFilename += ".ll";
184 new tool_output_file(OutputFilename, EC, sys::fs::F_None));
  /external/llvm/tools/llc/
llc.cpp 60 OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
112 if (OutputFilename.empty()) {
114 OutputFilename = "-";
119 OutputFilename = IFN.drop_back(3);
121 OutputFilename = IFN.drop_back(4);
123 OutputFilename = IFN;
129 OutputFilename += ".cbe.c";
131 OutputFilename += ".cpp";
133 OutputFilename += ".s";
135 OutputFilename += ".s"
    [all...]
  /external/llvm/tools/llvm-cov/
TestingSupport.cpp 31 cl::opt<std::string> OutputFilename(
78 sys::fs::openFileForWrite(OutputFilename, FD, sys::fs::F_None)) {
  /external/llvm/tools/llvm-split/
llvm-split.cpp 32 OutputFilename("o", cl::desc("Override output filename"),
54 OutputFilename + utostr(I++), EC, sys::fs::F_None));
  /external/llvm/lib/Support/
GraphWriter.cpp 219 std::string OutputFilename =
232 args.push_back(OutputFilename.c_str());
249 args.push_back(OutputFilename.c_str());
253 args.push_back(OutputFilename.c_str());
257 args.push_back(OutputFilename.c_str());
263 (StringRef("start ") + (wait ? "/WAIT " : "") + OutputFilename).str();
272 return ExecGraphViewer(ViewerPath, args, OutputFilename, wait, ErrMsg);
Timer.cpp 55 const std::string &OutputFilename = getLibSupportInfoOutputFilename();
56 if (OutputFilename.empty())
58 if (OutputFilename == "-")
67 OutputFilename, EC, sys::fs::F_Append | sys::fs::F_Text);
72 << OutputFilename << " for appending!\n";
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 109 StringRef OutputFilename,
111 if (OutputFilename.compare("-") == 0)
118 raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None);
120 exitWithErrorCode(EC, OutputFilename);
151 StringRef OutputFilename,
155 SampleProfileWriter::create(OutputFilename, FormatMap[OutputFormat]);
157 exitWithErrorCode(EC, OutputFilename);
213 cl::opt<std::string> OutputFilename("output", cl::value_desc("output"),
217 cl::aliasopt(OutputFilename));
244 mergeInstrProfile(WeightedInputs, OutputFilename, OutputFormat)
    [all...]
  /external/llvm/tools/dsymutil/
dsymutil.h 48 /// \p DM into a DwarfFile named \p OutputFilename.
50 bool linkDwarf(StringRef OutputFilename, const DebugMap &DM,
  /external/llvm/tools/llvm-lto/
llvm-lto.cpp 76 OutputFilename("o", cl::init(""),
229 assert(!OutputFilename.empty());
230 raw_fd_ostream OS(OutputFilename + ".thinlto.bc", EC,
232 error(EC, "error opening the file '" + OutputFilename + ".thinlto.bc'");
344 if (!OutputFilename.empty()) {
353 std::string ModuleFilename = OutputFilename;
366 std::string PartFilename = OutputFilename;
  /frameworks/compile/libbcc/tools/bcc_strip_attr/
bcc_strip_attr.cpp 39 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
134 tool_output_file Out(OutputFilename.c_str(), EC,
  /external/llvm/tools/bugpoint/
OptimizerDriver.cpp 131 std::string &OutputFilename, bool DeleteOutput,
144 OutputFilename = UniqueFilename.str();
206 Args.push_back(OutputFilename.c_str());
243 sys::fs::remove(OutputFilename);
BugDriver.h 174 std::string OutputFilename,
266 std::string &OutputFilename, bool DeleteOutput = false,
  /external/llvm/tools/opt/
opt.cpp 82 OutputFilename("o", cl::desc("Override output filename"),
376 if (!OutputFilename.empty())
381 if (OutputFilename.empty())
382 OutputFilename = "-";
385 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None));
470 if (OutputFilename.empty())
471 OutputFilename = "-";
474 Out = llvm::make_unique<tool_output_file>(OutputFilename, EC,
  /external/webrtc/webrtc/video/
video_loopback.cc 88 std::string OutputFilename() {
219 {"video", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(),
screenshare_loopback.cc 86 std::string OutputFilename() {
230 {"screenshare", 0.0, 0.0, flags::DurationSecs(), flags::OutputFilename(),
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 272 std::string OutputFilename = DetermineOutputFilename(OptOutputFilename);
273 if (OutputFilename.empty()) {
278 if (!rscd.buildForCompatLib(*s, OutputFilename.c_str(), nullptr, OptRuntimePath.c_str(), false)) {
  /external/llvm/tools/llvm-extract/
llvm-extract.cpp 43 OutputFilename("o", cl::desc("Specify output filename"),
267 tool_output_file Out(OutputFilename, EC, sys::fs::F_None);
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 36 static opt<std::string> OutputFilename(Required, "o",
404 raw_fd_ostream OutFile(OutputFilename, EC, sys::fs::F_None);
406 return error(Twine(OutputFilename) + ": " + EC.message(), Context);
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 49 OutputFilename("o", cl::desc("Output filename"),
212 if (OutputFilename == "")
213 OutputFilename = "-";
216 auto Out = llvm::make_unique<tool_output_file>(OutputFilename, EC,
  /external/llvm/tools/llvm-link/
llvm-link.cpp 66 OutputFilename("o", cl::desc("Override output filename"), cl::init("-"),
337 tool_output_file Out(OutputFilename, EC, sys::fs::F_None);

Completed in 1398 milliseconds

1 2