| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 class JSObject; | 171 class JSObject; |
| 172 class LabelCollector; | 172 class LabelCollector; |
| 173 class LargeObjectSpace; | 173 class LargeObjectSpace; |
| 174 template <typename T, class P = FreeStoreAllocationPolicy> class List; | 174 template <typename T, class P = FreeStoreAllocationPolicy> class List; |
| 175 class LookupResult; | 175 class LookupResult; |
| 176 class MacroAssembler; | 176 class MacroAssembler; |
| 177 class Map; | 177 class Map; |
| 178 class MapSpace; | 178 class MapSpace; |
| 179 class MarkCompactCollector; | 179 class MarkCompactCollector; |
| 180 class NewSpace; | 180 class NewSpace; |
| 181 class NodeVisitor; |
| 181 class Object; | 182 class Object; |
| 182 class OldSpace; | 183 class OldSpace; |
| 183 class Property; | 184 class Property; |
| 184 class Proxy; | 185 class Proxy; |
| 186 class RegExpNode; |
| 187 struct RegExpParseResult; |
| 188 class RegExpTree; |
| 189 class RegExpCompiler; |
| 190 class RegExpVisitor; |
| 185 class Scope; | 191 class Scope; |
| 186 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; | 192 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; |
| 187 class Script; | 193 class Script; |
| 188 class Slot; | 194 class Slot; |
| 189 class Smi; | 195 class Smi; |
| 190 class Statement; | 196 class Statement; |
| 191 class String; | 197 class String; |
| 192 class Struct; | 198 class Struct; |
| 193 class SwitchStatement; | 199 class SwitchStatement; |
| 194 class Visitor; | 200 class Visitor; |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 | 505 |
| 500 Dest dest; | 506 Dest dest; |
| 501 memcpy(&dest, &source, sizeof(dest)); | 507 memcpy(&dest, &source, sizeof(dest)); |
| 502 return dest; | 508 return dest; |
| 503 } | 509 } |
| 504 | 510 |
| 505 | 511 |
| 506 } } // namespace v8::internal | 512 } } // namespace v8::internal |
| 507 | 513 |
| 508 #endif // V8_GLOBALS_H_ | 514 #endif // V8_GLOBALS_H_ |
| OLD | NEW |