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

Side by Side Diff: src/ia32/full-codegen-ia32.cc

Issue 6066010: Merge 6095:6198 from bleeding_edge to experimental/gc. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 11 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/ia32/debug-ia32.cc ('k') | src/ia32/ic-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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 UNREACHABLE(); // Not used on IA32. 374 UNREACHABLE(); // Not used on IA32.
375 } 375 }
376 376
377 377
378 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const { 378 void FullCodeGenerator::EffectContext::Plug(Handle<Object> lit) const {
379 } 379 }
380 380
381 381
382 void FullCodeGenerator::AccumulatorValueContext::Plug( 382 void FullCodeGenerator::AccumulatorValueContext::Plug(
383 Handle<Object> lit) const { 383 Handle<Object> lit) const {
384 __ mov(result_register(), lit); 384 __ Set(result_register(), Immediate(lit));
385 } 385 }
386 386
387 387
388 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const { 388 void FullCodeGenerator::StackValueContext::Plug(Handle<Object> lit) const {
389 // Immediates can be pushed directly. 389 // Immediates can be pushed directly.
390 __ push(Immediate(lit)); 390 __ push(Immediate(lit));
391 } 391 }
392 392
393 393
394 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const { 394 void FullCodeGenerator::TestContext::Plug(Handle<Object> lit) const {
(...skipping 3883 matching lines...) Expand 10 before | Expand all | Expand 10 after
4278 // And return. 4278 // And return.
4279 __ ret(0); 4279 __ ret(0);
4280 } 4280 }
4281 4281
4282 4282
4283 #undef __ 4283 #undef __
4284 4284
4285 } } // namespace v8::internal 4285 } } // namespace v8::internal
4286 4286
4287 #endif // V8_TARGET_ARCH_IA32 4287 #endif // V8_TARGET_ARCH_IA32
OLDNEW
« no previous file with comments | « src/ia32/debug-ia32.cc ('k') | src/ia32/ic-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698