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