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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 VerifyPointer(byte_length()); | 760 VerifyPointer(byte_length()); |
761 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() | 761 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() |
762 || byte_length()->IsUndefined()); | 762 || byte_length()->IsUndefined()); |
763 } | 763 } |
764 | 764 |
765 | 765 |
766 void JSArrayBufferView::JSArrayBufferViewVerify() { | 766 void JSArrayBufferView::JSArrayBufferViewVerify() { |
767 CHECK(IsJSArrayBufferView()); | 767 CHECK(IsJSArrayBufferView()); |
768 JSObjectVerify(); | 768 JSObjectVerify(); |
769 VerifyPointer(buffer()); | 769 VerifyPointer(buffer()); |
770 CHECK(buffer()->IsJSArrayBuffer() || buffer()->IsUndefined()); | 770 CHECK(buffer()->IsJSArrayBuffer() || buffer()->IsUndefined() |
| 771 || buffer() == Smi::FromInt(0)); |
771 | 772 |
772 VerifyPointer(byte_offset()); | 773 VerifyPointer(byte_offset()); |
773 CHECK(byte_offset()->IsSmi() || byte_offset()->IsHeapNumber() | 774 CHECK(byte_offset()->IsSmi() || byte_offset()->IsHeapNumber() |
774 || byte_offset()->IsUndefined()); | 775 || byte_offset()->IsUndefined()); |
775 | 776 |
776 VerifyPointer(byte_length()); | 777 VerifyPointer(byte_length()); |
777 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() | 778 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() |
778 || byte_length()->IsUndefined()); | 779 || byte_length()->IsUndefined()); |
779 } | 780 } |
780 | 781 |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1150 for (int i = 0; i < number_of_transitions(); ++i) { | 1151 for (int i = 0; i < number_of_transitions(); ++i) { |
1151 if (!CheckOneBackPointer(current_map, GetTarget(i))) return false; | 1152 if (!CheckOneBackPointer(current_map, GetTarget(i))) return false; |
1152 } | 1153 } |
1153 return true; | 1154 return true; |
1154 } | 1155 } |
1155 | 1156 |
1156 | 1157 |
1157 #endif // DEBUG | 1158 #endif // DEBUG |
1158 | 1159 |
1159 } } // namespace v8::internal | 1160 } } // namespace v8::internal |
OLD | NEW |