| OLD | NEW |
| 1 // Copyright 2010 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 |
| 11 // with the distribution. | 11 // with the distribution. |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 ib = (8|4|0) << 21, // Increment before. | 339 ib = (8|4|0) << 21, // Increment before. |
| 340 da_w = (0|0|1) << 21, // Decrement after with writeback to base. | 340 da_w = (0|0|1) << 21, // Decrement after with writeback to base. |
| 341 ia_w = (0|4|1) << 21, // Increment after with writeback to base. | 341 ia_w = (0|4|1) << 21, // Increment after with writeback to base. |
| 342 db_w = (8|0|1) << 21, // Decrement before with writeback to base. | 342 db_w = (8|0|1) << 21, // Decrement before with writeback to base. |
| 343 ib_w = (8|4|1) << 21, // Increment before with writeback to base. | 343 ib_w = (8|4|1) << 21, // Increment before with writeback to base. |
| 344 | 344 |
| 345 // Alias modes for comparison when writeback does not matter. | 345 // Alias modes for comparison when writeback does not matter. |
| 346 da_x = (0|0|0) << 21, // Decrement after. | 346 da_x = (0|0|0) << 21, // Decrement after. |
| 347 ia_x = (0|4|0) << 21, // Increment after. | 347 ia_x = (0|4|0) << 21, // Increment after. |
| 348 db_x = (8|0|0) << 21, // Decrement before. | 348 db_x = (8|0|0) << 21, // Decrement before. |
| 349 ib_x = (8|4|0) << 21 // Increment before. | 349 ib_x = (8|4|0) << 21, // Increment before. |
| 350 |
| 351 kBlockAddrModeMask = (8|4|1) << 21 |
| 350 }; | 352 }; |
| 351 | 353 |
| 352 | 354 |
| 353 // Coprocessor load/store operand size. | 355 // Coprocessor load/store operand size. |
| 354 enum LFlag { | 356 enum LFlag { |
| 355 Long = 1 << 22, // Long load/store coprocessor. | 357 Long = 1 << 22, // Long load/store coprocessor. |
| 356 Short = 0 << 22 // Short load/store coprocessor. | 358 Short = 0 << 22 // Short load/store coprocessor. |
| 357 }; | 359 }; |
| 358 | 360 |
| 359 | 361 |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 static int Number(const char* name, bool* is_double); | 769 static int Number(const char* name, bool* is_double); |
| 768 | 770 |
| 769 private: | 771 private: |
| 770 static const char* names_[kNumVFPRegisters]; | 772 static const char* names_[kNumVFPRegisters]; |
| 771 }; | 773 }; |
| 772 | 774 |
| 773 | 775 |
| 774 } } // namespace v8::internal | 776 } } // namespace v8::internal |
| 775 | 777 |
| 776 #endif // V8_ARM_CONSTANTS_ARM_H_ | 778 #endif // V8_ARM_CONSTANTS_ARM_H_ |
| OLD | NEW |