reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86
   87
   88
   89
   90
   91
   92
   93
   94
   95
   96
   97
   98
   99
  100
  101
  102
  103
  104
  105
  106
  107
  108
  109
  110
  111
  112
  113
  114
  115
//===--- PrimType.h - Types for the constexpr VM --------------------*- 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
//
//===----------------------------------------------------------------------===//
//
// Defines the VM types and helpers operating on types.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_AST_INTERP_TYPE_H
#define LLVM_CLANG_AST_INTERP_TYPE_H

#include <climits>
#include <cstddef>
#include <cstdint>
#include "Boolean.h"
#include "Integral.h"
#include "Pointer.h"

namespace clang {
namespace interp {

/// Enumeration of the primitive types of the VM.
enum PrimType : unsigned {
  PT_Sint8,
  PT_Uint8,
  PT_Sint16,
  PT_Uint16,
  PT_Sint32,
  PT_Uint32,
  PT_Sint64,
  PT_Uint64,
  PT_Bool,
  PT_Ptr,
};

/// Mapping from primitive types to their representation.
template <PrimType T> struct PrimConv;
template <> struct PrimConv<PT_Sint8> { using T = Integral<8, true>; };
template <> struct PrimConv<PT_Uint8> { using T = Integral<8, false>; };
template <> struct PrimConv<PT_Sint16> { using T = Integral<16, true>; };
template <> struct PrimConv<PT_Uint16> { using T = Integral<16, false>; };
template <> struct PrimConv<PT_Sint32> { using T = Integral<32, true>; };
template <> struct PrimConv<PT_Uint32> { using T = Integral<32, false>; };
template <> struct PrimConv<PT_Sint64> { using T = Integral<64, true>; };
template <> struct PrimConv<PT_Uint64> { using T = Integral<64, false>; };
template <> struct PrimConv<PT_Bool> { using T = Boolean; };
template <> struct PrimConv<PT_Ptr> { using T = Pointer; };

/// Returns the size of a primitive type in bytes.
size_t primSize(PrimType Type);

/// Aligns a size to the pointer alignment.
constexpr size_t align(size_t Size) {
  return ((Size + alignof(void *) - 1) / alignof(void *)) * alignof(void *);
}

inline bool isPrimitiveIntegral(PrimType Type) {
  switch (Type) {
  case PT_Bool:
  case PT_Sint8:
  case PT_Uint8:
  case PT_Sint16:
  case PT_Uint16:
  case PT_Sint32:
  case PT_Uint32:
  case PT_Sint64:
  case PT_Uint64:
    return true;
  default:
    return false;
  }
}

} // namespace interp
} // namespace clang

/// Helper macro to simplify type switches.
/// The macro implicitly exposes a type T in the scope of the inner block.
#define TYPE_SWITCH_CASE(Name, B) \
  case Name: { using T = PrimConv<Name>::T; do {B;} while(0); break; }
#define TYPE_SWITCH(Expr, B)                                                   \
  switch (Expr) {                                                              \
    TYPE_SWITCH_CASE(PT_Sint8, B)                                              \
    TYPE_SWITCH_CASE(PT_Uint8, B)                                              \
    TYPE_SWITCH_CASE(PT_Sint16, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint16, B)                                             \
    TYPE_SWITCH_CASE(PT_Sint32, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint32, B)                                             \
    TYPE_SWITCH_CASE(PT_Sint64, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint64, B)                                             \
    TYPE_SWITCH_CASE(PT_Bool, B)                                               \
    TYPE_SWITCH_CASE(PT_Ptr, B)                                                \
  }
#define COMPOSITE_TYPE_SWITCH(Expr, B, D)                                      \
  switch (Expr) {                                                              \
    TYPE_SWITCH_CASE(PT_Ptr, B)                                                \
    default: do { D; } while(0); break;                                        \
  }
#define INT_TYPE_SWITCH(Expr, B)                                               \
  switch (Expr) {                                                              \
    TYPE_SWITCH_CASE(PT_Sint8, B)                                              \
    TYPE_SWITCH_CASE(PT_Uint8, B)                                              \
    TYPE_SWITCH_CASE(PT_Sint16, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint16, B)                                             \
    TYPE_SWITCH_CASE(PT_Sint32, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint32, B)                                             \
    TYPE_SWITCH_CASE(PT_Sint64, B)                                             \
    TYPE_SWITCH_CASE(PT_Uint64, B)                                             \
    default: llvm_unreachable("not an integer");                               \
  }
#endif