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