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

Side by Side Diff: test/cctest/test-disasm-ia32.cc

Issue 7060010: Merge bleeding edge into the GC branch up to 7948. The asserts (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-disasm-arm.cc ('k') | test/cctest/test-disasm-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 2007-2008 the V8 project authors. All rights reserved. 1 // Copyright 2007-2008 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 __ j(above, &Ljcc); 321 __ j(above, &Ljcc);
322 __ j(sign, &Ljcc); 322 __ j(sign, &Ljcc);
323 __ j(not_sign, &Ljcc); 323 __ j(not_sign, &Ljcc);
324 __ j(parity_even, &Ljcc); 324 __ j(parity_even, &Ljcc);
325 __ j(parity_odd, &Ljcc); 325 __ j(parity_odd, &Ljcc);
326 __ j(less, &Ljcc); 326 __ j(less, &Ljcc);
327 __ j(greater_equal, &Ljcc); 327 __ j(greater_equal, &Ljcc);
328 __ j(less_equal, &Ljcc); 328 __ j(less_equal, &Ljcc);
329 __ j(greater, &Ljcc); 329 __ j(greater, &Ljcc);
330 330
331 // checking hints
332 __ j(zero, &Ljcc, taken);
333 __ j(zero, &Ljcc, not_taken);
334
335 // __ mov(Operand::StaticVariable(Isolate::handler_address()), eax);
336 // 0xD9 instructions 331 // 0xD9 instructions
337 __ nop(); 332 __ nop();
338 333
339 __ fld(1); 334 __ fld(1);
340 __ fld1(); 335 __ fld1();
341 __ fldz(); 336 __ fldz();
342 __ fldpi(); 337 __ fldpi();
343 __ fabs(); 338 __ fabs();
344 __ fchs(); 339 __ fchs();
345 __ fprem(); 340 __ fprem();
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 CHECK(code->IsCode()); 460 CHECK(code->IsCode());
466 #ifdef OBJECT_PRINT 461 #ifdef OBJECT_PRINT
467 Code::cast(code)->Print(); 462 Code::cast(code)->Print();
468 byte* begin = Code::cast(code)->instruction_start(); 463 byte* begin = Code::cast(code)->instruction_start();
469 byte* end = begin + Code::cast(code)->instruction_size(); 464 byte* end = begin + Code::cast(code)->instruction_size();
470 disasm::Disassembler::Disassemble(stdout, begin, end); 465 disasm::Disassembler::Disassemble(stdout, begin, end);
471 #endif 466 #endif
472 } 467 }
473 468
474 #undef __ 469 #undef __
OLDNEW
« no previous file with comments | « test/cctest/test-disasm-arm.cc ('k') | test/cctest/test-disasm-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698