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

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

Issue 7001025: Remove support for branch hints from the IA32 and X64 assembler. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
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-assembler-ia32.cc ('k') | no next file » | 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 __ j(above, &Ljcc); 323 __ j(above, &Ljcc);
324 __ j(sign, &Ljcc); 324 __ j(sign, &Ljcc);
325 __ j(not_sign, &Ljcc); 325 __ j(not_sign, &Ljcc);
326 __ j(parity_even, &Ljcc); 326 __ j(parity_even, &Ljcc);
327 __ j(parity_odd, &Ljcc); 327 __ j(parity_odd, &Ljcc);
328 __ j(less, &Ljcc); 328 __ j(less, &Ljcc);
329 __ j(greater_equal, &Ljcc); 329 __ j(greater_equal, &Ljcc);
330 __ j(less_equal, &Ljcc); 330 __ j(less_equal, &Ljcc);
331 __ j(greater, &Ljcc); 331 __ j(greater, &Ljcc);
332 332
333 // checking hints
334 __ j(zero, &Ljcc, taken);
335 __ j(zero, &Ljcc, not_taken);
336
337 // __ mov(Operand::StaticVariable(Isolate::handler_address()), eax);
338 // 0xD9 instructions 333 // 0xD9 instructions
339 __ nop(); 334 __ nop();
340 335
341 __ fld(1); 336 __ fld(1);
342 __ fld1(); 337 __ fld1();
343 __ fldz(); 338 __ fldz();
344 __ fldpi(); 339 __ fldpi();
345 __ fabs(); 340 __ fabs();
346 __ fchs(); 341 __ fchs();
347 __ fprem(); 342 __ fprem();
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 CHECK(code->IsCode()); 462 CHECK(code->IsCode());
468 #ifdef OBJECT_PRINT 463 #ifdef OBJECT_PRINT
469 Code::cast(code)->Print(); 464 Code::cast(code)->Print();
470 byte* begin = Code::cast(code)->instruction_start(); 465 byte* begin = Code::cast(code)->instruction_start();
471 byte* end = begin + Code::cast(code)->instruction_size(); 466 byte* end = begin + Code::cast(code)->instruction_size();
472 disasm::Disassembler::Disassemble(stdout, begin, end); 467 disasm::Disassembler::Disassemble(stdout, begin, end);
473 #endif 468 #endif
474 } 469 }
475 470
476 #undef __ 471 #undef __
OLDNEW
« no previous file with comments | « test/cctest/test-assembler-ia32.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698