| 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 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 979 void stm(BlockAddrMode am, Register base, RegList src, Condition cond = al); | 979 void stm(BlockAddrMode am, Register base, RegList src, Condition cond = al); |
| 980 | 980 |
| 981 // Exception-generating instructions and debugging support | 981 // Exception-generating instructions and debugging support |
| 982 void stop(const char* msg, | 982 void stop(const char* msg, |
| 983 Condition cond = al, | 983 Condition cond = al, |
| 984 int32_t code = kDefaultStopCode); | 984 int32_t code = kDefaultStopCode); |
| 985 | 985 |
| 986 void bkpt(uint32_t imm16); // v5 and above | 986 void bkpt(uint32_t imm16); // v5 and above |
| 987 void svc(uint32_t imm24, Condition cond = al); | 987 void svc(uint32_t imm24, Condition cond = al); |
| 988 | 988 |
| 989 // Synchronization instructions |
| 990 void dmb(BarrierOption option); |
| 991 void dsb(BarrierOption option); |
| 992 void isb(BarrierOption option); |
| 993 |
| 989 // Coprocessor instructions | 994 // Coprocessor instructions |
| 990 | 995 |
| 991 void cdp(Coprocessor coproc, int opcode_1, | 996 void cdp(Coprocessor coproc, int opcode_1, |
| 992 CRegister crd, CRegister crn, CRegister crm, | 997 CRegister crd, CRegister crn, CRegister crm, |
| 993 int opcode_2, Condition cond = al); | 998 int opcode_2, Condition cond = al); |
| 994 | 999 |
| 995 void cdp2(Coprocessor coproc, int opcode_1, | 1000 void cdp2(Coprocessor coproc, int opcode_1, |
| 996 CRegister crd, CRegister crn, CRegister crm, | 1001 CRegister crd, CRegister crn, CRegister crm, |
| 997 int opcode_2); // v5 and above | 1002 int opcode_2); // v5 and above |
| 998 | 1003 |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 explicit EnsureSpace(Assembler* assembler) { | 1644 explicit EnsureSpace(Assembler* assembler) { |
| 1640 assembler->CheckBuffer(); | 1645 assembler->CheckBuffer(); |
| 1641 } | 1646 } |
| 1642 }; | 1647 }; |
| 1643 | 1648 |
| 1644 | 1649 |
| 1645 } // namespace internal | 1650 } // namespace internal |
| 1646 } // namespace v8 | 1651 } // namespace v8 |
| 1647 | 1652 |
| 1648 #endif // V8_ARM_ASSEMBLER_ARM_H_ | 1653 #endif // V8_ARM_ASSEMBLER_ARM_H_ |
| OLD | NEW |