OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef V8_V8GLOBALS_H_ | 5 #ifndef V8_V8GLOBALS_H_ |
6 #define V8_V8GLOBALS_H_ | 6 #define V8_V8GLOBALS_H_ |
7 | 7 |
8 #include "globals.h" | 8 #include "globals.h" |
9 #include "checks.h" | 9 #include "checks.h" |
10 | 10 |
(...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 SSE2 = 26, // x86 | 406 SSE2 = 26, // x86 |
407 CMOV = 15, // x86 | 407 CMOV = 15, // x86 |
408 VFP3 = 1, // ARM | 408 VFP3 = 1, // ARM |
409 ARMv7 = 2, // ARM | 409 ARMv7 = 2, // ARM |
410 SUDIV = 3, // ARM | 410 SUDIV = 3, // ARM |
411 UNALIGNED_ACCESSES = 4, // ARM | 411 UNALIGNED_ACCESSES = 4, // ARM |
412 MOVW_MOVT_IMMEDIATE_LOADS = 5, // ARM | 412 MOVW_MOVT_IMMEDIATE_LOADS = 5, // ARM |
413 VFP32DREGS = 6, // ARM | 413 VFP32DREGS = 6, // ARM |
414 NEON = 7, // ARM | 414 NEON = 7, // ARM |
415 SAHF = 0, // x86 | 415 SAHF = 0, // x86 |
416 FPU = 1}; // MIPS | 416 FPU = 1, // MIPS |
| 417 ALWAYS_ALIGN_CSP = 1 }; // ARM64 |
417 | 418 |
418 | 419 |
419 // Used to specify if a macro instruction must perform a smi check on tagged | 420 // Used to specify if a macro instruction must perform a smi check on tagged |
420 // values. | 421 // values. |
421 enum SmiCheckType { | 422 enum SmiCheckType { |
422 DONT_DO_SMI_CHECK, | 423 DONT_DO_SMI_CHECK, |
423 DO_SMI_CHECK | 424 DO_SMI_CHECK |
424 }; | 425 }; |
425 | 426 |
426 | 427 |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
545 enum MinusZeroMode { | 546 enum MinusZeroMode { |
546 TREAT_MINUS_ZERO_AS_ZERO, | 547 TREAT_MINUS_ZERO_AS_ZERO, |
547 FAIL_ON_MINUS_ZERO | 548 FAIL_ON_MINUS_ZERO |
548 }; | 549 }; |
549 | 550 |
550 } } // namespace v8::internal | 551 } } // namespace v8::internal |
551 | 552 |
552 namespace i = v8::internal; | 553 namespace i = v8::internal; |
553 | 554 |
554 #endif // V8_V8GLOBALS_H_ | 555 #endif // V8_V8GLOBALS_H_ |
OLD | NEW |