OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
336 nlt_1 = 0x7, | 336 nlt_1 = 0x7, |
337 nlt_2 = 0xA, | 337 nlt_2 = 0xA, |
338 nlt_3 = 0x6, | 338 nlt_3 = 0x6, |
339 nlt_4 = 0x2 | 339 nlt_4 = 0x2 |
340 }; | 340 }; |
341 | 341 |
342 enum NeonSize { | 342 enum NeonSize { |
343 Neon8 = 0x0, | 343 Neon8 = 0x0, |
344 Neon16 = 0x1, | 344 Neon16 = 0x1, |
345 Neon32 = 0x2, | 345 Neon32 = 0x2, |
346 Neon64 = 0x4 | 346 Neon64 = 0x3 |
347 }; | 347 }; |
348 | 348 |
349 // ----------------------------------------------------------------------------- | 349 // ----------------------------------------------------------------------------- |
350 // Supervisor Call (svc) specific support. | 350 // Supervisor Call (svc) specific support. |
351 | 351 |
352 // Special Software Interrupt codes when used in the presence of the ARM | 352 // Special Software Interrupt codes when used in the presence of the ARM |
353 // simulator. | 353 // simulator. |
354 // svc (formerly swi) provides a 24bit immediate value. Use bits 22:0 for | 354 // svc (formerly swi) provides a 24bit immediate value. Use bits 22:0 for |
355 // standard SoftwareInterrupCode. Bit 23 is reserved for the stop feature. | 355 // standard SoftwareInterrupCode. Bit 23 is reserved for the stop feature. |
356 enum SoftwareInterruptCodes { | 356 enum SoftwareInterruptCodes { |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 static int Number(const char* name, bool* is_double); | 764 static int Number(const char* name, bool* is_double); |
765 | 765 |
766 private: | 766 private: |
767 static const char* names_[kNumVFPRegisters]; | 767 static const char* names_[kNumVFPRegisters]; |
768 }; | 768 }; |
769 | 769 |
770 | 770 |
771 } } // namespace v8::internal | 771 } } // namespace v8::internal |
772 | 772 |
773 #endif // V8_ARM_CONSTANTS_ARM_H_ | 773 #endif // V8_ARM_CONSTANTS_ARM_H_ |
OLD | NEW |