2003-09-30 18:37:50 +00:00
|
|
|
//===- SystemUtils.h - Utilities to do low-level system stuff ---*- C++ -*-===//
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 19:46:57 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 19:46:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-23 23:50:16 +00:00
|
|
|
//
|
|
|
|
// This file contains functions used to do a variety of low-level, often
|
|
|
|
// system-specific, tasks.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-01 22:55:40 +00:00
|
|
|
#ifndef LLVM_SUPPORT_SYSTEMUTILS_H
|
|
|
|
#define LLVM_SUPPORT_SYSTEMUTILS_H
|
2002-12-23 23:50:16 +00:00
|
|
|
|
2009-08-23 21:36:09 +00:00
|
|
|
#include <string>
|
2002-12-23 23:50:16 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2009-08-23 21:36:09 +00:00
|
|
|
class raw_ostream;
|
|
|
|
namespace sys { class Path; }
|
2004-04-02 05:04:12 +00:00
|
|
|
|
2009-07-15 17:04:50 +00:00
|
|
|
/// Determine if the raw_ostream provided is connected to the outs() and
|
|
|
|
/// displayed or not (to a console window). If so, generate a warning message
|
|
|
|
/// advising against display of bitcode and return true. Otherwise just return
|
|
|
|
/// false
|
|
|
|
/// @brief Check for output written to a console
|
|
|
|
bool CheckBitcodeOutputToConsole(
|
2009-08-23 21:36:09 +00:00
|
|
|
raw_ostream &stream_to_check, ///< The stream to be checked
|
|
|
|
bool print_warning = true ///< Control whether warnings are printed
|
2009-07-15 17:04:50 +00:00
|
|
|
);
|
|
|
|
|
2003-08-07 21:33:33 +00:00
|
|
|
/// FindExecutable - Find a named executable, giving the argv[0] of program
|
2009-08-05 20:21:17 +00:00
|
|
|
/// being executed. This allows us to find another LLVM tool if it is built in
|
|
|
|
/// the same directory. If the executable cannot be found, return an
|
|
|
|
/// empty string.
|
2004-12-19 17:59:33 +00:00
|
|
|
/// @brief Find a named executable.
|
2004-12-13 23:40:08 +00:00
|
|
|
sys::Path FindExecutable(const std::string &ExeName,
|
2009-08-05 20:21:17 +00:00
|
|
|
const char *Argv0, void *MainAddr);
|
2004-12-19 17:59:33 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-23 23:50:16 +00:00
|
|
|
#endif
|