1 // Copyright 2021 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef V8_OBJECTS_TURBOFAN_TYPES_H_ 6 #define V8_OBJECTS_TURBOFAN_TYPES_H_ 7 8 #include "src/common/globals.h" 9 #include "src/objects/heap-object.h" 10 #include "torque-generated/bit-fields.h" 11 12 // Has to be the last include (doesn't have include guards): 13 #include "src/objects/object-macros.h" 14 15 namespace v8 { 16 namespace internal { 17 18 #include "torque-generated/src/objects/turbofan-types-tq.inc" 19 20 class TurbofanTypeLowBits { 21 public: 22 DEFINE_TORQUE_GENERATED_TURBOFAN_TYPE_LOW_BITS() 23 }; 24 25 class TurbofanTypeHighBits { 26 public: 27 DEFINE_TORQUE_GENERATED_TURBOFAN_TYPE_HIGH_BITS() 28 }; 29 30 } // namespace internal 31 } // namespace v8 32 33 #include "src/objects/object-macros-undef.h" 34 35 #endif // V8_OBJECTS_TURBOFAN_TYPES_H_ 36