mirror of
https://github.com/RPCS3/llvm.git
synced 2025-05-14 17:36:29 +00:00

to reflect the new license. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@351636 91177308-0d34-0410-b5e6-96231b3b80d8
45 lines
1.5 KiB
C++
45 lines
1.5 KiB
C++
//===- Types.cpp - Helper for the selection of C++ data types. ------------===//
|
|
//
|
|
// 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 "Types.h"
|
|
|
|
// For LLVM_ATTRIBUTE_UNUSED
|
|
#include "llvm/Support/Compiler.h"
|
|
|
|
#include <cassert>
|
|
|
|
using namespace llvm;
|
|
|
|
const char *llvm::getMinimalTypeForRange(uint64_t Range, unsigned MaxSize LLVM_ATTRIBUTE_UNUSED) {
|
|
// TODO: The original callers only used 32 and 64 so these are the only
|
|
// values permitted. Rather than widen the supported values we should
|
|
// allow 64 for the callers that currently use 32 and remove the
|
|
// argument altogether.
|
|
assert((MaxSize == 32 || MaxSize == 64) && "Unexpected size");
|
|
assert(MaxSize <= 64 && "Unexpected size");
|
|
assert(((MaxSize > 32) ? Range <= 0xFFFFFFFFFFFFFFFFULL
|
|
: Range <= 0xFFFFFFFFULL) &&
|
|
"Enum too large");
|
|
|
|
if (Range > 0xFFFFFFFFULL)
|
|
return "uint64_t";
|
|
if (Range > 0xFFFF)
|
|
return "uint32_t";
|
|
if (Range > 0xFF)
|
|
return "uint16_t";
|
|
return "uint8_t";
|
|
}
|
|
|
|
const char *llvm::getMinimalTypeForEnumBitfield(uint64_t Size) {
|
|
uint64_t MaxIndex = Size;
|
|
if (MaxIndex > 0)
|
|
MaxIndex--;
|
|
assert(MaxIndex <= 64 && "Too many bits");
|
|
return getMinimalTypeForRange(1ULL << MaxIndex);
|
|
}
|