| OLD | NEW | 
|---|
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 
| 2 // All Rights Reserved. | 2 // All Rights Reserved. | 
| 3 // | 3 // | 
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without | 
| 5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions | 
| 6 // are met: | 6 // are met: | 
| 7 // | 7 // | 
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, | 
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. | 
| 10 // | 10 // | 
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1059             Condition cond = al); | 1059             Condition cond = al); | 
| 1060 | 1060 | 
| 1061   void vstm(BlockAddrMode am, | 1061   void vstm(BlockAddrMode am, | 
| 1062             Register base, | 1062             Register base, | 
| 1063             SwVfpRegister first, | 1063             SwVfpRegister first, | 
| 1064             SwVfpRegister last, | 1064             SwVfpRegister last, | 
| 1065             Condition cond = al); | 1065             Condition cond = al); | 
| 1066 | 1066 | 
| 1067   void vmov(const DwVfpRegister dst, | 1067   void vmov(const DwVfpRegister dst, | 
| 1068             double imm, | 1068             double imm, | 
| 1069             const Register scratch = no_reg, | 1069             const Register scratch = no_reg); | 
| 1070             const Condition cond = al); |  | 
| 1071   void vmov(const SwVfpRegister dst, | 1070   void vmov(const SwVfpRegister dst, | 
| 1072             const SwVfpRegister src, | 1071             const SwVfpRegister src, | 
| 1073             const Condition cond = al); | 1072             const Condition cond = al); | 
| 1074   void vmov(const DwVfpRegister dst, | 1073   void vmov(const DwVfpRegister dst, | 
| 1075             const DwVfpRegister src, | 1074             const DwVfpRegister src, | 
| 1076             const Condition cond = al); | 1075             const Condition cond = al); | 
| 1077   void vmov(const DwVfpRegister dst, | 1076   void vmov(const DwVfpRegister dst, | 
| 1078             const VmovIndex index, | 1077             const VmovIndex index, | 
| 1079             const Register src, | 1078             const Register src, | 
| 1080             const Condition cond = al); | 1079             const Condition cond = al); | 
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1506  public: | 1505  public: | 
| 1507   explicit EnsureSpace(Assembler* assembler) { | 1506   explicit EnsureSpace(Assembler* assembler) { | 
| 1508     assembler->CheckBuffer(); | 1507     assembler->CheckBuffer(); | 
| 1509   } | 1508   } | 
| 1510 }; | 1509 }; | 
| 1511 | 1510 | 
| 1512 | 1511 | 
| 1513 } }  // namespace v8::internal | 1512 } }  // namespace v8::internal | 
| 1514 | 1513 | 
| 1515 #endif  // V8_ARM_ASSEMBLER_ARM_H_ | 1514 #endif  // V8_ARM_ASSEMBLER_ARM_H_ | 
| OLD | NEW | 
|---|