Files
wehub-resource-sync 8a852e4b4e
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s
chore: import upstream snapshot with attribution
2026-07-13 12:14:16 +08:00

148 lines
4.8 KiB
C++

/* Copyright 2018 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include <fcntl.h>
#include <stddef.h>
#include <sys/mman.h>
#include <sys/stat.h>
#include <unistd.h>
#include <cerrno>
#include "tensorflow/compiler/mlir/lite/allocation.h"
#include "tensorflow/compiler/mlir/lite/core/api/error_reporter.h"
#include "tensorflow/lite/util.h"
namespace tflite {
namespace {
size_t GetFdSizeBytes(int fd) {
if (fd < 0) {
return 0;
}
struct stat fd_stat;
if (fstat(fd, &fd_stat) != 0) {
return 0;
}
return fd_stat.st_size;
}
} // namespace
MMAPAllocation::MMAPAllocation(const char* filename,
ErrorReporter* error_reporter, bool map_private)
: MMAPAllocation(error_reporter, open(filename, O_RDONLY), map_private) {
if (mmap_fd_ == -1) {
TF_LITE_REPORT_ERROR(error_reporter, "Could not open '%s'.", filename);
}
}
MMAPAllocation::MMAPAllocation(int fd, ErrorReporter* error_reporter,
bool map_private)
: MMAPAllocation(error_reporter, dup(fd), map_private) {
if (mmap_fd_ == -1) {
TF_LITE_REPORT_ERROR(error_reporter, "Failed to dup '%d' file descriptor.",
fd);
}
}
MMAPAllocation::MMAPAllocation(const char* filename, size_t offset,
size_t length, ErrorReporter* error_reporter,
bool map_private)
: MMAPAllocation(error_reporter, open(filename, O_RDONLY), offset, length,
map_private) {
if (mmap_fd_ == -1) {
TF_LITE_REPORT_ERROR(error_reporter, "Could not open '%s'.", filename);
}
}
MMAPAllocation::MMAPAllocation(int fd, size_t offset, size_t length,
ErrorReporter* error_reporter, bool map_private)
: MMAPAllocation(error_reporter, dup(fd), offset, length, map_private) {
if (mmap_fd_ == -1) {
TF_LITE_REPORT_ERROR(error_reporter, "Failed to dup '%d' file descriptor.",
fd);
}
}
MMAPAllocation::MMAPAllocation(ErrorReporter* error_reporter, int owned_fd,
bool map_private)
: MMAPAllocation(error_reporter, owned_fd, /*offset=*/0,
/*length=*/GetFdSizeBytes(owned_fd), map_private) {}
MMAPAllocation::MMAPAllocation(ErrorReporter* error_reporter, int owned_fd,
size_t offset, size_t length, bool map_private)
: Allocation(error_reporter, Allocation::Type::kMMap),
mmap_fd_(owned_fd),
mmapped_buffer_(MAP_FAILED),
buffer_size_bytes_(length) {
if (owned_fd < 0) {
return;
}
static int pagesize = sysconf(_SC_PAGE_SIZE);
offset_in_buffer_ = offset % pagesize;
offset_of_buffer_in_file_ = offset - offset_in_buffer_;
size_t file_size = GetFdSizeBytes(mmap_fd_);
CheckedInt<size_t> checked_length_offset =
CheckedInt<size_t>(length) + offset;
if (checked_length_offset.Overflow() ||
checked_length_offset.Value() > file_size) {
TF_LITE_REPORT_ERROR(error_reporter,
"Asked to mmap '%d' bytes from fd '%d' at offset "
"'%d'. This is over the length of file '%d'.",
length, mmap_fd_, offset, file_size);
return;
}
mmapped_buffer_ = mmap(nullptr, /*__len=*/length + offset_in_buffer_,
map_private ? (PROT_READ | PROT_WRITE) : PROT_READ,
map_private ? MAP_PRIVATE : MAP_SHARED, mmap_fd_,
/*__offset=*/offset_of_buffer_in_file_);
if (mmapped_buffer_ == MAP_FAILED) {
TF_LITE_REPORT_ERROR(error_reporter,
"Mmap of '%d' at offset '%d' failed with error '%d'.",
mmap_fd_, offset, errno);
return;
}
}
MMAPAllocation::~MMAPAllocation() {
if (valid()) {
munmap(const_cast<void*>(mmapped_buffer_),
buffer_size_bytes_ + offset_in_buffer_);
}
if (mmap_fd_ >= 0) {
close(mmap_fd_);
}
}
const void* MMAPAllocation::base() const {
return reinterpret_cast<const void*>(
reinterpret_cast<const char*>(mmapped_buffer_) + offset_in_buffer_);
}
size_t MMAPAllocation::bytes() const { return buffer_size_bytes_; }
bool MMAPAllocation::valid() const { return mmapped_buffer_ != MAP_FAILED; }
bool MMAPAllocation::IsSupported() { return true; }
} // namespace tflite