Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: src/objects.h

Issue 2811057: Update inheritance hierarchy in Objects.h to better reflect the actual hierar... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-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 21 matching lines...) Expand all
32 #include "code-stubs.h" 32 #include "code-stubs.h"
33 #include "smart-pointer.h" 33 #include "smart-pointer.h"
34 #include "unicode-inl.h" 34 #include "unicode-inl.h"
35 #if V8_TARGET_ARCH_ARM 35 #if V8_TARGET_ARCH_ARM
36 #include "arm/constants-arm.h" 36 #include "arm/constants-arm.h"
37 #elif V8_TARGET_ARCH_MIPS 37 #elif V8_TARGET_ARCH_MIPS
38 #include "mips/constants-mips.h" 38 #include "mips/constants-mips.h"
39 #endif 39 #endif
40 40
41 // 41 //
42 // All object types in the V8 JavaScript are described in this file. 42 // Most object types in the V8 JavaScript are described in this file.
43 // 43 //
44 // Inheritance hierarchy: 44 // Inheritance hierarchy:
45 // - Object 45 // - Object
46 // - Smi (immediate small integer) 46 // - Smi (immediate small integer)
47 // - Failure (immediate for marking failed operation) 47 // - Failure (immediate for marking failed operation)
48 // - HeapObject (superclass for everything allocated in the heap) 48 // - HeapObject (superclass for everything allocated in the heap)
49 // - JSObject 49 // - JSObject
50 // - JSArray 50 // - JSArray
51 // - JSRegExp 51 // - JSRegExp
52 // - JSFunction 52 // - JSFunction
(...skipping 14 matching lines...) Expand all
67 // - ExternalFloatArray 67 // - ExternalFloatArray
68 // - FixedArray 68 // - FixedArray
69 // - DescriptorArray 69 // - DescriptorArray
70 // - HashTable 70 // - HashTable
71 // - Dictionary 71 // - Dictionary
72 // - SymbolTable 72 // - SymbolTable
73 // - CompilationCacheTable 73 // - CompilationCacheTable
74 // - CodeCacheHashTable 74 // - CodeCacheHashTable
75 // - MapCache 75 // - MapCache
76 // - Context 76 // - Context
77 // - GlobalContext
78 // - JSFunctionResultCache 77 // - JSFunctionResultCache
78 // - SerializedScopeInfo
79 // - String 79 // - String
80 // - SeqString 80 // - SeqString
81 // - SeqAsciiString 81 // - SeqAsciiString
82 // - SeqTwoByteString 82 // - SeqTwoByteString
83 // - ConsString 83 // - ConsString
84 // - ExternalString 84 // - ExternalString
85 // - ExternalAsciiString 85 // - ExternalAsciiString
86 // - ExternalTwoByteString 86 // - ExternalTwoByteString
87 // - HeapNumber 87 // - HeapNumber
88 // - Code 88 // - Code
(...skipping 5275 matching lines...) Expand 10 before | Expand all | Expand 10 after
5364 } else { 5364 } else {
5365 value &= ~(1 << bit_position); 5365 value &= ~(1 << bit_position);
5366 } 5366 }
5367 return value; 5367 return value;
5368 } 5368 }
5369 }; 5369 };
5370 5370
5371 } } // namespace v8::internal 5371 } } // namespace v8::internal
5372 5372
5373 #endif // V8_OBJECTS_H_ 5373 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698