sapling/eden/fs/utils/Memory.h
Xavier Deguillard a29d465ee8 fs: fix license header
Summary:
With Facebook having been renamed Meta Platforms, we need to change the license
headers.

Reviewed By: fanzeyi

Differential Revision: D33407812

fbshipit-source-id: b11bfbbf13a48873f0cea75f212cc7b07a68fb2e
2022-01-04 15:00:07 -08:00

43 lines
1013 B
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <folly/FBString.h>
#include <string>
namespace facebook::eden {
/**
* Asserts the specified memory consists entirely of zeroes, and aborts the
* process if not.
*/
void assertZeroBits(const void* memory, size_t size);
template <typename T>
void assertZeroBits(const T& value) {
assertZeroBits(&value, sizeof(T));
}
template <typename StringType>
bool isStringStorageEmbedded(const StringType& t) {
const void* tbegin = &t;
const void* tend = &t + 1;
return std::less_equal<const void*>{}(tbegin, t.data()) &&
std::less<const void*>{}(t.data(), tend);
}
template <typename StringType>
size_t estimateIndirectMemoryUsage(const StringType& s) {
if (isStringStorageEmbedded(s)) {
return 0;
} else {
return folly::goodMallocSize(s.capacity());
}
}
} // namespace facebook::eden