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 413 matching lines...) Loading... |
424 SSE2 = 26, // x86 | 424 SSE2 = 26, // x86 |
425 CMOV = 15, // x86 | 425 CMOV = 15, // x86 |
426 RDTSC = 4, // x86 | 426 RDTSC = 4, // x86 |
427 CPUID = 10, // x86 | 427 CPUID = 10, // x86 |
428 VFP3 = 1, // ARM | 428 VFP3 = 1, // ARM |
429 ARMv7 = 2, // ARM | 429 ARMv7 = 2, // ARM |
430 VFP2 = 3, // ARM | 430 VFP2 = 3, // ARM |
431 SUDIV = 4, // ARM | 431 SUDIV = 4, // ARM |
432 UNALIGNED_ACCESSES = 5, // ARM | 432 UNALIGNED_ACCESSES = 5, // ARM |
433 MOVW_MOVT_IMMEDIATE_LOADS = 6, // ARM | 433 MOVW_MOVT_IMMEDIATE_LOADS = 6, // ARM |
| 434 VFP32DREGS = 7, // ARM |
434 SAHF = 0, // x86 | 435 SAHF = 0, // x86 |
435 FPU = 1}; // MIPS | 436 FPU = 1}; // MIPS |
436 | 437 |
437 | 438 |
438 // Used to specify if a macro instruction must perform a smi check on tagged | 439 // Used to specify if a macro instruction must perform a smi check on tagged |
439 // values. | 440 // values. |
440 enum SmiCheckType { | 441 enum SmiCheckType { |
441 DONT_DO_SMI_CHECK, | 442 DONT_DO_SMI_CHECK, |
442 DO_SMI_CHECK | 443 DO_SMI_CHECK |
443 }; | 444 }; |
(...skipping 121 matching lines...) Loading... |
565 | 566 |
566 enum ClearExceptionFlag { | 567 enum ClearExceptionFlag { |
567 KEEP_EXCEPTION, | 568 KEEP_EXCEPTION, |
568 CLEAR_EXCEPTION | 569 CLEAR_EXCEPTION |
569 }; | 570 }; |
570 | 571 |
571 | 572 |
572 } } // namespace v8::internal | 573 } } // namespace v8::internal |
573 | 574 |
574 #endif // V8_V8GLOBALS_H_ | 575 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |