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

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

Issue 7480011: rename HCompareIDAndBranch to HCompareNumbersAndBranch (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 4 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/arm/lithium-arm.h ('k') | src/hydrogen.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 1392 matching lines...) Expand 10 before | Expand all | Expand 10 after
1403 ASSERT(instr->left()->representation().IsTagged()); 1403 ASSERT(instr->left()->representation().IsTagged());
1404 ASSERT(instr->right()->representation().IsTagged()); 1404 ASSERT(instr->right()->representation().IsTagged());
1405 bool reversed = (op == Token::GT || op == Token::LTE); 1405 bool reversed = (op == Token::GT || op == Token::LTE);
1406 LOperand* left = UseFixed(instr->left(), reversed ? r0 : r1); 1406 LOperand* left = UseFixed(instr->left(), reversed ? r0 : r1);
1407 LOperand* right = UseFixed(instr->right(), reversed ? r1 : r0); 1407 LOperand* right = UseFixed(instr->right(), reversed ? r1 : r0);
1408 LCmpT* result = new LCmpT(left, right); 1408 LCmpT* result = new LCmpT(left, right);
1409 return MarkAsCall(DefineFixed(result, r0), instr); 1409 return MarkAsCall(DefineFixed(result, r0), instr);
1410 } 1410 }
1411 1411
1412 1412
1413 LInstruction* LChunkBuilder::DoCompareIDAndBranch( 1413 LInstruction* LChunkBuilder::DoCompareNumbersAndBranch(
1414 HCompareIDAndBranch* instr) { 1414 HCompareNumbersAndBranch* instr) {
1415 Representation r = instr->GetInputRepresentation(); 1415 Representation r = instr->GetInputRepresentation();
1416 if (r.IsInteger32()) { 1416 if (r.IsInteger32()) {
1417 ASSERT(instr->left()->representation().IsInteger32()); 1417 ASSERT(instr->left()->representation().IsInteger32());
1418 ASSERT(instr->right()->representation().IsInteger32()); 1418 ASSERT(instr->right()->representation().IsInteger32());
1419 LOperand* left = UseRegisterAtStart(instr->left()); 1419 LOperand* left = UseRegisterAtStart(instr->left());
1420 LOperand* right = UseRegisterAtStart(instr->right()); 1420 LOperand* right = UseRegisterAtStart(instr->right());
1421 return new LCmpIDAndBranch(left, right); 1421 return new LCmpIDAndBranch(left, right);
1422 } else { 1422 } else {
1423 ASSERT(r.IsDouble()); 1423 ASSERT(r.IsDouble());
1424 ASSERT(instr->left()->representation().IsDouble()); 1424 ASSERT(instr->left()->representation().IsDouble());
(...skipping 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
2188 2188
2189 LInstruction* LChunkBuilder::DoIn(HIn* instr) { 2189 LInstruction* LChunkBuilder::DoIn(HIn* instr) {
2190 LOperand* key = UseRegisterAtStart(instr->key()); 2190 LOperand* key = UseRegisterAtStart(instr->key());
2191 LOperand* object = UseRegisterAtStart(instr->object()); 2191 LOperand* object = UseRegisterAtStart(instr->object());
2192 LIn* result = new LIn(key, object); 2192 LIn* result = new LIn(key, object);
2193 return MarkAsCall(DefineFixed(result, r0), instr); 2193 return MarkAsCall(DefineFixed(result, r0), instr);
2194 } 2194 }
2195 2195
2196 2196
2197 } } // namespace v8::internal 2197 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/lithium-arm.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698