OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 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 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1011 } | 1011 } |
1012 } | 1012 } |
1013 } | 1013 } |
1014 object_group_connections_.Clear(); | 1014 object_group_connections_.Clear(); |
1015 object_group_connections_.Initialize(kObjectGroupConnectionsCapacity); | 1015 object_group_connections_.Initialize(kObjectGroupConnectionsCapacity); |
1016 retainer_infos_.Clear(); | 1016 retainer_infos_.Clear(); |
1017 implicit_ref_connections_.Clear(); | 1017 implicit_ref_connections_.Clear(); |
1018 } | 1018 } |
1019 | 1019 |
1020 | 1020 |
| 1021 EternalHandles::EternalHandles() |
| 1022 : size_(0), blocks_(NULL) { |
| 1023 for (unsigned i = 0; i < ARRAY_SIZE(indexed_handles_); i++) { |
| 1024 indexed_handles_[i] = kInvalidIndex; |
| 1025 } |
| 1026 } |
| 1027 |
| 1028 |
| 1029 EternalHandles::~EternalHandles() { |
| 1030 for (BlockStore::iterator it = block_store_.begin(); |
| 1031 it != block_store_.end(); it++) { |
| 1032 delete[] *it; |
| 1033 } |
| 1034 } |
| 1035 |
| 1036 |
| 1037 void EternalHandles::IterateAllRoots(ObjectVisitor* visitor) { |
| 1038 int limit = size_; |
| 1039 for (BlockStore::iterator it = block_store_.begin(); |
| 1040 it != block_store_.end(); it++) { |
| 1041 visitor->VisitPointers(*it, *it + Min(limit, kSize)); |
| 1042 limit -= kSize; |
| 1043 } |
| 1044 } |
| 1045 |
| 1046 |
| 1047 int EternalHandles::Create(Isolate* isolate, Object* object) { |
| 1048 if (object == NULL) return kInvalidIndex; |
| 1049 int block = size_ >> kShift; |
| 1050 int offset = size_ & kMask; |
| 1051 // need to resize |
| 1052 if (offset == 0) { |
| 1053 Object** next_block = new Object*[kSize]; |
| 1054 Object* undefined = isolate->heap()->undefined_value(); |
| 1055 for (int i = 0; i < kSize; i++) { |
| 1056 next_block[i] = undefined; |
| 1057 } |
| 1058 block_store_.push_back(next_block); |
| 1059 blocks_ = &block_store_.front(); |
| 1060 } |
| 1061 ASSERT_EQ(isolate->heap()->undefined_value(), blocks_[block][offset]); |
| 1062 blocks_[block][offset] = object; |
| 1063 return size_++; |
| 1064 } |
| 1065 |
| 1066 |
1021 } } // namespace v8::internal | 1067 } } // namespace v8::internal |
OLD | NEW |