| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 const Address kZapValue = reinterpret_cast<Address>(0xdeadbeed); | 134 const Address kZapValue = reinterpret_cast<Address>(0xdeadbeed); |
| 135 const Address kHandleZapValue = reinterpret_cast<Address>(0xbaddead); | 135 const Address kHandleZapValue = reinterpret_cast<Address>(0xbaddead); |
| 136 const Address kFromSpaceZapValue = reinterpret_cast<Address>(0xbeefdad); | 136 const Address kFromSpaceZapValue = reinterpret_cast<Address>(0xbeefdad); |
| 137 | 137 |
| 138 // ----------------------------------------------------------------------------- | 138 // ----------------------------------------------------------------------------- |
| 139 // Forward declarations for frequently used classes | 139 // Forward declarations for frequently used classes |
| 140 // (sorted alphabetically) | 140 // (sorted alphabetically) |
| 141 | 141 |
| 142 class AccessorInfo; | 142 class AccessorInfo; |
| 143 class Allocation; | 143 class Allocation; |
| 144 class Arguments; |
| 144 class Assembler; | 145 class Assembler; |
| 145 class BreakableStatement; | 146 class BreakableStatement; |
| 146 class Code; | 147 class Code; |
| 147 class CodeGenerator; | 148 class CodeGenerator; |
| 148 class CodeRegion; | 149 class CodeRegion; |
| 149 class CodeStub; | 150 class CodeStub; |
| 150 class Context; | 151 class Context; |
| 151 class Debug; | 152 class Debug; |
| 152 class Debugger; | 153 class Debugger; |
| 153 class DebugInfo; | 154 class DebugInfo; |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 | 509 |
| 509 Dest dest; | 510 Dest dest; |
| 510 memcpy(&dest, &source, sizeof(dest)); | 511 memcpy(&dest, &source, sizeof(dest)); |
| 511 return dest; | 512 return dest; |
| 512 } | 513 } |
| 513 | 514 |
| 514 | 515 |
| 515 } } // namespace v8::internal | 516 } } // namespace v8::internal |
| 516 | 517 |
| 517 #endif // V8_GLOBALS_H_ | 518 #endif // V8_GLOBALS_H_ |
| OLD | NEW |