2003-09-30 20:37:50 +02:00
|
|
|
//===- SystemUtils.h - Utilities to do low-level system stuff ---*- C++ -*-===//
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 21:46:57 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 21:46:57 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-12-24 00:50:16 +01:00
|
|
|
//
|
|
|
|
// This file contains functions used to do a variety of low-level, often
|
|
|
|
// system-specific, tasks.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-09-02 00:55:40 +02:00
|
|
|
#ifndef LLVM_SUPPORT_SYSTEMUTILS_H
|
|
|
|
#define LLVM_SUPPORT_SYSTEMUTILS_H
|
2002-12-24 00:50:16 +01:00
|
|
|
|
2009-08-23 23:36:09 +02:00
|
|
|
#include <string>
|
2002-12-24 00:50:16 +01:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
2009-08-23 23:36:09 +02:00
|
|
|
class raw_ostream;
|
|
|
|
namespace sys { class Path; }
|
2004-04-02 07:04:12 +02:00
|
|
|
|
2009-07-15 19:04:50 +02: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 23:36:09 +02:00
|
|
|
raw_ostream &stream_to_check, ///< The stream to be checked
|
|
|
|
bool print_warning = true ///< Control whether warnings are printed
|
2009-07-15 19:04:50 +02:00
|
|
|
);
|
|
|
|
|
2003-08-07 23:33:33 +02:00
|
|
|
/// FindExecutable - Find a named executable, giving the argv[0] of program
|
2009-08-05 22:21:17 +02: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 18:59:33 +01:00
|
|
|
/// @brief Find a named executable.
|
2004-12-14 00:40:08 +01:00
|
|
|
sys::Path FindExecutable(const std::string &ExeName,
|
2009-08-05 22:21:17 +02:00
|
|
|
const char *Argv0, void *MainAddr);
|
2004-12-19 18:59:33 +01:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-24 00:50:16 +01:00
|
|
|
#endif
|