clang 20.0.0git
PrimType.cpp
Go to the documentation of this file.
1//===--- PrimType.cpp - Types for the constexpr VM --------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "PrimType.h"
10#include "Boolean.h"
11#include "Floating.h"
12#include "FunctionPointer.h"
13#include "IntegralAP.h"
14#include "MemberPointer.h"
15#include "Pointer.h"
16
17using namespace clang;
18using namespace clang::interp;
19
20namespace clang {
21namespace interp {
22
24 TYPE_SWITCH(Type, return sizeof(T));
25 llvm_unreachable("not a primitive type");
26}
27
28} // namespace interp
29} // namespace clang
#define TYPE_SWITCH(Expr, B)
Definition: PrimType.h:122
The base class of the type hierarchy.
Definition: Type.h:1829
PrimType
Enumeration of the primitive types of the VM.
Definition: PrimType.h:33
size_t primSize(PrimType Type)
Returns the size of a primitive type in bytes.
Definition: PrimType.cpp:23
The JSON file list parser is used to communicate input to InstallAPI.
const FunctionProtoType * T