@@ -975,20 +975,20 @@ struct InterpreterGcInfoEncoding {
975
975
static const uint32_t NUM_NORM_CODE_OFFSETS_PER_CHUNK = (64 );
976
976
977
977
static const uint32_t NUM_NORM_CODE_OFFSETS_PER_CHUNK_LOG2 = (6 );
978
- // FIXME: Interpreter has fixed-size stack slots so we could normalize them based on that.
978
+ // Interpreter- FIXME: Interpreter has fixed-size stack slots so we could normalize them based on that.
979
979
static inline constexpr int32_t NORMALIZE_STACK_SLOT (int32_t x ) { return (x ); }
980
980
static inline constexpr int32_t DENORMALIZE_STACK_SLOT (int32_t x ) { return (x ); }
981
- // FIXME: Interpreter has fixed-size opcodes so code length is a multiple of that.
981
+ // Interpreter- FIXME: Interpreter has fixed-size opcodes so code length is a multiple of that.
982
982
static inline constexpr uint32_t NORMALIZE_CODE_LENGTH (uint32_t x ) { return (x ); }
983
983
static inline constexpr uint32_t DENORMALIZE_CODE_LENGTH (uint32_t x ) { return (x ); }
984
984
985
985
static inline constexpr uint32_t NORMALIZE_STACK_BASE_REGISTER (uint32_t x ) { return (x ); }
986
986
static inline constexpr uint32_t DENORMALIZE_STACK_BASE_REGISTER (uint32_t x ) { return (x ); }
987
- // FIXME: Interpreter has fixed-size stack slots so we could normalize them based on that.
987
+ // Interpreter- FIXME: Interpreter has fixed-size stack slots so we could normalize them based on that.
988
988
static inline constexpr uint32_t NORMALIZE_SIZE_OF_STACK_AREA (uint32_t x ) { return (x ); }
989
989
static inline constexpr uint32_t DENORMALIZE_SIZE_OF_STACK_AREA (uint32_t x ) { return (x ); }
990
990
static const bool CODE_OFFSETS_NEED_NORMALIZATION = false;
991
- // FIXME: Interpreter has fixed-size opcodes so code length is a multiple of that.
991
+ // Interpreter- FIXME: Interpreter has fixed-size opcodes so code length is a multiple of that.
992
992
static inline constexpr uint32_t NORMALIZE_CODE_OFFSET (uint32_t x ) { return (x ); }
993
993
static inline constexpr uint32_t DENORMALIZE_CODE_OFFSET (uint32_t x ) { return (x ); }
994
994
@@ -1000,7 +1000,7 @@ struct InterpreterGcInfoEncoding {
1000
1000
static const int STACK_BASE_REGISTER_ENCBASE = 3 ;
1001
1001
static const int SIZE_OF_STACK_AREA_ENCBASE = 3 ;
1002
1002
static const int SIZE_OF_EDIT_AND_CONTINUE_PRESERVED_AREA_ENCBASE = 4 ;
1003
- // FIXME: This constant is only used on certain architectures.
1003
+ // Interpreter- FIXME: This constant is only used on certain architectures.
1004
1004
static const int SIZE_OF_EDIT_AND_CONTINUE_FIXED_STACK_FRAME_ENCBASE = 4 ;
1005
1005
static const int REVERSE_PINVOKE_FRAME_ENCBASE = 6 ;
1006
1006
static const int NUM_REGISTERS_ENCBASE = 2 ;
0 commit comments