2007-12-12 23:03:45 +00:00
|
|
|
//===- llvm/System/Host.h - Host machine characteristics --------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// 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.
|
2007-12-12 23:03:45 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Methods for querying the nature of the host machine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SYSTEM_HOST_H
|
|
|
|
#define LLVM_SYSTEM_HOST_H
|
|
|
|
|
2008-10-02 01:17:28 +00:00
|
|
|
#include <string>
|
|
|
|
|
2007-12-12 23:03:45 +00:00
|
|
|
namespace llvm {
|
|
|
|
namespace sys {
|
|
|
|
|
2009-01-22 19:53:00 +00:00
|
|
|
inline bool isLittleEndianHost() {
|
2007-12-12 23:03:45 +00:00
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
char c;
|
|
|
|
};
|
|
|
|
i = 1;
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2009-01-22 19:53:00 +00:00
|
|
|
inline bool isBigEndianHost() {
|
|
|
|
return !isLittleEndianHost();
|
2007-12-12 23:03:45 +00:00
|
|
|
}
|
|
|
|
|
2009-01-22 19:53:00 +00:00
|
|
|
/// getOSName() - Return the name of the host operating system or "" if
|
2008-10-02 01:17:28 +00:00
|
|
|
/// unknown.
|
2009-01-22 19:53:00 +00:00
|
|
|
std::string getOSName();
|
2008-10-02 01:17:28 +00:00
|
|
|
|
2009-01-22 19:53:00 +00:00
|
|
|
/// getOSVersion() - Return the operating system version as a string or
|
2008-10-02 01:17:28 +00:00
|
|
|
/// "" if unknown.
|
2009-01-22 19:53:00 +00:00
|
|
|
std::string getOSVersion();
|
2007-12-12 23:03:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|