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 2448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2459 CcTest::heap()->CollectAllGarbage(); | 2459 CcTest::heap()->CollectAllGarbage(); |
2460 const int transitions = 10 - 3; | 2460 const int transitions = 10 - 3; |
2461 CHECK_EQ(initialTransitions + transitions, | 2461 CHECK_EQ(initialTransitions + transitions, |
2462 NumberOfProtoTransitions(baseObject->map())); | 2462 NumberOfProtoTransitions(baseObject->map())); |
2463 | 2463 |
2464 // Verify that prototype transitions array was compacted. | 2464 // Verify that prototype transitions array was compacted. |
2465 FixedArray* trans = | 2465 FixedArray* trans = |
2466 TransitionArray::GetPrototypeTransitions(baseObject->map()); | 2466 TransitionArray::GetPrototypeTransitions(baseObject->map()); |
2467 for (int i = initialTransitions; i < initialTransitions + transitions; i++) { | 2467 for (int i = initialTransitions; i < initialTransitions + transitions; i++) { |
2468 int j = TransitionArray::kProtoTransitionHeaderSize + i; | 2468 int j = TransitionArray::kProtoTransitionHeaderSize + i; |
2469 CHECK(trans->get(j)->IsWeakCell()); | 2469 CHECK(trans->get(j)->IsMap()); |
2470 CHECK(WeakCell::cast(trans->get(j))->value()->IsMap()); | |
2471 } | 2470 } |
2472 | 2471 |
2473 // Make sure next prototype is placed on an old-space evacuation candidate. | 2472 // Make sure next prototype is placed on an old-space evacuation candidate. |
2474 Handle<JSObject> prototype; | 2473 Handle<JSObject> prototype; |
2475 PagedSpace* space = CcTest::heap()->old_space(); | 2474 PagedSpace* space = CcTest::heap()->old_space(); |
2476 { | 2475 { |
2477 AlwaysAllocateScope always_allocate(isolate); | 2476 AlwaysAllocateScope always_allocate(isolate); |
2478 SimulateFullSpace(space); | 2477 SimulateFullSpace(space); |
2479 prototype = | 2478 prototype = |
2480 factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, WEAK, TENURED); | 2479 factory->NewJSArray(32 * KB, FAST_HOLEY_ELEMENTS, WEAK, TENURED); |
(...skipping 3418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5899 size_t counter2 = 2000; | 5898 size_t counter2 = 2000; |
5900 tracer->SampleAllocation(time2, counter2, counter2); | 5899 tracer->SampleAllocation(time2, counter2, counter2); |
5901 size_t throughput = tracer->AllocationThroughputInBytesPerMillisecond(100); | 5900 size_t throughput = tracer->AllocationThroughputInBytesPerMillisecond(100); |
5902 CHECK_EQ(2 * (counter2 - counter1) / (time2 - time1), throughput); | 5901 CHECK_EQ(2 * (counter2 - counter1) / (time2 - time1), throughput); |
5903 int time3 = 1000; | 5902 int time3 = 1000; |
5904 size_t counter3 = 30000; | 5903 size_t counter3 = 30000; |
5905 tracer->SampleAllocation(time3, counter3, counter3); | 5904 tracer->SampleAllocation(time3, counter3, counter3); |
5906 throughput = tracer->AllocationThroughputInBytesPerMillisecond(100); | 5905 throughput = tracer->AllocationThroughputInBytesPerMillisecond(100); |
5907 CHECK_EQ(2 * (counter3 - counter1) / (time3 - time1), throughput); | 5906 CHECK_EQ(2 * (counter3 - counter1) / (time3 - time1), throughput); |
5908 } | 5907 } |
OLD | NEW |