| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #include "vm/globals.h" | 5 #include "vm/globals.h" |
| 6 #if defined(TARGET_ARCH_IA32) | 6 #if defined(TARGET_ARCH_IA32) |
| 7 | 7 |
| 8 #include "vm/assembler.h" | 8 #include "vm/assembler.h" |
| 9 #include "vm/cpu.h" |
| 9 #include "vm/os.h" | 10 #include "vm/os.h" |
| 10 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
| 11 #include "vm/virtual_memory.h" | 12 #include "vm/virtual_memory.h" |
| 12 | 13 |
| 13 namespace dart { | 14 namespace dart { |
| 14 | 15 |
| 15 #define __ assembler-> | 16 #define __ assembler-> |
| 16 | 17 |
| 17 | 18 |
| 18 ASSEMBLER_TEST_GENERATE(Simple, assembler) { | 19 ASSEMBLER_TEST_GENERATE(Simple, assembler) { |
| (...skipping 2879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2898 FieldAddress(ECX, GrowableObjectArray::data_offset()), | 2899 FieldAddress(ECX, GrowableObjectArray::data_offset()), |
| 2899 EAX); | 2900 EAX); |
| 2900 __ popl(EAX); | 2901 __ popl(EAX); |
| 2901 __ popl(CTX); | 2902 __ popl(CTX); |
| 2902 __ ret(); | 2903 __ ret(); |
| 2903 } | 2904 } |
| 2904 | 2905 |
| 2905 } // namespace dart | 2906 } // namespace dart |
| 2906 | 2907 |
| 2907 #endif // defined TARGET_ARCH_IA32 | 2908 #endif // defined TARGET_ARCH_IA32 |
| OLD | NEW |