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

Side by Side Diff: test/cctest/test-macro-assembler-ia32.cc

Issue 1476763002: Make whether or not a Code object should be created by masm explicit (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: enum class FTW Created 5 years 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 | « test/cctest/test-macro-assembler-arm.cc ('k') | test/cctest/test-macro-assembler-mips.cc » ('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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 53
54 TEST(LoadAndStoreWithRepresentation) { 54 TEST(LoadAndStoreWithRepresentation) {
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*>(v8::base::OS::Allocate( 57 byte* buffer = static_cast<byte*>(v8::base::OS::Allocate(
58 Assembler::kMinimalBufferSize, &actual_size, true)); 58 Assembler::kMinimalBufferSize, &actual_size, true));
59 CHECK(buffer); 59 CHECK(buffer);
60 Isolate* isolate = CcTest::i_isolate(); 60 Isolate* isolate = CcTest::i_isolate();
61 HandleScope handles(isolate); 61 HandleScope handles(isolate);
62 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size)); 62 MacroAssembler assembler(isolate, buffer, static_cast<int>(actual_size),
63 v8::internal::CodeObjectRequired::kYes);
63 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro. 64 MacroAssembler* masm = &assembler; // Create a pointer for the __ macro.
64 __ push(ebx); 65 __ push(ebx);
65 __ push(edx); 66 __ push(edx);
66 __ sub(esp, Immediate(1 * kPointerSize)); 67 __ sub(esp, Immediate(1 * kPointerSize));
67 Label exit; 68 Label exit;
68 69
69 // Test 1. 70 // Test 1.
70 __ mov(eax, Immediate(1)); // Test number. 71 __ mov(eax, Immediate(1)); // Test number.
71 __ mov(Operand(esp, 0 * kPointerSize), Immediate(0)); 72 __ mov(Operand(esp, 0 * kPointerSize), Immediate(0));
72 __ mov(ebx, Immediate(-1)); 73 __ mov(ebx, Immediate(-1));
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 __ ret(0); 155 __ ret(0);
155 156
156 CodeDesc desc; 157 CodeDesc desc;
157 masm->GetCode(&desc); 158 masm->GetCode(&desc);
158 // Call the function from C++. 159 // Call the function from C++.
159 int result = FUNCTION_CAST<F0>(buffer)(); 160 int result = FUNCTION_CAST<F0>(buffer)();
160 CHECK_EQ(0, result); 161 CHECK_EQ(0, result);
161 } 162 }
162 163
163 #undef __ 164 #undef __
OLDNEW
« no previous file with comments | « test/cctest/test-macro-assembler-arm.cc ('k') | test/cctest/test-macro-assembler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698