| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 const uint32_t kQuietNaNHighBitsMask = 0xfff << (51 - 32); | 104 const uint32_t kQuietNaNHighBitsMask = 0xfff << (51 - 32); |
| 105 | 105 |
| 106 | 106 |
| 107 // ----------------------------------------------------------------------------- | 107 // ----------------------------------------------------------------------------- |
| 108 // Forward declarations for frequently used classes | 108 // Forward declarations for frequently used classes |
| 109 | 109 |
| 110 class AccessorInfo; | 110 class AccessorInfo; |
| 111 class Allocation; | 111 class Allocation; |
| 112 class Arguments; | 112 class Arguments; |
| 113 class Assembler; | 113 class Assembler; |
| 114 class AssertNoAllocation; | |
| 115 class Code; | 114 class Code; |
| 116 class CodeGenerator; | 115 class CodeGenerator; |
| 117 class CodeStub; | 116 class CodeStub; |
| 118 class Context; | 117 class Context; |
| 119 class Debug; | 118 class Debug; |
| 120 class Debugger; | 119 class Debugger; |
| 121 class DebugInfo; | 120 class DebugInfo; |
| 122 class Descriptor; | 121 class Descriptor; |
| 123 class DescriptorArray; | 122 class DescriptorArray; |
| 124 class TransitionArray; | 123 class TransitionArray; |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 | 567 |
| 569 enum ClearExceptionFlag { | 568 enum ClearExceptionFlag { |
| 570 KEEP_EXCEPTION, | 569 KEEP_EXCEPTION, |
| 571 CLEAR_EXCEPTION | 570 CLEAR_EXCEPTION |
| 572 }; | 571 }; |
| 573 | 572 |
| 574 | 573 |
| 575 } } // namespace v8::internal | 574 } } // namespace v8::internal |
| 576 | 575 |
| 577 #endif // V8_V8GLOBALS_H_ | 576 #endif // V8_V8GLOBALS_H_ |
| OLD | NEW |