| OLD | NEW |
| 1 // Copyright 2006-2009 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2009 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 | 197 |
| 198 | 198 |
| 199 // ----------------------------------------------------------------------------- | 199 // ----------------------------------------------------------------------------- |
| 200 // Forward declarations for frequently used classes | 200 // Forward declarations for frequently used classes |
| 201 // (sorted alphabetically) | 201 // (sorted alphabetically) |
| 202 | 202 |
| 203 class AccessorInfo; | 203 class AccessorInfo; |
| 204 class Allocation; | 204 class Allocation; |
| 205 class Arguments; | 205 class Arguments; |
| 206 class Assembler; | 206 class Assembler; |
| 207 class AssertNoAllocation; |
| 207 class BreakableStatement; | 208 class BreakableStatement; |
| 208 class Code; | 209 class Code; |
| 209 class CodeGenerator; | 210 class CodeGenerator; |
| 210 class CodeStub; | 211 class CodeStub; |
| 211 class Context; | 212 class Context; |
| 212 class Debug; | 213 class Debug; |
| 213 class Debugger; | 214 class Debugger; |
| 214 class DebugInfo; | 215 class DebugInfo; |
| 215 class Descriptor; | 216 class Descriptor; |
| 216 class DescriptorArray; | 217 class DescriptorArray; |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 SSE2 = 26, // x86 | 606 SSE2 = 26, // x86 |
| 606 CMOV = 15, // x86 | 607 CMOV = 15, // x86 |
| 607 RDTSC = 4, // x86 | 608 RDTSC = 4, // x86 |
| 608 CPUID = 10, // x86 | 609 CPUID = 10, // x86 |
| 609 VFP3 = 1, // ARM | 610 VFP3 = 1, // ARM |
| 610 SAHF = 0}; // x86 | 611 SAHF = 0}; // x86 |
| 611 | 612 |
| 612 } } // namespace v8::internal | 613 } } // namespace v8::internal |
| 613 | 614 |
| 614 #endif // V8_GLOBALS_H_ | 615 #endif // V8_GLOBALS_H_ |
| OLD | NEW |