Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(77)

Side by Side Diff: runtime/vm/object_ia32_test.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/object_graph_test.cc ('k') | runtime/vm/object_id_ring.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "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_IA32)
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 __ movl(EAX, Immediate(0));
22 __ pushl(EAX); 21 __ pushl(EAX);
23 __ incl(Address(ESP, 0)); 22 __ incl(Address(ESP, 0));
24 __ movl(ECX, Address(ESP, 0)); 23 __ movl(ECX, Address(ESP, 0));
25 __ incl(ECX); 24 __ incl(ECX);
26 __ popl(EAX); 25 __ popl(EAX);
27 __ movl(EAX, ECX); 26 __ movl(EAX, ECX);
28 __ ret(); 27 __ ret();
29 } 28 }
30 29
31
32 // Generate a dart code sequence that embeds a string object in it. 30 // Generate a dart code sequence that embeds a string object in it.
33 // This is used to test Embedded String objects in the instructions. 31 // This is used to test Embedded String objects in the instructions.
34 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) { 32 void GenerateEmbedStringInCode(Assembler* assembler, const char* str) {
35 const String& string_object = 33 const String& string_object =
36 String::ZoneHandle(String::New(str, Heap::kOld)); 34 String::ZoneHandle(String::New(str, Heap::kOld));
37 __ LoadObject(EAX, string_object); 35 __ LoadObject(EAX, string_object);
38 __ ret(); 36 __ ret();
39 } 37 }
40 38
41
42 // Generate a dart code sequence that embeds a smi object in it. 39 // Generate a dart code sequence that embeds a smi object in it.
43 // This is used to test Embedded Smi objects in the instructions. 40 // This is used to test Embedded Smi objects in the instructions.
44 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) { 41 void GenerateEmbedSmiInCode(Assembler* assembler, intptr_t value) {
45 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value)); 42 const Smi& smi_object = Smi::ZoneHandle(Smi::New(value));
46 __ LoadObject(EAX, smi_object); 43 __ LoadObject(EAX, smi_object);
47 __ ret(); 44 __ ret();
48 } 45 }
49 46
50 } // namespace dart 47 } // namespace dart
51 48
52 #endif // defined TARGET_ARCH_IA32 49 #endif // defined TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « runtime/vm/object_graph_test.cc ('k') | runtime/vm/object_id_ring.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698