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
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and 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
|
|
|
|
2004-12-19 17:59:33 +00:00
|
|
|
#include "llvm/System/Program.h"
|
2002-12-23 23:50:16 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2005-04-21 20:48:15 +00:00
|
|
|
/// Determine if the ostream provided is connected to the std::cout and
|
|
|
|
/// displayed or not (to a console window). If so, generate a warning message
|
2005-01-01 23:56:20 +00:00
|
|
|
/// advising against display of bytecode and return true. Otherwise just return
|
|
|
|
/// false
|
|
|
|
/// @brief Check for output written to a console
|
2005-01-02 00:10:03 +00:00
|
|
|
bool CheckBytecodeOutputToConsole(
|
|
|
|
std::ostream* stream_to_check, ///< The stream to be checked
|
|
|
|
bool print_warning = true ///< Control whether warnings are printed
|
|
|
|
);
|
2004-04-02 05:04:12 +00:00
|
|
|
|
2003-08-07 21:33:33 +00:00
|
|
|
/// FindExecutable - Find a named executable, giving the argv[0] of program
|
|
|
|
/// being executed. This allows us to find another LLVM tool if it is built into
|
|
|
|
/// the same directory, but that directory is neither the current directory, nor
|
|
|
|
/// in the PATH. 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,
|
2004-12-19 17:59:33 +00:00
|
|
|
const std::string &ProgramPath);
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-12-23 23:50:16 +00:00
|
|
|
#endif
|