deps: update v8 to 4.3.61.21
[platform/upstream/nodejs.git] / deps / v8 / test / cctest / test-disasm-x87.cc
1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 #include <stdlib.h>
29
30 #include "src/v8.h"
31
32 #include "src/debug.h"
33 #include "src/disasm.h"
34 #include "src/disassembler.h"
35 #include "src/ic/ic.h"
36 #include "src/macro-assembler.h"
37 #include "test/cctest/cctest.h"
38
39 using namespace v8::internal;
40
41
42 #define __ assm.
43
44
45 static void DummyStaticFunction(Object* result) {
46 }
47
48
49 TEST(DisasmIa320) {
50   CcTest::InitializeVM();
51   Isolate* isolate = CcTest::i_isolate();
52   HandleScope scope(isolate);
53   v8::internal::byte buffer[2048];
54   Assembler assm(isolate, buffer, sizeof buffer);
55   DummyStaticFunction(NULL);  // just bloody use it (DELETE; debugging)
56
57   // Short immediate instructions
58   __ adc(eax, 12345678);
59   __ add(eax, Immediate(12345678));
60   __ or_(eax, 12345678);
61   __ sub(eax, Immediate(12345678));
62   __ xor_(eax, 12345678);
63   __ and_(eax, 12345678);
64   Handle<FixedArray> foo = isolate->factory()->NewFixedArray(10, TENURED);
65   __ cmp(eax, foo);
66
67   // ---- This one caused crash
68   __ mov(ebx,  Operand(esp, ecx, times_2, 0));  // [esp+ecx*4]
69
70   // ---- All instructions that I can think of
71   __ add(edx, ebx);
72   __ add(edx, Operand(12, RelocInfo::NONE32));
73   __ add(edx, Operand(ebx, 0));
74   __ add(edx, Operand(ebx, 16));
75   __ add(edx, Operand(ebx, 1999));
76   __ add(edx, Operand(ebx, -4));
77   __ add(edx, Operand(ebx, -1999));
78   __ add(edx, Operand(esp, 0));
79   __ add(edx, Operand(esp, 16));
80   __ add(edx, Operand(esp, 1999));
81   __ add(edx, Operand(esp, -4));
82   __ add(edx, Operand(esp, -1999));
83   __ nop();
84   __ add(esi, Operand(ecx, times_4, 0));
85   __ add(esi, Operand(ecx, times_4, 24));
86   __ add(esi, Operand(ecx, times_4, -4));
87   __ add(esi, Operand(ecx, times_4, -1999));
88   __ nop();
89   __ add(edi, Operand(ebp, ecx, times_4, 0));
90   __ add(edi, Operand(ebp, ecx, times_4, 12));
91   __ add(edi, Operand(ebp, ecx, times_4, -8));
92   __ add(edi, Operand(ebp, ecx, times_4, -3999));
93   __ add(Operand(ebp, ecx, times_4, 12), Immediate(12));
94
95   __ nop();
96   __ add(ebx, Immediate(12));
97   __ nop();
98   __ adc(ecx, 12);
99   __ adc(ecx, 1000);
100   __ nop();
101   __ and_(edx, 3);
102   __ and_(edx, Operand(esp, 4));
103   __ cmp(edx, 3);
104   __ cmp(edx, Operand(esp, 4));
105   __ cmp(Operand(ebp, ecx, times_4, 0), Immediate(1000));
106   Handle<FixedArray> foo2 = isolate->factory()->NewFixedArray(10, TENURED);
107   __ cmp(ebx, foo2);
108   __ cmpb(ebx, Operand(ebp, ecx, times_2, 0));
109   __ cmpb(Operand(ebp, ecx, times_2, 0), ebx);
110   __ or_(edx, 3);
111   __ xor_(edx, 3);
112   __ nop();
113   __ cpuid();
114   __ movsx_b(edx, ecx);
115   __ movsx_w(edx, ecx);
116   __ movzx_b(edx, ecx);
117   __ movzx_w(edx, ecx);
118
119   __ nop();
120   __ imul(edx, ecx);
121   __ shld(edx, ecx);
122   __ shrd(edx, ecx);
123   __ bts(edx, ecx);
124   __ bts(Operand(ebx, ecx, times_4, 0), ecx);
125   __ nop();
126   __ pushad();
127   __ popad();
128   __ pushfd();
129   __ popfd();
130   __ push(Immediate(12));
131   __ push(Immediate(23456));
132   __ push(ecx);
133   __ push(esi);
134   __ push(Operand(ebp, JavaScriptFrameConstants::kFunctionOffset));
135   __ push(Operand(ebx, ecx, times_4, 0));
136   __ push(Operand(ebx, ecx, times_4, 0));
137   __ push(Operand(ebx, ecx, times_4, 10000));
138   __ pop(edx);
139   __ pop(eax);
140   __ pop(Operand(ebx, ecx, times_4, 0));
141   __ nop();
142
143   __ add(edx, Operand(esp, 16));
144   __ add(edx, ecx);
145   __ mov_b(edx, ecx);
146   __ mov_b(ecx, 6);
147   __ mov_b(Operand(ebx, ecx, times_4, 10000), 6);
148   __ mov_b(Operand(esp, 16), edx);
149   __ mov_w(edx, Operand(esp, 16));
150   __ mov_w(Operand(esp, 16), edx);
151   __ nop();
152   __ movsx_w(edx, Operand(esp, 12));
153   __ movsx_b(edx, Operand(esp, 12));
154   __ movzx_w(edx, Operand(esp, 12));
155   __ movzx_b(edx, Operand(esp, 12));
156   __ nop();
157   __ mov(edx, 1234567);
158   __ mov(edx, Operand(esp, 12));
159   __ mov(Operand(ebx, ecx, times_4, 10000), Immediate(12345));
160   __ mov(Operand(ebx, ecx, times_4, 10000), edx);
161   __ nop();
162   __ dec_b(edx);
163   __ dec_b(Operand(eax, 10));
164   __ dec_b(Operand(ebx, ecx, times_4, 10000));
165   __ dec(edx);
166   __ cdq();
167
168   __ nop();
169   __ idiv(edx);
170   __ idiv(Operand(edx, ecx, times_1, 1));
171   __ idiv(Operand(esp, 12));
172   __ div(edx);
173   __ div(Operand(edx, ecx, times_1, 1));
174   __ div(Operand(esp, 12));
175   __ mul(edx);
176   __ neg(edx);
177   __ not_(edx);
178   __ test(Operand(ebx, ecx, times_4, 10000), Immediate(123456));
179
180   __ imul(edx, Operand(ebx, ecx, times_4, 10000));
181   __ imul(edx, ecx, 12);
182   __ imul(edx, Operand(edx, eax, times_2, 42), 8);
183   __ imul(edx, ecx, 1000);
184   __ imul(edx, Operand(ebx, ecx, times_4, 1), 9000);
185
186   __ inc(edx);
187   __ inc(Operand(ebx, ecx, times_4, 10000));
188   __ push(Operand(ebx, ecx, times_4, 10000));
189   __ pop(Operand(ebx, ecx, times_4, 10000));
190   __ call(Operand(ebx, ecx, times_4, 10000));
191   __ jmp(Operand(ebx, ecx, times_4, 10000));
192
193   __ lea(edx, Operand(ebx, ecx, times_4, 10000));
194   __ or_(edx, 12345);
195   __ or_(edx, Operand(ebx, ecx, times_4, 10000));
196
197   __ nop();
198
199   __ rcl(edx, 1);
200   __ rcl(edx, 7);
201   __ rcr(edx, 1);
202   __ rcr(edx, 7);
203   __ ror(edx, 1);
204   __ ror(edx, 6);
205   __ ror_cl(edx);
206   __ ror(Operand(ebx, ecx, times_4, 10000), 1);
207   __ ror(Operand(ebx, ecx, times_4, 10000), 6);
208   __ ror_cl(Operand(ebx, ecx, times_4, 10000));
209   __ sar(edx, 1);
210   __ sar(edx, 6);
211   __ sar_cl(edx);
212   __ sar(Operand(ebx, ecx, times_4, 10000), 1);
213   __ sar(Operand(ebx, ecx, times_4, 10000), 6);
214   __ sar_cl(Operand(ebx, ecx, times_4, 10000));
215   __ sbb(edx, Operand(ebx, ecx, times_4, 10000));
216   __ shld(edx, Operand(ebx, ecx, times_4, 10000));
217   __ shl(edx, 1);
218   __ shl(edx, 6);
219   __ shl_cl(edx);
220   __ shl(Operand(ebx, ecx, times_4, 10000), 1);
221   __ shl(Operand(ebx, ecx, times_4, 10000), 6);
222   __ shl_cl(Operand(ebx, ecx, times_4, 10000));
223   __ shrd(edx, Operand(ebx, ecx, times_4, 10000));
224   __ shr(edx, 1);
225   __ shr(edx, 7);
226   __ shr_cl(edx);
227   __ shr(Operand(ebx, ecx, times_4, 10000), 1);
228   __ shr(Operand(ebx, ecx, times_4, 10000), 6);
229   __ shr_cl(Operand(ebx, ecx, times_4, 10000));
230
231
232   // Immediates
233
234   __ adc(edx, 12345);
235
236   __ add(ebx, Immediate(12));
237   __ add(Operand(edx, ecx, times_4, 10000), Immediate(12));
238
239   __ and_(ebx, 12345);
240
241   __ cmp(ebx, 12345);
242   __ cmp(ebx, Immediate(12));
243   __ cmp(Operand(edx, ecx, times_4, 10000), Immediate(12));
244   __ cmpb(eax, 100);
245
246   __ or_(ebx, 12345);
247
248   __ sub(ebx, Immediate(12));
249   __ sub(Operand(edx, ecx, times_4, 10000), Immediate(12));
250
251   __ xor_(ebx, 12345);
252
253   __ imul(edx, ecx, 12);
254   __ imul(edx, ecx, 1000);
255
256   __ cld();
257   __ rep_movs();
258   __ rep_stos();
259   __ stos();
260
261   __ sub(edx, Operand(ebx, ecx, times_4, 10000));
262   __ sub(edx, ebx);
263
264   __ test(edx, Immediate(12345));
265   __ test(edx, Operand(ebx, ecx, times_8, 10000));
266   __ test(Operand(esi, edi, times_1, -20000000), Immediate(300000000));
267   __ test_b(edx, Operand(ecx, ebx, times_2, 1000));
268   __ test_b(Operand(eax, -20), 0x9A);
269   __ nop();
270
271   __ xor_(edx, 12345);
272   __ xor_(edx, Operand(ebx, ecx, times_8, 10000));
273   __ bts(Operand(ebx, ecx, times_8, 10000), edx);
274   __ hlt();
275   __ int3();
276   __ ret(0);
277   __ ret(8);
278
279   // Calls
280
281   Label L1, L2;
282   __ bind(&L1);
283   __ nop();
284   __ call(&L1);
285   __ call(&L2);
286   __ nop();
287   __ bind(&L2);
288   __ call(Operand(ebx, ecx, times_4, 10000));
289   __ nop();
290   Handle<Code> ic(LoadIC::initialize_stub(isolate, NOT_CONTEXTUAL));
291   __ call(ic, RelocInfo::CODE_TARGET);
292   __ nop();
293   __ call(FUNCTION_ADDR(DummyStaticFunction), RelocInfo::RUNTIME_ENTRY);
294   __ nop();
295
296   __ jmp(&L1);
297   __ jmp(Operand(ebx, ecx, times_4, 10000));
298   ExternalReference after_break_target =
299       ExternalReference::debug_after_break_target_address(isolate);
300   __ jmp(Operand::StaticVariable(after_break_target));
301   __ jmp(ic, RelocInfo::CODE_TARGET);
302   __ nop();
303
304
305   Label Ljcc;
306   __ nop();
307   // long jumps
308   __ j(overflow, &Ljcc);
309   __ j(no_overflow, &Ljcc);
310   __ j(below, &Ljcc);
311   __ j(above_equal, &Ljcc);
312   __ j(equal, &Ljcc);
313   __ j(not_equal, &Ljcc);
314   __ j(below_equal, &Ljcc);
315   __ j(above, &Ljcc);
316   __ j(sign, &Ljcc);
317   __ j(not_sign, &Ljcc);
318   __ j(parity_even, &Ljcc);
319   __ j(parity_odd, &Ljcc);
320   __ j(less, &Ljcc);
321   __ j(greater_equal, &Ljcc);
322   __ j(less_equal, &Ljcc);
323   __ j(greater, &Ljcc);
324   __ nop();
325   __ bind(&Ljcc);
326   // short jumps
327   __ j(overflow, &Ljcc);
328   __ j(no_overflow, &Ljcc);
329   __ j(below, &Ljcc);
330   __ j(above_equal, &Ljcc);
331   __ j(equal, &Ljcc);
332   __ j(not_equal, &Ljcc);
333   __ j(below_equal, &Ljcc);
334   __ j(above, &Ljcc);
335   __ j(sign, &Ljcc);
336   __ j(not_sign, &Ljcc);
337   __ j(parity_even, &Ljcc);
338   __ j(parity_odd, &Ljcc);
339   __ j(less, &Ljcc);
340   __ j(greater_equal, &Ljcc);
341   __ j(less_equal, &Ljcc);
342   __ j(greater, &Ljcc);
343
344   // 0xD9 instructions
345   __ nop();
346
347   __ fld(1);
348   __ fld1();
349   __ fldz();
350   __ fldpi();
351   __ fabs();
352   __ fchs();
353   __ fprem();
354   __ fprem1();
355   __ fincstp();
356   __ ftst();
357   __ fxam();
358   __ fxch(3);
359   __ fld_s(Operand(ebx, ecx, times_4, 10000));
360   __ fstp_s(Operand(ebx, ecx, times_4, 10000));
361   __ ffree(3);
362   __ fld_d(Operand(ebx, ecx, times_4, 10000));
363   __ fstp_d(Operand(ebx, ecx, times_4, 10000));
364   __ nop();
365
366   __ fild_s(Operand(ebx, ecx, times_4, 10000));
367   __ fistp_s(Operand(ebx, ecx, times_4, 10000));
368   __ fild_d(Operand(ebx, ecx, times_4, 10000));
369   __ fistp_d(Operand(ebx, ecx, times_4, 10000));
370   __ fnstsw_ax();
371   __ nop();
372   __ fadd(3);
373   __ fsub(3);
374   __ fmul(3);
375   __ fdiv(3);
376
377   __ faddp(3);
378   __ fsubp(3);
379   __ fmulp(3);
380   __ fdivp(3);
381   __ fcompp();
382   __ fwait();
383   __ frndint();
384   __ fninit();
385   __ nop();
386
387   __ fldcw(Operand(ebx, ecx, times_4, 10000));
388   __ fnstcw(Operand(ebx, ecx, times_4, 10000));
389   __ fadd_d(Operand(ebx, ecx, times_4, 10000));
390   __ fnsave(Operand(ebx, ecx, times_4, 10000));
391   __ frstor(Operand(ebx, ecx, times_4, 10000));
392
393   // xchg.
394   {
395     __ xchg(eax, eax);
396     __ xchg(eax, ebx);
397     __ xchg(ebx, ebx);
398     __ xchg(ebx, Operand(esp, 12));
399   }
400
401   // Nop instructions
402   for (int i = 0; i < 16; i++) {
403     __ Nop(i);
404   }
405
406   __ ret(0);
407
408   CodeDesc desc;
409   assm.GetCode(&desc);
410   Handle<Code> code = isolate->factory()->NewCode(
411       desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
412   USE(code);
413 #ifdef OBJECT_PRINT
414   OFStream os(stdout);
415   code->Print(os);
416   byte* begin = code->instruction_start();
417   byte* end = begin + code->instruction_size();
418   disasm::Disassembler::Disassemble(stdout, begin, end);
419 #endif
420 }
421
422 #undef __