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

Side by Side Diff: src/mips/lithium-codegen-mips.cc

Issue 19562003: Add support for IncrementCounter in Hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Using HConstant, HLoadKeyed, HAdd and HStoreKeyed. Created 7 years, 5 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1614 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 1625
1626 1626
1627 void LCodeGen::DoConstantD(LConstantD* instr) { 1627 void LCodeGen::DoConstantD(LConstantD* instr) {
1628 ASSERT(instr->result()->IsDoubleRegister()); 1628 ASSERT(instr->result()->IsDoubleRegister());
1629 DoubleRegister result = ToDoubleRegister(instr->result()); 1629 DoubleRegister result = ToDoubleRegister(instr->result());
1630 double v = instr->value(); 1630 double v = instr->value();
1631 __ Move(result, v); 1631 __ Move(result, v);
1632 } 1632 }
1633 1633
1634 1634
1635 void LCodeGen::DoConstantE(LConstantE* instr) {
1636 __ li(ToRegister(instr->result()), Operand(instr->value()));
1637 }
1638
1639
1635 void LCodeGen::DoConstantT(LConstantT* instr) { 1640 void LCodeGen::DoConstantT(LConstantT* instr) {
1636 Handle<Object> value = instr->value(); 1641 Handle<Object> value = instr->value();
1637 AllowDeferredHandleDereference smi_check; 1642 AllowDeferredHandleDereference smi_check;
1638 if (value->IsSmi()) { 1643 if (value->IsSmi()) {
1639 __ li(ToRegister(instr->result()), Operand(value)); 1644 __ li(ToRegister(instr->result()), Operand(value));
1640 } else { 1645 } else {
1641 __ LoadHeapObject(ToRegister(instr->result()), 1646 __ LoadHeapObject(ToRegister(instr->result()),
1642 Handle<HeapObject>::cast(value)); 1647 Handle<HeapObject>::cast(value));
1643 } 1648 }
1644 } 1649 }
(...skipping 4157 matching lines...) Expand 10 before | Expand all | Expand 10 after
5802 __ Subu(scratch, result, scratch); 5807 __ Subu(scratch, result, scratch);
5803 __ lw(result, FieldMemOperand(scratch, 5808 __ lw(result, FieldMemOperand(scratch,
5804 FixedArray::kHeaderSize - kPointerSize)); 5809 FixedArray::kHeaderSize - kPointerSize));
5805 __ bind(&done); 5810 __ bind(&done);
5806 } 5811 }
5807 5812
5808 5813
5809 #undef __ 5814 #undef __
5810 5815
5811 } } // namespace v8::internal 5816 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698