| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 // Allocate an executable page of memory. | 55 // Allocate an executable page of memory. |
| 56 size_t actual_size; | 56 size_t actual_size; |
| 57 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize, | 57 byte* buffer = static_cast<byte*>(OS::Allocate(Assembler::kMinimalBufferSize, |
| 58 &actual_size, | 58 &actual_size, |
| 59 true)); | 59 true)); |
| 60 CHECK(buffer); | 60 CHECK(buffer); |
| 61 Isolate* isolate = CcTest::i_isolate(); | 61 Isolate* isolate = CcTest::i_isolate(); |
| 62 HandleScope handles(isolate); | 62 HandleScope handles(isolate); |
| 63 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size)); | 63 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size)); |
| 64 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro. | 64 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro. |
| 65 masm->set_allow_stub_calls(false); | |
| 66 __ push(ebx); | 65 __ push(ebx); |
| 67 __ push(edx); | 66 __ push(edx); |
| 68 __ sub(esp, Immediate(1 * kPointerSize)); | 67 __ sub(esp, Immediate(1 * kPointerSize)); |
| 69 Label exit; | 68 Label exit; |
| 70 | 69 |
| 71 // Test 1. | 70 // Test 1. |
| 72 __ mov(eax, Immediate(1)); // Test number. | 71 __ mov(eax, Immediate(1)); // Test number. |
| 73 __ mov(Operand(esp, 0 * kPointerSize), Immediate(0)); | 72 __ mov(Operand(esp, 0 * kPointerSize), Immediate(0)); |
| 74 __ mov(ebx, Immediate(-1)); | 73 __ mov(ebx, Immediate(-1)); |
| 75 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); | 74 __ Store(ebx, Operand(esp, 0 * kPointerSize), Representation::UInteger8()); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 __ ret(0); | 130 __ ret(0); |
| 132 | 131 |
| 133 CodeDesc desc; | 132 CodeDesc desc; |
| 134 masm->GetCode(&desc); | 133 masm->GetCode(&desc); |
| 135 // Call the function from C++. | 134 // Call the function from C++. |
| 136 int result = FUNCTION_CAST<F0>(buffer)(); | 135 int result = FUNCTION_CAST<F0>(buffer)(); |
| 137 CHECK_EQ(0, result); | 136 CHECK_EQ(0, result); |
| 138 } | 137 } |
| 139 | 138 |
| 140 #undef __ | 139 #undef __ |
| OLD | NEW |