| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 6535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6546 Handle<Object> TypeFeedbackInfo::PremonomorphicSentinel(Isolate* isolate) { | 6546 Handle<Object> TypeFeedbackInfo::PremonomorphicSentinel(Isolate* isolate) { |
| 6547 return isolate->factory()->null_value(); | 6547 return isolate->factory()->null_value(); |
| 6548 } | 6548 } |
| 6549 | 6549 |
| 6550 | 6550 |
| 6551 Handle<Object> TypeFeedbackInfo::MegamorphicSentinel(Isolate* isolate) { | 6551 Handle<Object> TypeFeedbackInfo::MegamorphicSentinel(Isolate* isolate) { |
| 6552 return isolate->factory()->undefined_value(); | 6552 return isolate->factory()->undefined_value(); |
| 6553 } | 6553 } |
| 6554 | 6554 |
| 6555 | 6555 |
| 6556 Handle<Object> TypeFeedbackInfo::MonomorphicArraySentinel(Isolate* isolate, | 6556 Object* TypeFeedbackInfo::RawPremonomorphicSentinel(Heap* heap) { |
| 6557 ElementsKind elements_kind) { | 6557 return heap->null_value(); |
| 6558 return Handle<Object>(Smi::FromInt(static_cast<int>(elements_kind)), isolate); | |
| 6559 } | |
| 6560 | |
| 6561 | |
| 6562 Object* TypeFeedbackInfo::RawUninitializedSentinel(Heap* heap) { | |
| 6563 return heap->the_hole_value(); | |
| 6564 } | 6558 } |
| 6565 | 6559 |
| 6566 | 6560 |
| 6567 int TypeFeedbackInfo::ic_total_count() { | 6561 int TypeFeedbackInfo::ic_total_count() { |
| 6568 int current = Smi::cast(READ_FIELD(this, kStorage1Offset))->value(); | 6562 int current = Smi::cast(READ_FIELD(this, kStorage1Offset))->value(); |
| 6569 return ICTotalCountField::decode(current); | 6563 return ICTotalCountField::decode(current); |
| 6570 } | 6564 } |
| 6571 | 6565 |
| 6572 | 6566 |
| 6573 void TypeFeedbackInfo::set_ic_total_count(int count) { | 6567 void TypeFeedbackInfo::set_ic_total_count(int count) { |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6750 #undef READ_UINT32_FIELD | 6744 #undef READ_UINT32_FIELD |
| 6751 #undef WRITE_UINT32_FIELD | 6745 #undef WRITE_UINT32_FIELD |
| 6752 #undef READ_SHORT_FIELD | 6746 #undef READ_SHORT_FIELD |
| 6753 #undef WRITE_SHORT_FIELD | 6747 #undef WRITE_SHORT_FIELD |
| 6754 #undef READ_BYTE_FIELD | 6748 #undef READ_BYTE_FIELD |
| 6755 #undef WRITE_BYTE_FIELD | 6749 #undef WRITE_BYTE_FIELD |
| 6756 | 6750 |
| 6757 } } // namespace v8::internal | 6751 } } // namespace v8::internal |
| 6758 | 6752 |
| 6759 #endif // V8_OBJECTS_INL_H_ | 6753 #endif // V8_OBJECTS_INL_H_ |
| OLD | NEW |