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/cpu.h" |
10 #include "vm/os.h" | 10 #include "vm/os.h" |
(...skipping 3376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3387 for (int i = 0; i < 10; i++) { | 3387 for (int i = 0; i < 10; i++) { |
3388 EXPECT_EQ(from[i], to[i]); | 3388 EXPECT_EQ(from[i], to[i]); |
3389 } | 3389 } |
3390 delete [] to; | 3390 delete [] to; |
3391 } | 3391 } |
3392 | 3392 |
3393 | 3393 |
3394 // Called from assembler_test.cc. | 3394 // Called from assembler_test.cc. |
3395 ASSEMBLER_TEST_GENERATE(StoreIntoObject, assembler) { | 3395 ASSEMBLER_TEST_GENERATE(StoreIntoObject, assembler) { |
3396 __ pushl(THR); | 3396 __ pushl(THR); |
3397 __ pushl(CTX); | 3397 __ movl(EAX, Address(ESP, 2 * kWordSize)); |
3398 __ movl(CTX, Address(ESP, 3 * kWordSize)); | 3398 __ movl(ECX, Address(ESP, 3 * kWordSize)); |
3399 __ movl(EAX, Address(ESP, 4 * kWordSize)); | 3399 __ movl(THR, Address(ESP, 4 * kWordSize)); |
3400 __ movl(ECX, Address(ESP, 5 * kWordSize)); | |
3401 __ movl(THR, Address(ESP, 6 * kWordSize)); | |
3402 __ pushl(EAX); | 3400 __ pushl(EAX); |
3403 __ StoreIntoObject(ECX, | 3401 __ StoreIntoObject(ECX, |
3404 FieldAddress(ECX, GrowableObjectArray::data_offset()), | 3402 FieldAddress(ECX, GrowableObjectArray::data_offset()), |
3405 EAX); | 3403 EAX); |
3406 __ popl(EAX); | 3404 __ popl(EAX); |
3407 __ popl(CTX); | |
3408 __ popl(THR); | 3405 __ popl(THR); |
3409 __ ret(); | 3406 __ ret(); |
3410 } | 3407 } |
3411 | 3408 |
3412 | 3409 |
3413 ASSEMBLER_TEST_GENERATE(BitTest, assembler) { | 3410 ASSEMBLER_TEST_GENERATE(BitTest, assembler) { |
3414 __ movl(EAX, Immediate(4)); | 3411 __ movl(EAX, Immediate(4)); |
3415 __ movl(ECX, Immediate(2)); | 3412 __ movl(ECX, Immediate(2)); |
3416 __ bt(EAX, ECX); | 3413 __ bt(EAX, ECX); |
3417 Label ok; | 3414 Label ok; |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3476 EXPECT_EQ(ICData::kInt64RangeBit, range_of(Integer::New(kMaxInt64))); | 3473 EXPECT_EQ(ICData::kInt64RangeBit, range_of(Integer::New(kMaxInt64))); |
3477 EXPECT_EQ(ICData::kInt64RangeBit, range_of(Integer::New(kMinInt64))); | 3474 EXPECT_EQ(ICData::kInt64RangeBit, range_of(Integer::New(kMinInt64))); |
3478 | 3475 |
3479 EXPECT_EQ(-1, range_of(Bool::True().raw())); | 3476 EXPECT_EQ(-1, range_of(Bool::True().raw())); |
3480 } | 3477 } |
3481 | 3478 |
3482 | 3479 |
3483 } // namespace dart | 3480 } // namespace dart |
3484 | 3481 |
3485 #endif // defined TARGET_ARCH_IA32 | 3482 #endif // defined TARGET_ARCH_IA32 |
OLD | NEW |