@@ -5060,11 +5060,6 @@ class Code: public HeapObject {
50605060 inline bool has_debug_break_slots ();
50615061 inline void set_has_debug_break_slots (bool value);
50625062
5063- // [compiled_with_optimizing]: For FUNCTION kind, tells if it has
5064- // been compiled with IsOptimizing set to true.
5065- inline bool is_compiled_optimizable ();
5066- inline void set_compiled_optimizable (bool value);
5067-
50685063 // [has_reloc_info_for_serialization]: For FUNCTION kind, tells if its
50695064 // reloc info includes runtime and external references to support
50705065 // serialization/deserialization.
@@ -5359,9 +5354,9 @@ class Code: public HeapObject {
53595354 class FullCodeFlagsHasDeoptimizationSupportField :
53605355 public BitField<bool , 0 , 1 > {}; // NOLINT
53615356 class FullCodeFlagsHasDebugBreakSlotsField : public BitField <bool , 1 , 1 > {};
5362- class FullCodeFlagsIsCompiledOptimizable : public BitField <bool , 2 , 1 > {};
53635357 class FullCodeFlagsHasRelocInfoForSerialization
5364- : public BitField<bool , 3 , 1 > {};
5358+ : public BitField<bool , 2 , 1 > {};
5359+ // Bit 3 in this bitfield is unused.
53655360 class ProfilerTicksField : public BitField <int , 4 , 28 > {};
53665361
53675362 // Flags layout. BitField<type, shift, size>.
0 commit comments