We have some modifications downstream to compile the flang runtime for amdgpu using clang OpenMP, some more hacky than others to workaround (hopefully temporary) compiler issues. The additions here are the non-hacky alterations. Main changes: * Create freestanding versions of memcpy, strlen and memmove, and replace std:: references with these so that we can default to std:: when it's available, or our own Flang implementation when it's not. * Wrap more bits and pieces of the library in declare target wrappers (RT_* macros). * Fix some warnings that'll pose issues with werror on, in this case having the namespace infront of variables passed to templates. Another minor issues that'll likely still pop up depending on the program you're linking with is that abort will be undefined, it is perhaps possible to solve it with a freestanding implementation as with memcpy etc. but we end up with multiple definitions in this case. An alternative is to create an empty extern "c" version (which can be empty or forwrd on to the builtin). Co-author: Dan Palermo Dan.Palermo@amd.com
86 lines
2.9 KiB
C++
86 lines
2.9 KiB
C++
//===-- lib/runtime/ragged.cpp ----------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "flang/Runtime/ragged.h"
|
|
#include "flang-rt/runtime/tools.h"
|
|
#include <cstdlib>
|
|
|
|
namespace Fortran::runtime {
|
|
|
|
inline RT_API_ATTRS bool isIndirection(const RaggedArrayHeader *const header) {
|
|
return header->flags & 1;
|
|
}
|
|
|
|
inline RT_API_ATTRS std::size_t rank(const RaggedArrayHeader *const header) {
|
|
return header->flags >> 1;
|
|
}
|
|
|
|
RT_API_ATTRS RaggedArrayHeader *RaggedArrayAllocate(RaggedArrayHeader *header,
|
|
bool isHeader, std::int64_t rank, std::int64_t elementSize,
|
|
std::int64_t *extentVector) {
|
|
if (header && rank) {
|
|
std::int64_t size{1};
|
|
for (std::int64_t counter{0}; counter < rank; ++counter) {
|
|
size *= extentVector[counter];
|
|
if (size <= 0) {
|
|
return nullptr;
|
|
}
|
|
}
|
|
header->flags = (rank << 1) | isHeader;
|
|
header->extentPointer = extentVector;
|
|
if (isHeader) {
|
|
elementSize = sizeof(RaggedArrayHeader);
|
|
}
|
|
Terminator terminator{__FILE__, __LINE__};
|
|
std::size_t bytes{static_cast<std::size_t>(elementSize * size)};
|
|
header->bufferPointer = AllocateMemoryOrCrash(terminator, bytes);
|
|
if (header->bufferPointer) {
|
|
runtime::memset(header->bufferPointer, 0, bytes);
|
|
}
|
|
return header;
|
|
} else {
|
|
return nullptr;
|
|
}
|
|
}
|
|
|
|
// Deallocate a ragged array from the heap.
|
|
RT_API_ATTRS void RaggedArrayDeallocate(RaggedArrayHeader *raggedArrayHeader) {
|
|
if (raggedArrayHeader) {
|
|
if (std::size_t end{rank(raggedArrayHeader)}) {
|
|
if (isIndirection(raggedArrayHeader)) {
|
|
std::size_t linearExtent{1u};
|
|
for (std::size_t counter{0u}; counter < end && linearExtent > 0;
|
|
++counter) {
|
|
linearExtent *= raggedArrayHeader->extentPointer[counter];
|
|
}
|
|
for (std::size_t counter{0u}; counter < linearExtent; ++counter) {
|
|
RaggedArrayDeallocate(&static_cast<RaggedArrayHeader *>(
|
|
raggedArrayHeader->bufferPointer)[counter]);
|
|
}
|
|
}
|
|
std::free(raggedArrayHeader->bufferPointer);
|
|
std::free(raggedArrayHeader->extentPointer);
|
|
raggedArrayHeader->flags = 0u;
|
|
}
|
|
}
|
|
}
|
|
|
|
extern "C" {
|
|
void *RTDEF(RaggedArrayAllocate)(void *header, bool isHeader, std::int64_t rank,
|
|
std::int64_t elementSize, std::int64_t *extentVector) {
|
|
auto *result = RaggedArrayAllocate(static_cast<RaggedArrayHeader *>(header),
|
|
isHeader, rank, elementSize, extentVector);
|
|
return static_cast<void *>(result);
|
|
}
|
|
|
|
void RTDEF(RaggedArrayDeallocate)(void *raggedArrayHeader) {
|
|
RaggedArrayDeallocate(static_cast<RaggedArrayHeader *>(raggedArrayHeader));
|
|
}
|
|
} // extern "C"
|
|
} // namespace Fortran::runtime
|