aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-12-12 00:47:44 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-12-12 00:47:44 +0000
commit27b40bcc9c05ffebb84cc53b54858af2d869dcd4 (patch)
tree6553016cb5edf9420b27999aa5fa0aa0b4c78932 /lib/Bytecode
parent3f6e798a14fa2eead887632f5ff268c8015f6b15 (diff)
Throw better error messages, by calling strerror(errno) when we
get an error inside the bytecode reader. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10415 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode')
-rw-r--r--lib/Bytecode/Reader/ReaderWrappers.cpp13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/Bytecode/Reader/ReaderWrappers.cpp b/lib/Bytecode/Reader/ReaderWrappers.cpp
index 3de1dd4425..291ad87344 100644
--- a/lib/Bytecode/Reader/ReaderWrappers.cpp
+++ b/lib/Bytecode/Reader/ReaderWrappers.cpp
@@ -19,6 +19,7 @@
#include "Support/StringExtras.h"
#include "Config/fcntl.h"
#include <sys/stat.h>
+#include <cerrno>
#include "Config/unistd.h"
#include "Config/sys/mman.h"
using namespace llvm;
@@ -57,22 +58,26 @@ namespace {
};
}
+static std::string ErrnoMessage (int savedErrNum, std::string descr) {
+ return ::strerror(savedErrNum) + std::string(", while trying to ") + descr;
+}
+
BytecodeFileReader::BytecodeFileReader(const std::string &Filename) {
FDHandle FD = open(Filename.c_str(), O_RDONLY);
if (FD == -1)
- throw std::string("Error opening file!");
+ throw ErrnoMessage(errno, "open '" + Filename + "'");
// Stat the file to get its length...
struct stat StatBuf;
if (fstat(FD, &StatBuf) == -1 || StatBuf.st_size == 0)
- throw std::string("Error stat'ing file!");
+ throw ErrnoMessage(errno, "stat '" + Filename + "'");
// mmap in the file all at once...
Length = StatBuf.st_size;
Buffer = (unsigned char*)mmap(0, Length, PROT_READ, MAP_PRIVATE, FD, 0);
if (Buffer == (unsigned char*)MAP_FAILED)
- throw std::string("Error mmapping file!");
+ throw ErrnoMessage(errno, "map '" + Filename + "' into memory");
try {
// Parse the bytecode we mmapped in
@@ -167,7 +172,7 @@ BytecodeStdinReader::BytecodeStdinReader() {
// Read in all of the data from stdin, we cannot mmap stdin...
while ((BlockSize = ::read(0 /*stdin*/, Buffer, 4096*4))) {
if (BlockSize == -1)
- throw std::string("Error reading from stdin!");
+ throw ErrnoMessage(errno, "read from standard input");
FileData.insert(FileData.end(), Buffer, Buffer+BlockSize);
}