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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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; |
198 class Struct; | 198 class Struct; |
199 class SwitchStatement; | 199 class SwitchStatement; |
200 class Visitor; | 200 class AstVisitor; |
201 class Variable; | 201 class Variable; |
202 class VariableProxy; | 202 class VariableProxy; |
203 class RelocInfo; | 203 class RelocInfo; |
204 class Deserializer; | 204 class Deserializer; |
205 class MessageLocation; | 205 class MessageLocation; |
206 class ObjectGroup; | 206 class ObjectGroup; |
207 class TickSample; | 207 class TickSample; |
208 class VirtualMemory; | 208 class VirtualMemory; |
209 class Mutex; | 209 class Mutex; |
210 | 210 |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 | 505 |
506 Dest dest; | 506 Dest dest; |
507 memcpy(&dest, &source, sizeof(dest)); | 507 memcpy(&dest, &source, sizeof(dest)); |
508 return dest; | 508 return dest; |
509 } | 509 } |
510 | 510 |
511 | 511 |
512 } } // namespace v8::internal | 512 } } // namespace v8::internal |
513 | 513 |
514 #endif // V8_GLOBALS_H_ | 514 #endif // V8_GLOBALS_H_ |
OLD | NEW |