| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 enum Type { | 93 enum Type { |
| 94 kHidden = v8::HeapGraphNode::kHidden, | 94 kHidden = v8::HeapGraphNode::kHidden, |
| 95 kArray = v8::HeapGraphNode::kArray, | 95 kArray = v8::HeapGraphNode::kArray, |
| 96 kString = v8::HeapGraphNode::kString, | 96 kString = v8::HeapGraphNode::kString, |
| 97 kObject = v8::HeapGraphNode::kObject, | 97 kObject = v8::HeapGraphNode::kObject, |
| 98 kCode = v8::HeapGraphNode::kCode, | 98 kCode = v8::HeapGraphNode::kCode, |
| 99 kClosure = v8::HeapGraphNode::kClosure, | 99 kClosure = v8::HeapGraphNode::kClosure, |
| 100 kRegExp = v8::HeapGraphNode::kRegExp, | 100 kRegExp = v8::HeapGraphNode::kRegExp, |
| 101 kHeapNumber = v8::HeapGraphNode::kHeapNumber, | 101 kHeapNumber = v8::HeapGraphNode::kHeapNumber, |
| 102 kNative = v8::HeapGraphNode::kNative, | 102 kNative = v8::HeapGraphNode::kNative, |
| 103 kSynthetic = v8::HeapGraphNode::kSynthetic | 103 kSynthetic = v8::HeapGraphNode::kSynthetic, |
| 104 kConsString = v8::HeapGraphNode::kConsString, |
| 105 kSlicedString = v8::HeapGraphNode::kSlicedString |
| 104 }; | 106 }; |
| 105 static const int kNoEntry; | 107 static const int kNoEntry; |
| 106 | 108 |
| 107 HeapEntry() { } | 109 HeapEntry() { } |
| 108 HeapEntry(HeapSnapshot* snapshot, | 110 HeapEntry(HeapSnapshot* snapshot, |
| 109 Type type, | 111 Type type, |
| 110 const char* name, | 112 const char* name, |
| 111 SnapshotObjectId id, | 113 SnapshotObjectId id, |
| 112 int self_size); | 114 int self_size); |
| 113 | 115 |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 friend class HeapSnapshotJSONSerializerIterator; | 671 friend class HeapSnapshotJSONSerializerIterator; |
| 670 | 672 |
| 671 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); | 673 DISALLOW_COPY_AND_ASSIGN(HeapSnapshotJSONSerializer); |
| 672 }; | 674 }; |
| 673 | 675 |
| 674 | 676 |
| 675 } } // namespace v8::internal | 677 } } // namespace v8::internal |
| 676 | 678 |
| 677 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ | 679 #endif // V8_HEAP_SNAPSHOT_GENERATOR_H_ |
| 678 | 680 |
| OLD | NEW |