| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 class FreeStoreAllocationPolicy; | 162 class FreeStoreAllocationPolicy; |
| 163 template <typename T> class Handle; | 163 template <typename T> class Handle; |
| 164 class Heap; | 164 class Heap; |
| 165 class HeapObject; | 165 class HeapObject; |
| 166 class IC; | 166 class IC; |
| 167 class InterceptorInfo; | 167 class InterceptorInfo; |
| 168 class IterationStatement; | 168 class IterationStatement; |
| 169 class JSArray; | 169 class JSArray; |
| 170 class JSFunction; | 170 class JSFunction; |
| 171 class JSObject; | 171 class JSObject; |
| 172 class LabelCollector; | |
| 173 class LargeObjectSpace; | 172 class LargeObjectSpace; |
| 174 template <typename T, class P = FreeStoreAllocationPolicy> class List; | 173 template <typename T, class P = FreeStoreAllocationPolicy> class List; |
| 175 class LookupResult; | 174 class LookupResult; |
| 176 class MacroAssembler; | 175 class MacroAssembler; |
| 177 class Map; | 176 class Map; |
| 178 class MapSpace; | 177 class MapSpace; |
| 179 class MarkCompactCollector; | 178 class MarkCompactCollector; |
| 180 class NewSpace; | 179 class NewSpace; |
| 181 class Object; | 180 class Object; |
| 182 class OldSpace; | 181 class OldSpace; |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 | 496 |
| 498 Dest dest; | 497 Dest dest; |
| 499 memcpy(&dest, &source, sizeof(dest)); | 498 memcpy(&dest, &source, sizeof(dest)); |
| 500 return dest; | 499 return dest; |
| 501 } | 500 } |
| 502 | 501 |
| 503 | 502 |
| 504 } } // namespace v8::internal | 503 } } // namespace v8::internal |
| 505 | 504 |
| 506 #endif // V8_GLOBALS_H_ | 505 #endif // V8_GLOBALS_H_ |
| OLD | NEW |