OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_GLOBALS_H_ | 5 #ifndef V8_GLOBALS_H_ |
6 #define V8_GLOBALS_H_ | 6 #define V8_GLOBALS_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1202 // All objects are at least pointer aligned, so we can remove the trailing | 1202 // All objects are at least pointer aligned, so we can remove the trailing |
1203 // zeros. | 1203 // zeros. |
1204 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> | 1204 return static_cast<uint32_t>(bit_cast<uintptr_t>(address) >> |
1205 kPointerSizeLog2); | 1205 kPointerSizeLog2); |
1206 } | 1206 } |
1207 | 1207 |
1208 // Type feedback is encoded in such a way that, we can combine the feedback | 1208 // Type feedback is encoded in such a way that, we can combine the feedback |
1209 // at different points by performing an 'OR' operation. Type feedback moves | 1209 // at different points by performing an 'OR' operation. Type feedback moves |
1210 // to a more generic type when we combine feedback. | 1210 // to a more generic type when we combine feedback. |
1211 // kSignedSmall -> kNumber -> kAny | 1211 // kSignedSmall -> kNumber -> kAny |
1212 // kString -> kAny | |
1213 class BinaryOperationFeedback { | 1212 class BinaryOperationFeedback { |
1214 public: | 1213 public: |
1215 enum { | 1214 enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; |
1216 kNone = 0x0, | |
1217 kSignedSmall = 0x1, | |
1218 kNumber = 0x3, | |
1219 kString = 0x4, | |
1220 kAny = 0xF | |
1221 }; | |
1222 }; | 1215 }; |
1223 | 1216 |
1224 // TODO(epertoso): consider unifying this with BinaryOperationFeedback. | 1217 // TODO(epertoso): consider unifying this with BinaryOperationFeedback. |
1225 class CompareOperationFeedback { | 1218 class CompareOperationFeedback { |
1226 public: | 1219 public: |
1227 enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; | 1220 enum { kNone = 0x00, kSignedSmall = 0x01, kNumber = 0x3, kAny = 0x7 }; |
1228 }; | 1221 }; |
1229 | 1222 |
1230 // Describes how exactly a frame has been dropped from stack. | 1223 // Describes how exactly a frame has been dropped from stack. |
1231 enum LiveEditFrameDropMode { | 1224 enum LiveEditFrameDropMode { |
1232 // No frame has been dropped. | 1225 // No frame has been dropped. |
1233 LIVE_EDIT_FRAMES_UNTOUCHED, | 1226 LIVE_EDIT_FRAMES_UNTOUCHED, |
1234 // The top JS frame had been calling debug break slot stub. Patch the | 1227 // The top JS frame had been calling debug break slot stub. Patch the |
1235 // address this stub jumps to in the end. | 1228 // address this stub jumps to in the end. |
1236 LIVE_EDIT_FRAME_DROPPED_IN_DEBUG_SLOT_CALL, | 1229 LIVE_EDIT_FRAME_DROPPED_IN_DEBUG_SLOT_CALL, |
1237 // The top JS frame had been calling some C++ function. The return address | 1230 // The top JS frame had been calling some C++ function. The return address |
1238 // gets patched automatically. | 1231 // gets patched automatically. |
1239 LIVE_EDIT_FRAME_DROPPED_IN_DIRECT_CALL, | 1232 LIVE_EDIT_FRAME_DROPPED_IN_DIRECT_CALL, |
1240 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, | 1233 LIVE_EDIT_FRAME_DROPPED_IN_RETURN_CALL, |
1241 LIVE_EDIT_CURRENTLY_SET_MODE | 1234 LIVE_EDIT_CURRENTLY_SET_MODE |
1242 }; | 1235 }; |
1243 | 1236 |
1244 } // namespace internal | 1237 } // namespace internal |
1245 } // namespace v8 | 1238 } // namespace v8 |
1246 | 1239 |
1247 namespace i = v8::internal; | 1240 namespace i = v8::internal; |
1248 | 1241 |
1249 #endif // V8_GLOBALS_H_ | 1242 #endif // V8_GLOBALS_H_ |
OLD | NEW |