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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
759 VerifyPointer(byte_length()); | 759 VerifyPointer(byte_length()); |
760 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() | 760 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() |
761 || byte_length()->IsUndefined()); | 761 || byte_length()->IsUndefined()); |
762 } | 762 } |
763 | 763 |
764 | 764 |
765 void JSArrayBufferView::JSArrayBufferViewVerify() { | 765 void JSArrayBufferView::JSArrayBufferViewVerify() { |
766 CHECK(IsJSArrayBufferView()); | 766 CHECK(IsJSArrayBufferView()); |
767 JSObjectVerify(); | 767 JSObjectVerify(); |
768 VerifyPointer(buffer()); | 768 VerifyPointer(buffer()); |
769 CHECK(buffer()->IsJSArrayBuffer() || buffer()->IsUndefined()); | 769 CHECK(buffer()->IsJSArrayBuffer() || buffer()->IsUndefined() |
| 770 || buffer() == Smi::FromInt(0)); |
770 | 771 |
771 VerifyPointer(byte_offset()); | 772 VerifyPointer(byte_offset()); |
772 CHECK(byte_offset()->IsSmi() || byte_offset()->IsHeapNumber() | 773 CHECK(byte_offset()->IsSmi() || byte_offset()->IsHeapNumber() |
773 || byte_offset()->IsUndefined()); | 774 || byte_offset()->IsUndefined()); |
774 | 775 |
775 VerifyPointer(byte_length()); | 776 VerifyPointer(byte_length()); |
776 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() | 777 CHECK(byte_length()->IsSmi() || byte_length()->IsHeapNumber() |
777 || byte_length()->IsUndefined()); | 778 || byte_length()->IsUndefined()); |
778 } | 779 } |
779 | 780 |
(...skipping 370 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 |