| 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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 class Debugger; | 191 class Debugger; |
| 192 class DebugInfo; | 192 class DebugInfo; |
| 193 class Descriptor; | 193 class Descriptor; |
| 194 class DescriptorArray; | 194 class DescriptorArray; |
| 195 class Expression; | 195 class Expression; |
| 196 class ExternalReference; | 196 class ExternalReference; |
| 197 class FixedArray; | 197 class FixedArray; |
| 198 class FunctionEntry; | 198 class FunctionEntry; |
| 199 class FunctionLiteral; | 199 class FunctionLiteral; |
| 200 class FunctionTemplateInfo; | 200 class FunctionTemplateInfo; |
| 201 class Dictionary; | 201 class NumberDictionary; |
| 202 class StringDictionary; |
| 202 class FreeStoreAllocationPolicy; | 203 class FreeStoreAllocationPolicy; |
| 203 template <typename T> class Handle; | 204 template <typename T> class Handle; |
| 204 class Heap; | 205 class Heap; |
| 205 class HeapObject; | 206 class HeapObject; |
| 206 class IC; | 207 class IC; |
| 207 class InterceptorInfo; | 208 class InterceptorInfo; |
| 208 class IterationStatement; | 209 class IterationStatement; |
| 209 class JSArray; | 210 class JSArray; |
| 210 class JSFunction; | 211 class JSFunction; |
| 211 class JSObject; | 212 class JSObject; |
| (...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 557 | 558 |
| 558 Dest dest; | 559 Dest dest; |
| 559 memcpy(&dest, &source, sizeof(dest)); | 560 memcpy(&dest, &source, sizeof(dest)); |
| 560 return dest; | 561 return dest; |
| 561 } | 562 } |
| 562 | 563 |
| 563 | 564 |
| 564 } } // namespace v8::internal | 565 } } // namespace v8::internal |
| 565 | 566 |
| 566 #endif // V8_GLOBALS_H_ | 567 #endif // V8_GLOBALS_H_ |
| OLD | NEW |