constants.h 6.48 KB
Newer Older
1 2 3 4 5 6 7
// Copyright 2019 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef V8_TORQUE_CONSTANTS_H_
#define V8_TORQUE_CONSTANTS_H_

8
#include <cstring>
9 10
#include <string>

11 12
#include "src/base/flags.h"

13 14 15 16 17 18 19
namespace v8 {
namespace internal {
namespace torque {

static const char* const CONSTEXPR_TYPE_PREFIX = "constexpr ";
static const char* const NEVER_TYPE_STRING = "never";
static const char* const CONSTEXPR_BOOL_TYPE_STRING = "constexpr bool";
20
static const char* const CONSTEXPR_STRING_TYPE_STRING = "constexpr string";
21
static const char* const CONSTEXPR_INTPTR_TYPE_STRING = "constexpr intptr";
22 23
static const char* const CONSTEXPR_INSTANCE_TYPE_TYPE_STRING =
    "constexpr InstanceType";
24 25 26 27
static const char* const BOOL_TYPE_STRING = "bool";
static const char* const VOID_TYPE_STRING = "void";
static const char* const ARGUMENTS_TYPE_STRING = "Arguments";
static const char* const CONTEXT_TYPE_STRING = "Context";
28
static const char* const NO_CONTEXT_TYPE_STRING = "NoContext";
29
static const char* const NATIVE_CONTEXT_TYPE_STRING = "NativeContext";
30
static const char* const JS_FUNCTION_TYPE_STRING = "JSFunction";
31 32 33
static const char* const MAP_TYPE_STRING = "Map";
static const char* const OBJECT_TYPE_STRING = "Object";
static const char* const HEAP_OBJECT_TYPE_STRING = "HeapObject";
34
static const char* const JSANY_TYPE_STRING = "JSAny";
35 36 37
static const char* const JSOBJECT_TYPE_STRING = "JSObject";
static const char* const SMI_TYPE_STRING = "Smi";
static const char* const TAGGED_TYPE_STRING = "Tagged";
38
static const char* const STRONG_TAGGED_TYPE_STRING = "StrongTagged";
39
static const char* const UNINITIALIZED_TYPE_STRING = "Uninitialized";
40 41
static const char* const UNINITIALIZED_HEAP_OBJECT_TYPE_STRING =
    "UninitializedHeapObject";
42
static const char* const RAWPTR_TYPE_STRING = "RawPtr";
43
static const char* const EXTERNALPTR_TYPE_STRING = "ExternalPointer";
44 45 46 47 48 49
static const char* const CONST_STRING_TYPE_STRING = "constexpr string";
static const char* const STRING_TYPE_STRING = "String";
static const char* const NUMBER_TYPE_STRING = "Number";
static const char* const BUILTIN_POINTER_TYPE_STRING = "BuiltinPtr";
static const char* const INTPTR_TYPE_STRING = "intptr";
static const char* const UINTPTR_TYPE_STRING = "uintptr";
50 51
static const char* const INT64_TYPE_STRING = "int64";
static const char* const INT31_TYPE_STRING = "int31";
52
static const char* const INT32_TYPE_STRING = "int32";
53
static const char* const UINT31_TYPE_STRING = "uint31";
54 55 56 57 58
static const char* const UINT32_TYPE_STRING = "uint32";
static const char* const INT16_TYPE_STRING = "int16";
static const char* const UINT16_TYPE_STRING = "uint16";
static const char* const INT8_TYPE_STRING = "int8";
static const char* const UINT8_TYPE_STRING = "uint8";
59 60 61 62
static const char* const BINT_TYPE_STRING = "bint";
static const char* const CHAR8_TYPE_STRING = "char8";
static const char* const CHAR16_TYPE_STRING = "char16";
static const char* const FLOAT32_TYPE_STRING = "float32";
63
static const char* const FLOAT64_TYPE_STRING = "float64";
64
static const char* const FLOAT64_OR_HOLE_TYPE_STRING = "float64_or_hole";
65 66 67
static const char* const CONST_INT31_TYPE_STRING = "constexpr int31";
static const char* const CONST_INT32_TYPE_STRING = "constexpr int32";
static const char* const CONST_FLOAT64_TYPE_STRING = "constexpr float64";
68
static const char* const TORQUE_INTERNAL_NAMESPACE_STRING = "torque_internal";
69 70
static const char* const MUTABLE_REFERENCE_TYPE_STRING = "MutableReference";
static const char* const CONST_REFERENCE_TYPE_STRING = "ConstReference";
71
static const char* const SLICE_TYPE_STRING = "Slice";
72
static const char* const WEAK_TYPE_STRING = "Weak";
73
static const char* const SMI_TAGGED_TYPE_STRING = "SmiTagged";
74 75
static const char* const UNINITIALIZED_ITERATOR_TYPE_STRING =
    "UninitializedIterator";
76 77
static const char* const GENERIC_TYPE_INSTANTIATION_NAMESPACE_STRING =
    "_generic_type_instantiation_namespace";
78
static const char* const FIXED_ARRAY_BASE_TYPE_STRING = "FixedArrayBase";
79
static const char* const STATIC_ASSERT_MACRO_STRING = "StaticAssert";
80

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
static const char* const ANNOTATION_GENERATE_PRINT = "@generatePrint";
static const char* const ANNOTATION_NO_VERIFIER = "@noVerifier";
static const char* const ANNOTATION_ABSTRACT = "@abstract";
static const char* const ANNOTATION_HAS_SAME_INSTANCE_TYPE_AS_PARENT =
    "@hasSameInstanceTypeAsParent";
static const char* const ANNOTATION_GENERATE_CPP_CLASS = "@generateCppClass";
static const char* const ANNOTATION_HIGHEST_INSTANCE_TYPE_WITHIN_PARENT =
    "@highestInstanceTypeWithinParentClassRange";
static const char* const ANNOTATION_LOWEST_INSTANCE_TYPE_WITHIN_PARENT =
    "@lowestInstanceTypeWithinParentClassRange";
static const char* const ANNOTATION_RESERVE_BITS_IN_INSTANCE_TYPE =
    "@reserveBitsInInstanceType";
static const char* const ANNOTATION_INSTANCE_TYPE_VALUE =
    "@apiExposedInstanceTypeValue";
static const char* const ANNOTATION_IF = "@if";
static const char* const ANNOTATION_IFNOT = "@ifnot";
97 98 99
static const char* const ANNOTATION_GENERATE_BODY_DESCRIPTOR =
    "@generateBodyDescriptor";
static const char* const ANNOTATION_EXPORT_CPP_CLASS = "@export";
100
static const char* const ANNOTATION_DO_NOT_GENERATE_CAST = "@doNotGenerateCast";
101

102
inline bool IsConstexprName(const std::string& name) {
103 104
  return name.substr(0, std::strlen(CONSTEXPR_TYPE_PREFIX)) ==
         CONSTEXPR_TYPE_PREFIX;
105 106 107 108
}

inline std::string GetNonConstexprName(const std::string& name) {
  if (!IsConstexprName(name)) return name;
109
  return name.substr(std::strlen(CONSTEXPR_TYPE_PREFIX));
110 111 112 113 114 115 116
}

inline std::string GetConstexprName(const std::string& name) {
  if (IsConstexprName(name)) return name;
  return CONSTEXPR_TYPE_PREFIX + name;
}

117 118 119 120 121 122 123
enum class AbstractTypeFlag {
  kNone = 0,
  kTransient = 1 << 0,
  kConstexpr = 1 << 1
};
using AbstractTypeFlags = base::Flags<AbstractTypeFlag>;

124 125 126 127 128 129
enum class ClassFlag {
  kNone = 0,
  kExtern = 1 << 0,
  kGeneratePrint = 1 << 1,
  kGenerateVerify = 1 << 2,
  kTransient = 1 << 3,
130
  kAbstract = 1 << 4,
131
  kIsShape = 1 << 5,
132
  kHasSameInstanceTypeAsParent = 1 << 6,
133
  kGenerateCppClassDefinitions = 1 << 7,
134 135 136
  kHighestInstanceTypeWithinParent = 1 << 9,
  kLowestInstanceTypeWithinParent = 1 << 10,
  kUndefinedLayout = 1 << 11,
137 138
  kGenerateBodyDescriptor = 1 << 12,
  kExport = 1 << 13,
139
  kDoNotGenerateCast = 1 << 14
140 141 142
};
using ClassFlags = base::Flags<ClassFlag>;

143 144 145
enum class StructFlag { kNone = 0, kExport = 1 << 0 };
using StructFlags = base::Flags<StructFlag>;

146 147 148 149 150
}  // namespace torque
}  // namespace internal
}  // namespace v8

#endif  // V8_TORQUE_CONSTANTS_H_