| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 "platform/assert.h" | 5 #include "platform/assert.h" |
| 6 #include "vm/globals.h" | 6 #include "vm/globals.h" |
| 7 #if defined(TARGET_ARCH_IA32) | 7 #if defined(TARGET_ARCH_DBC) |
| 8 | 8 |
| 9 #include "vm/assembler.h" | 9 #include "vm/assembler.h" |
| 10 #include "vm/object.h" | 10 #include "vm/object.h" |
| 11 #include "vm/unit_test.h" | 11 #include "vm/unit_test.h" |
| 12 | 12 |
| 13 namespace dart { | 13 namespace dart { |
| 14 | 14 |
| 15 #define __ assembler-> | 15 #define __ assembler-> |
| 16 | 16 |
| 17 | |
| 18 // Generate a simple dart code sequence. | 17 // Generate a simple dart code sequence. |
| 19 // This is used to test Code and Instruction object creation. | 18 // This is used to test Code and Instruction object creation. |
| 20 void GenerateIncrement(Assembler* assembler) { | 19 void GenerateIncrement(Assembler* assembler) { |
| 21 __ movl(EAX, Immediate(0)); | 20 __ Frame(1); |
| 22 __ pushl(EAX); | 21 __ LoadConstant(0, Smi::Handle(Smi::New(0))); |
| 23 __ incl(Address(ESP, 0)); | 22 __ PushConstant(Smi::Handle(Smi::New(1))); |
| 24 __ movl(ECX, Address(ESP, 0)); | 23 __ Push(0); |
| 25 __ incl(ECX); | 24 __ AddTOS(); |
| 26 __ popl(EAX); | 25 __ Trap(); |
| 27 __ movl(EAX, ECX); | 26 __ PopLocal(0); |
| 28 __ ret(); | 27 __ Return(0); |
| 29 } | 28 } |
| 30 | 29 |
| 31 | 30 |
| 32 // Generate a dart code sequence that embeds a string object in it. | 31 // Generate a dart code sequence that embeds a string object in it. |
| 33 // This is used to test Embedded String objects in the instructions. | 32 // This is used to test Embedded String objects in the instructions. |
| 34 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) { | 33 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) { |
| 35 const String& string_object = | 34 const String& string_object = |
| 36 String::ZoneHandle(String::New(str, Heap::kOld)); | 35 String::ZoneHandle(String::New(str, Heap::kOld)); |
| 37 __ LoadObject(EAX, string_object); | 36 __ PushConstant(string_object); |
| 38 __ ret(); | 37 __ ReturnTOS(); |
| 39 } | 38 } |
| 40 | 39 |
| 41 | 40 |
| 42 // Generate a dart code sequence that embeds a smi object in it. | 41 // Generate a dart code sequence that embeds a smi object in it. |
| 43 // This is used to test Embedded Smi objects in the instructions. | 42 // This is used to test Embedded Smi objects in the instructions. |
| 44 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) { | 43 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) { |
| 45 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value)); | 44 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value)); |
| 46 __ LoadObject(EAX, smi_object); | 45 __ PushConstant(smi_object); |
| 47 __ ret(); | 46 __ ReturnTOS(); |
| 48 } | 47 } |
| 49 | 48 |
| 50 } // namespace dart | 49 } // namespace dart |
| 51 | 50 |
| 52 #endif // defined TARGET_ARCH_IA32 | 51 #endif // defined TARGET_ARCH_DBC |
| OLD | NEW |