mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Add a pair of functions to hide system specific details of mapping a file in for reading.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13863 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e6620c9e0
commit
eb08299518
@ -42,7 +42,7 @@ bool IsSharedObject(const std::string &FN);
|
|||||||
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
||||||
/// which we can successfully open.
|
/// which we can successfully open.
|
||||||
///
|
///
|
||||||
bool FileOpenable (const std::string &Filename);
|
bool FileOpenable(const std::string &Filename);
|
||||||
|
|
||||||
/// DiffFiles - Compare the two files specified, returning true if they are
|
/// DiffFiles - Compare the two files specified, returning true if they are
|
||||||
/// different or if there is a file error. If you specify a string to fill in
|
/// different or if there is a file error. If you specify a string to fill in
|
||||||
@ -93,6 +93,16 @@ long long getFileSize(const std::string &Filename);
|
|||||||
/// not exist or there is an error getting the time-stamp, zero is returned.
|
/// not exist or there is an error getting the time-stamp, zero is returned.
|
||||||
unsigned long long getFileTimestamp(const std::string &Filename);
|
unsigned long long getFileTimestamp(const std::string &Filename);
|
||||||
|
|
||||||
|
/// ReadFileIntoAddressSpace - Attempt to map the specific file into the
|
||||||
|
/// address space of the current process for reading. If this succeeds,
|
||||||
|
/// return the address of the buffer and the length of the file mapped. On
|
||||||
|
/// failure, return null.
|
||||||
|
void *ReadFileIntoAddressSpace(const std::string &Filename, unsigned &Length);
|
||||||
|
|
||||||
|
/// UnmapFileFromAddressSpace - Remove the specified file from the current
|
||||||
|
/// address space.
|
||||||
|
void UnmapFileFromAddressSpace(void *Buffer, unsigned Length);
|
||||||
|
|
||||||
|
|
||||||
/// FDHandle - Simple handle class to make sure a file descriptor gets closed
|
/// FDHandle - Simple handle class to make sure a file descriptor gets closed
|
||||||
/// when the object is destroyed. This handle acts similarly to an
|
/// when the object is destroyed. This handle acts similarly to an
|
||||||
|
@ -42,7 +42,7 @@ bool IsSharedObject(const std::string &FN);
|
|||||||
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
/// FileOpenable - Returns true IFF Filename names an existing regular file
|
||||||
/// which we can successfully open.
|
/// which we can successfully open.
|
||||||
///
|
///
|
||||||
bool FileOpenable (const std::string &Filename);
|
bool FileOpenable(const std::string &Filename);
|
||||||
|
|
||||||
/// DiffFiles - Compare the two files specified, returning true if they are
|
/// DiffFiles - Compare the two files specified, returning true if they are
|
||||||
/// different or if there is a file error. If you specify a string to fill in
|
/// different or if there is a file error. If you specify a string to fill in
|
||||||
@ -93,6 +93,16 @@ long long getFileSize(const std::string &Filename);
|
|||||||
/// not exist or there is an error getting the time-stamp, zero is returned.
|
/// not exist or there is an error getting the time-stamp, zero is returned.
|
||||||
unsigned long long getFileTimestamp(const std::string &Filename);
|
unsigned long long getFileTimestamp(const std::string &Filename);
|
||||||
|
|
||||||
|
/// ReadFileIntoAddressSpace - Attempt to map the specific file into the
|
||||||
|
/// address space of the current process for reading. If this succeeds,
|
||||||
|
/// return the address of the buffer and the length of the file mapped. On
|
||||||
|
/// failure, return null.
|
||||||
|
void *ReadFileIntoAddressSpace(const std::string &Filename, unsigned &Length);
|
||||||
|
|
||||||
|
/// UnmapFileFromAddressSpace - Remove the specified file from the current
|
||||||
|
/// address space.
|
||||||
|
void UnmapFileFromAddressSpace(void *Buffer, unsigned Length);
|
||||||
|
|
||||||
|
|
||||||
/// FDHandle - Simple handle class to make sure a file descriptor gets closed
|
/// FDHandle - Simple handle class to make sure a file descriptor gets closed
|
||||||
/// when the object is destroyed. This handle acts similarly to an
|
/// when the object is destroyed. This handle acts similarly to an
|
||||||
|
@ -14,8 +14,10 @@
|
|||||||
|
|
||||||
#include "Support/FileUtilities.h"
|
#include "Support/FileUtilities.h"
|
||||||
#include "Config/unistd.h"
|
#include "Config/unistd.h"
|
||||||
|
#include "Config/fcntl.h"
|
||||||
#include "Config/sys/stat.h"
|
#include "Config/sys/stat.h"
|
||||||
#include "Config/sys/types.h"
|
#include "Config/sys/types.h"
|
||||||
|
#include "Config/sys/mman.h"
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
@ -215,8 +217,40 @@ unsigned long long llvm::getFileTimestamp(const std::string &Filename) {
|
|||||||
return StatBuf.st_mtime;
|
return StatBuf.st_mtime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// ReadFileIntoAddressSpace - Attempt to map the specific file into the
|
||||||
|
/// address space of the current process for reading. If this succeeds,
|
||||||
|
/// return the address of the buffer and the length of the file mapped. On
|
||||||
|
/// failure, return null.
|
||||||
|
void *llvm::ReadFileIntoAddressSpace(const std::string &Filename,
|
||||||
|
unsigned &Length) {
|
||||||
|
#ifdef HAVE_MMAP_FILE
|
||||||
|
Length = getFileSize(Filename);
|
||||||
|
if ((int)Length == -1) return 0;
|
||||||
|
|
||||||
|
FDHandle FD(open(Filename.c_str(), O_RDONLY));
|
||||||
|
if (FD == -1) return 0;
|
||||||
|
|
||||||
|
// mmap in the file all at once...
|
||||||
|
void *Buffer = (void*)mmap(0, Length, PROT_READ, MAP_PRIVATE, FD, 0);
|
||||||
|
|
||||||
|
if (Buffer == (void*)MAP_FAILED)
|
||||||
|
return 0;
|
||||||
|
return Buffer;
|
||||||
|
#else
|
||||||
|
// FIXME: implement with read/write
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// UnmapFileFromAddressSpace - Remove the specified file from the current
|
||||||
|
/// address space.
|
||||||
|
void llvm::UnmapFileFromAddressSpace(void *Buffer, unsigned Length) {
|
||||||
|
#ifdef HAVE_MMAP_FILE
|
||||||
|
munmap((char*)Buffer, Length);
|
||||||
|
#else
|
||||||
|
free(Buffer);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// FDHandle class implementation
|
// FDHandle class implementation
|
||||||
|
Loading…
Reference in New Issue
Block a user