| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef VM_ASSEMBLER_MIPS_H_ | 5 #ifndef VM_ASSEMBLER_MIPS_H_ |
| 6 #define VM_ASSEMBLER_MIPS_H_ | 6 #define VM_ASSEMBLER_MIPS_H_ |
| 7 | 7 |
| 8 #ifndef VM_ASSEMBLER_H_ | 8 #ifndef VM_ASSEMBLER_H_ |
| 9 #error Do not include assembler_mips.h directly; use assembler.h instead. | 9 #error Do not include assembler_mips.h directly; use assembler.h instead. |
| 10 #endif | 10 #endif |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 void TryAllocateArray(intptr_t cid, | 318 void TryAllocateArray(intptr_t cid, |
| 319 intptr_t instance_size, | 319 intptr_t instance_size, |
| 320 Label* failure, | 320 Label* failure, |
| 321 Register instance, | 321 Register instance, |
| 322 Register end_address, | 322 Register end_address, |
| 323 Register temp1, | 323 Register temp1, |
| 324 Register temp2); | 324 Register temp2); |
| 325 | 325 |
| 326 // Debugging and bringup support. | 326 // Debugging and bringup support. |
| 327 void Stop(const char* message); | 327 void Stop(const char* message); |
| 328 | |
| 329 // TODO(zra): TraceSimMsg enables printing of helpful messages when | |
| 330 // --trace_sim is given. Eventually these calls will be changed to Comment. | |
| 331 void TraceSimMsg(const char* message); | |
| 332 void Unimplemented(const char* message); | 328 void Unimplemented(const char* message); |
| 333 void Untested(const char* message); | 329 void Untested(const char* message); |
| 334 void Unreachable(const char* message); | 330 void Unreachable(const char* message); |
| 335 | 331 |
| 336 static void InitializeMemoryWithBreakpoints(uword data, intptr_t length); | 332 static void InitializeMemoryWithBreakpoints(uword data, intptr_t length); |
| 337 | 333 |
| 338 void Comment(const char* format, ...) PRINTF_ATTRIBUTE(2, 3); | 334 void Comment(const char* format, ...) PRINTF_ATTRIBUTE(2, 3); |
| 339 static bool EmittingComments(); | 335 static bool EmittingComments(); |
| 340 | 336 |
| 341 const Code::Comments& GetCodeComments() const; | 337 const Code::Comments& GetCodeComments() const; |
| (...skipping 1396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1738 Register value, | 1734 Register value, |
| 1739 Label* no_update); | 1735 Label* no_update); |
| 1740 | 1736 |
| 1741 DISALLOW_ALLOCATION(); | 1737 DISALLOW_ALLOCATION(); |
| 1742 DISALLOW_COPY_AND_ASSIGN(Assembler); | 1738 DISALLOW_COPY_AND_ASSIGN(Assembler); |
| 1743 }; | 1739 }; |
| 1744 | 1740 |
| 1745 } // namespace dart | 1741 } // namespace dart |
| 1746 | 1742 |
| 1747 #endif // VM_ASSEMBLER_MIPS_H_ | 1743 #endif // VM_ASSEMBLER_MIPS_H_ |
| OLD | NEW |