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