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

Side by Side Diff: src/ia32/assembler-ia32.cc

Issue 12300018: Made Isolate a mandatory parameter for everything Handle-related. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixed CreateCode calls. Be nicer to MIPS. Created 7 years, 9 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 | « src/hydrogen-instructions.cc ('k') | src/ia32/full-codegen-ia32.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 2469 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 EMIT(0xC0 | dst.code() << 3 | src.code()); 2480 EMIT(0xC0 | dst.code() << 3 | src.code());
2481 } 2481 }
2482 2482
2483 2483
2484 void Assembler::emit_sse_operand(Register dst, XMMRegister src) { 2484 void Assembler::emit_sse_operand(Register dst, XMMRegister src) {
2485 EMIT(0xC0 | dst.code() << 3 | src.code()); 2485 EMIT(0xC0 | dst.code() << 3 | src.code());
2486 } 2486 }
2487 2487
2488 2488
2489 void Assembler::Print() { 2489 void Assembler::Print() {
2490 Disassembler::Decode(stdout, buffer_, pc_); 2490 Disassembler::Decode(isolate(), stdout, buffer_, pc_);
2491 } 2491 }
2492 2492
2493 2493
2494 void Assembler::RecordJSReturn() { 2494 void Assembler::RecordJSReturn() {
2495 positions_recorder()->WriteRecordedPositions(); 2495 positions_recorder()->WriteRecordedPositions();
2496 EnsureSpace ensure_space(this); 2496 EnsureSpace ensure_space(this);
2497 RecordRelocInfo(RelocInfo::JS_RETURN); 2497 RecordRelocInfo(RelocInfo::JS_RETURN);
2498 } 2498 }
2499 2499
2500 2500
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
2687 fprintf(coverage_log, "%s\n", file_line); 2687 fprintf(coverage_log, "%s\n", file_line);
2688 fflush(coverage_log); 2688 fflush(coverage_log);
2689 } 2689 }
2690 } 2690 }
2691 2691
2692 #endif 2692 #endif
2693 2693
2694 } } // namespace v8::internal 2694 } } // namespace v8::internal
2695 2695
2696 #endif // V8_TARGET_ARCH_IA32 2696 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/full-codegen-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698