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

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

Issue 2866008: [Isolates] Move contents of Top into Isolate.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: ensure we're synced Created 10 years, 6 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-debug.cc ('k') | test/cctest/test-heap.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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 __ j(parity_odd, &Ljcc); 319 __ j(parity_odd, &Ljcc);
320 __ j(less, &Ljcc); 320 __ j(less, &Ljcc);
321 __ j(greater_equal, &Ljcc); 321 __ j(greater_equal, &Ljcc);
322 __ j(less_equal, &Ljcc); 322 __ j(less_equal, &Ljcc);
323 __ j(greater, &Ljcc); 323 __ j(greater, &Ljcc);
324 324
325 // checking hints 325 // checking hints
326 __ j(zero, &Ljcc, taken); 326 __ j(zero, &Ljcc, taken);
327 __ j(zero, &Ljcc, not_taken); 327 __ j(zero, &Ljcc, not_taken);
328 328
329 // __ mov(Operand::StaticVariable(Top::handler_address()), eax); 329 // __ mov(Operand::StaticVariable(Isolate::handler_address()), eax);
330 // 0xD9 instructions 330 // 0xD9 instructions
331 __ nop(); 331 __ nop();
332 332
333 __ fld1(); 333 __ fld1();
334 __ fldz(); 334 __ fldz();
335 __ fabs(); 335 __ fabs();
336 __ fchs(); 336 __ fchs();
337 __ fprem(); 337 __ fprem();
338 __ fprem1(); 338 __ fprem1();
339 __ fincstp(); 339 __ fincstp();
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 CHECK(code->IsCode()); 419 CHECK(code->IsCode());
420 #ifdef DEBUG 420 #ifdef DEBUG
421 Code::cast(code)->Print(); 421 Code::cast(code)->Print();
422 byte* begin = Code::cast(code)->instruction_start(); 422 byte* begin = Code::cast(code)->instruction_start();
423 byte* end = begin + Code::cast(code)->instruction_size(); 423 byte* end = begin + Code::cast(code)->instruction_size();
424 disasm::Disassembler::Disassemble(stdout, begin, end); 424 disasm::Disassembler::Disassemble(stdout, begin, end);
425 #endif 425 #endif
426 } 426 }
427 427
428 #undef __ 428 #undef __
OLDNEW
« no previous file with comments | « test/cctest/test-debug.cc ('k') | test/cctest/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698