| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 NodeVisitor; |
| 182 class Object; | 182 class Object; |
| 183 class OldSpace; | 183 class OldSpace; |
| 184 class Property; | 184 class Property; |
| 185 class Proxy; | 185 class Proxy; |
| 186 class RegExpNode; | 186 class RegExpNode; |
| 187 class RegExpParseResult; | 187 struct RegExpParseResult; |
| 188 class RegExpTree; | 188 class RegExpTree; |
| 189 class RegExpCompiler; | 189 class RegExpCompiler; |
| 190 class RegExpVisitor; | 190 class RegExpVisitor; |
| 191 class Scope; | 191 class Scope; |
| 192 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; | 192 template<class Allocator = FreeStoreAllocationPolicy> class ScopeInfo; |
| 193 class Script; | 193 class Script; |
| 194 class Slot; | 194 class Slot; |
| 195 class Smi; | 195 class Smi; |
| 196 class Statement; | 196 class Statement; |
| 197 class String; | 197 class String; |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 503 | 503 |
| 504 Dest dest; | 504 Dest dest; |
| 505 memcpy(&dest, &source, sizeof(dest)); | 505 memcpy(&dest, &source, sizeof(dest)); |
| 506 return dest; | 506 return dest; |
| 507 } | 507 } |
| 508 | 508 |
| 509 | 509 |
| 510 } } // namespace v8::internal | 510 } } // namespace v8::internal |
| 511 | 511 |
| 512 #endif // V8_GLOBALS_H_ | 512 #endif // V8_GLOBALS_H_ |
| OLD | NEW |