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 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
663 heap->CollectGarbage(OLD_SPACE); | 663 heap->CollectGarbage(OLD_SPACE); |
664 | 664 |
665 CHECK(WeakPointerCleared); | 665 CHECK(WeakPointerCleared); |
666 } | 666 } |
667 | 667 |
668 | 668 |
669 TEST(BytecodeArray) { | 669 TEST(BytecodeArray) { |
670 static const uint8_t kRawBytes[] = {0xc3, 0x7e, 0xa5, 0x5a}; | 670 static const uint8_t kRawBytes[] = {0xc3, 0x7e, 0xa5, 0x5a}; |
671 static const int kRawBytesSize = sizeof(kRawBytes); | 671 static const int kRawBytesSize = sizeof(kRawBytes); |
672 static const int kFrameSize = 32; | 672 static const int kFrameSize = 32; |
| 673 static const int kParameterCount = 2; |
673 | 674 |
674 CcTest::InitializeVM(); | 675 CcTest::InitializeVM(); |
675 Isolate* isolate = CcTest::i_isolate(); | 676 Isolate* isolate = CcTest::i_isolate(); |
676 Heap* heap = isolate->heap(); | 677 Heap* heap = isolate->heap(); |
677 Factory* factory = isolate->factory(); | 678 Factory* factory = isolate->factory(); |
678 HandleScope scope(isolate); | 679 HandleScope scope(isolate); |
679 | 680 |
680 // Allocate and initialize BytecodeArray | 681 // Allocate and initialize BytecodeArray |
681 Handle<BytecodeArray> array = | 682 Handle<BytecodeArray> array = factory->NewBytecodeArray( |
682 factory->NewBytecodeArray(kRawBytesSize, kRawBytes, kFrameSize); | 683 kRawBytesSize, kRawBytes, kFrameSize, kParameterCount); |
683 | 684 |
684 CHECK(array->IsBytecodeArray()); | 685 CHECK(array->IsBytecodeArray()); |
685 CHECK_EQ(array->length(), (int)sizeof(kRawBytes)); | 686 CHECK_EQ(array->length(), (int)sizeof(kRawBytes)); |
686 CHECK_EQ(array->frame_size(), kFrameSize); | 687 CHECK_EQ(array->frame_size(), kFrameSize); |
| 688 CHECK_EQ(array->parameter_count(), kParameterCount); |
687 CHECK_LE(array->address(), array->GetFirstBytecodeAddress()); | 689 CHECK_LE(array->address(), array->GetFirstBytecodeAddress()); |
688 CHECK_GE(array->address() + array->BytecodeArraySize(), | 690 CHECK_GE(array->address() + array->BytecodeArraySize(), |
689 array->GetFirstBytecodeAddress() + array->length()); | 691 array->GetFirstBytecodeAddress() + array->length()); |
690 for (int i = 0; i < kRawBytesSize; i++) { | 692 for (int i = 0; i < kRawBytesSize; i++) { |
691 CHECK_EQ(array->GetFirstBytecodeAddress()[i], kRawBytes[i]); | 693 CHECK_EQ(array->GetFirstBytecodeAddress()[i], kRawBytes[i]); |
692 CHECK_EQ(array->get(i), kRawBytes[i]); | 694 CHECK_EQ(array->get(i), kRawBytes[i]); |
693 } | 695 } |
694 | 696 |
695 // Full garbage collection | 697 // Full garbage collection |
696 heap->CollectAllGarbage(); | 698 heap->CollectAllGarbage(); |
(...skipping 5824 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6521 { | 6523 { |
6522 SharedFunctionInfo::Iterator iterator(isolate); | 6524 SharedFunctionInfo::Iterator iterator(isolate); |
6523 while (iterator.Next()) sfi_count--; | 6525 while (iterator.Next()) sfi_count--; |
6524 } | 6526 } |
6525 | 6527 |
6526 CHECK_EQ(0, sfi_count); | 6528 CHECK_EQ(0, sfi_count); |
6527 } | 6529 } |
6528 | 6530 |
6529 } // namespace internal | 6531 } // namespace internal |
6530 } // namespace v8 | 6532 } // namespace v8 |
OLD | NEW |