OLD | NEW |
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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 class FunctionTemplateInfo; | 200 class FunctionTemplateInfo; |
201 class NumberDictionary; | 201 class NumberDictionary; |
202 class StringDictionary; | 202 class StringDictionary; |
203 class FreeStoreAllocationPolicy; | 203 class FreeStoreAllocationPolicy; |
204 template <typename T> class Handle; | 204 template <typename T> class Handle; |
205 class Heap; | 205 class Heap; |
206 class HeapObject; | 206 class HeapObject; |
207 class IC; | 207 class IC; |
208 class InterceptorInfo; | 208 class InterceptorInfo; |
209 class IterationStatement; | 209 class IterationStatement; |
| 210 class Array; |
210 class JSArray; | 211 class JSArray; |
211 class JSFunction; | 212 class JSFunction; |
212 class JSObject; | 213 class JSObject; |
213 class LargeObjectSpace; | 214 class LargeObjectSpace; |
214 template <typename T, class P = FreeStoreAllocationPolicy> class List; | 215 template <typename T, class P = FreeStoreAllocationPolicy> class List; |
215 class LookupResult; | 216 class LookupResult; |
216 class MacroAssembler; | 217 class MacroAssembler; |
217 class Map; | 218 class Map; |
218 class MapSpace; | 219 class MapSpace; |
219 class MarkCompactCollector; | 220 class MarkCompactCollector; |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 | 561 |
561 Dest dest; | 562 Dest dest; |
562 memcpy(&dest, &source, sizeof(dest)); | 563 memcpy(&dest, &source, sizeof(dest)); |
563 return dest; | 564 return dest; |
564 } | 565 } |
565 | 566 |
566 | 567 |
567 } } // namespace v8::internal | 568 } } // namespace v8::internal |
568 | 569 |
569 #endif // V8_GLOBALS_H_ | 570 #endif // V8_GLOBALS_H_ |
OLD | NEW |