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

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

Issue 12226112: Infrastructure classes for evaluating numeric relations between values. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed review comments. Created 7 years, 10 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 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1583 LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) { 1583 LInstruction* LChunkBuilder::DoSeqStringSetChar(HSeqStringSetChar* instr) {
1584 LOperand* string = UseRegister(instr->string()); 1584 LOperand* string = UseRegister(instr->string());
1585 LOperand* index = UseRegister(instr->index()); 1585 LOperand* index = UseRegister(instr->index());
1586 LOperand* value = UseRegister(instr->value()); 1586 LOperand* value = UseRegister(instr->value());
1587 LSeqStringSetChar* result = 1587 LSeqStringSetChar* result =
1588 new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value); 1588 new(zone()) LSeqStringSetChar(instr->encoding(), string, index, value);
1589 return DefineAsRegister(result); 1589 return DefineAsRegister(result);
1590 } 1590 }
1591 1591
1592 1592
1593 LInstruction* LChunkBuilder::DoNumericConstraint(HNumericConstraint* instr) {
1594 UNREACHABLE();
1595 return NULL;
1596 }
1597
1598
1593 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) { 1599 LInstruction* LChunkBuilder::DoBoundsCheck(HBoundsCheck* instr) {
1594 LOperand* value = UseRegisterOrConstantAtStart(instr->index()); 1600 LOperand* value = UseRegisterOrConstantAtStart(instr->index());
1595 LOperand* length = UseRegister(instr->length()); 1601 LOperand* length = UseRegister(instr->length());
1596 return AssignEnvironment(new(zone()) LBoundsCheck(value, length)); 1602 return AssignEnvironment(new(zone()) LBoundsCheck(value, length));
1597 } 1603 }
1598 1604
1599 1605
1600 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) { 1606 LInstruction* LChunkBuilder::DoAbnormalExit(HAbnormalExit* instr) {
1601 // The control instruction marking the end of a block that completed 1607 // The control instruction marking the end of a block that completed
1602 // abruptly (e.g., threw an exception). There is nothing specific to do. 1608 // abruptly (e.g., threw an exception). There is nothing specific to do.
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
2326 2332
2327 2333
2328 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { 2334 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) {
2329 LOperand* object = UseRegister(instr->object()); 2335 LOperand* object = UseRegister(instr->object());
2330 LOperand* index = UseRegister(instr->index()); 2336 LOperand* index = UseRegister(instr->index());
2331 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index)); 2337 return DefineAsRegister(new(zone()) LLoadFieldByIndex(object, index));
2332 } 2338 }
2333 2339
2334 2340
2335 } } // namespace v8::internal 2341 } } // namespace v8::internal
OLDNEW
« src/ia32/lithium-ia32.cc ('K') | « src/ia32/lithium-ia32.cc ('k') | src/x64/lithium-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698