| 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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 0x09101: (161, "ExecutableAccessorInfoMap"), | 224 0x09101: (161, "ExecutableAccessorInfoMap"), |
| 225 0x09159: (162, "AccessorPairMap"), | 225 0x09159: (162, "AccessorPairMap"), |
| 226 0x09209: (185, "PrototypeInfoMap"), | 226 0x09209: (185, "PrototypeInfoMap"), |
| 227 0x09839: (137, "BytecodeArrayMap"), | 227 0x09839: (137, "BytecodeArrayMap"), |
| 228 0x09865: (177, "BoxMap"), | 228 0x09865: (177, "BoxMap"), |
| 229 0x09891: (163, "AccessCheckInfoMap"), | 229 0x09891: (163, "AccessCheckInfoMap"), |
| 230 0x098bd: (164, "InterceptorInfoMap"), | 230 0x098bd: (164, "InterceptorInfoMap"), |
| 231 0x098e9: (165, "CallHandlerInfoMap"), | 231 0x098e9: (165, "CallHandlerInfoMap"), |
| 232 0x09915: (166, "FunctionTemplateInfoMap"), | 232 0x09915: (166, "FunctionTemplateInfoMap"), |
| 233 0x09941: (167, "ObjectTemplateInfoMap"), | 233 0x09941: (167, "ObjectTemplateInfoMap"), |
| 234 0x0996d: (169, "TypeSwitchInfoMap"), | |
| 235 0x09999: (173, "CodeCacheMap"), | 234 0x09999: (173, "CodeCacheMap"), |
| 236 0x099c5: (175, "TypeFeedbackInfoMap"), | 235 0x099c5: (175, "TypeFeedbackInfoMap"), |
| 237 0x099f1: (176, "AliasedArgumentsEntryMap"), | 236 0x099f1: (176, "AliasedArgumentsEntryMap"), |
| 238 0x09a1d: (178, "DebugInfoMap"), | 237 0x09a1d: (178, "DebugInfoMap"), |
| 239 0x09a49: (179, "BreakPointInfoMap"), | 238 0x09a49: (179, "BreakPointInfoMap"), |
| 240 } | 239 } |
| 241 | 240 |
| 242 # List of known V8 objects. | 241 # List of known V8 objects. |
| 243 KNOWN_OBJECTS = { | 242 KNOWN_OBJECTS = { |
| 244 ("OLD_SPACE", 0x08081): "NullValue", | 243 ("OLD_SPACE", 0x08081): "NullValue", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 ("OLD_SPACE", 0x24fc5): "AllocationSitesScratchpad", | 299 ("OLD_SPACE", 0x24fc5): "AllocationSitesScratchpad", |
| 301 ("OLD_SPACE", 0x253cd): "WeakObjectToCodeTable", | 300 ("OLD_SPACE", 0x253cd): "WeakObjectToCodeTable", |
| 302 ("OLD_SPACE", 0x25461): "EmptyPropertyCell", | 301 ("OLD_SPACE", 0x25461): "EmptyPropertyCell", |
| 303 ("OLD_SPACE", 0x25471): "CodeStubContext", | 302 ("OLD_SPACE", 0x25471): "CodeStubContext", |
| 304 ("OLD_SPACE", 0x2ba11): "CodeStubExportsObject", | 303 ("OLD_SPACE", 0x2ba11): "CodeStubExportsObject", |
| 305 ("OLD_SPACE", 0x2be89): "EmptyBytecodeArray", | 304 ("OLD_SPACE", 0x2be89): "EmptyBytecodeArray", |
| 306 ("OLD_SPACE", 0x594dd): "StringTable", | 305 ("OLD_SPACE", 0x594dd): "StringTable", |
| 307 ("CODE_SPACE", 0x16341): "JsEntryCode", | 306 ("CODE_SPACE", 0x16341): "JsEntryCode", |
| 308 ("CODE_SPACE", 0x26a61): "JsConstructEntryCode", | 307 ("CODE_SPACE", 0x26a61): "JsConstructEntryCode", |
| 309 } | 308 } |
| OLD | NEW |