| 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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 CMOV = 15, // x86 | 429 CMOV = 15, // x86 |
| 430 RDTSC = 4, // x86 | 430 RDTSC = 4, // x86 |
| 431 CPUID = 10, // x86 | 431 CPUID = 10, // x86 |
| 432 VFP3 = 1, // ARM | 432 VFP3 = 1, // ARM |
| 433 ARMv7 = 2, // ARM | 433 ARMv7 = 2, // ARM |
| 434 VFP2 = 3, // ARM | 434 VFP2 = 3, // ARM |
| 435 SUDIV = 4, // ARM | 435 SUDIV = 4, // ARM |
| 436 UNALIGNED_ACCESSES = 5, // ARM | 436 UNALIGNED_ACCESSES = 5, // ARM |
| 437 MOVW_MOVT_IMMEDIATE_LOADS = 6, // ARM | 437 MOVW_MOVT_IMMEDIATE_LOADS = 6, // ARM |
| 438 SAHF = 0, // x86 | 438 SAHF = 0, // x86 |
| 439 FPU = 1}; // MIPS | 439 FPU = 1}; // MIPS or SH4 |
| 440 | 440 |
| 441 | 441 |
| 442 // Used to specify if a macro instruction must perform a smi check on tagged | 442 // Used to specify if a macro instruction must perform a smi check on tagged |
| 443 // values. | 443 // values. |
| 444 enum SmiCheckType { | 444 enum SmiCheckType { |
| 445 DONT_DO_SMI_CHECK, | 445 DONT_DO_SMI_CHECK, |
| 446 DO_SMI_CHECK | 446 DO_SMI_CHECK |
| 447 }; | 447 }; |
| 448 | 448 |
| 449 | 449 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 | 567 |
| 568 enum ClearExceptionFlag { | 568 enum ClearExceptionFlag { |
| 569 KEEP_EXCEPTION, | 569 KEEP_EXCEPTION, |
| 570 CLEAR_EXCEPTION | 570 CLEAR_EXCEPTION |
| 571 }; | 571 }; |
| 572 | 572 |
| 573 | 573 |
| 574 } } // namespace v8::internal | 574 } } // namespace v8::internal |
| 575 | 575 |
| 576 #endif // V8_V8GLOBALS_H_ | 576 #endif // V8_V8GLOBALS_H_ |
| OLD | NEW |