Chromium Code Reviews| Index: src/objects.h |
| diff --git a/src/objects.h b/src/objects.h |
| index db92ecba8046504857e6eb8e27d99063bd24e38a..146ec8fdbc29407ce345777e22b73413961dc569 100644 |
| --- a/src/objects.h |
| +++ b/src/objects.h |
| @@ -5159,11 +5159,6 @@ class Code: public HeapObject { |
| bool is_crankshafted(); |
| inline void set_is_crankshafted(bool value); |
| - // For stubs, tells whether they should always exist, so that they can be |
| - // called from other stubs. |
| - inline bool is_pregenerated(); |
| - inline void set_is_pregenerated(bool value); |
| - |
| // [optimizable]: For FUNCTION kind, tells if it is optimizable. |
| inline bool optimizable(); |
| inline void set_optimizable(bool value); |
| @@ -5451,7 +5446,6 @@ class Code: public HeapObject { |
| class TypeField: public BitField<StubType, 3, 1> {}; |
| class CacheHolderField: public BitField<InlineCacheHolderFlag, 5, 1> {}; |
| class KindField: public BitField<Kind, 6, 4> {}; |
| - class IsPregeneratedField: public BitField<bool, 10, 1> {}; |
| class ExtraICStateField: public BitField<ExtraICState, 11, 6> {}; |
|
Michael Starzinger
2013/12/02 09:21:30
Can we reorder the following fields to start at bi
Benedikt Meurer
2013/12/02 09:47:51
That'll break some assertions. I'll add a comment
|
| class ExtendedExtraICStateField: public BitField<ExtraICState, 11, |
| PlatformSmiTagging::kSmiValueSize - 11 + 1> {}; // NOLINT |