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

Side by Side Diff: src/ia32/lithium-ia32.h

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/hydrogen-instructions.cc ('k') | src/ia32/lithium-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 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 556
557 557
558 class LCmpIDAndBranch: public LControlInstruction<2, 0> { 558 class LCmpIDAndBranch: public LControlInstruction<2, 0> {
559 public: 559 public:
560 LCmpIDAndBranch(LOperand* left, LOperand* right) { 560 LCmpIDAndBranch(LOperand* left, LOperand* right) {
561 inputs_[0] = left; 561 inputs_[0] = left;
562 inputs_[1] = right; 562 inputs_[1] = right;
563 } 563 }
564 564
565 DECLARE_CONCRETE_INSTRUCTION(CmpIDAndBranch, "cmp-id-and-branch") 565 DECLARE_CONCRETE_INSTRUCTION(CmpIDAndBranch, "cmp-id-and-branch")
566 DECLARE_HYDROGEN_ACCESSOR(CompareIDAndBranch) 566 DECLARE_HYDROGEN_ACCESSOR(CompareNumbersAndBranch)
567 567
568 Token::Value op() const { return hydrogen()->token(); } 568 Token::Value op() const { return hydrogen()->token(); }
569 bool is_double() const { 569 bool is_double() const {
570 return hydrogen()->GetInputRepresentation().IsDouble(); 570 return hydrogen()->GetInputRepresentation().IsDouble();
571 } 571 }
572 572
573 virtual void PrintDataTo(StringStream* stream); 573 virtual void PrintDataTo(StringStream* stream);
574 }; 574 };
575 575
576 576
(...skipping 1715 matching lines...) Expand 10 before | Expand all | Expand 10 after
2292 2292
2293 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2293 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2294 }; 2294 };
2295 2295
2296 #undef DECLARE_HYDROGEN_ACCESSOR 2296 #undef DECLARE_HYDROGEN_ACCESSOR
2297 #undef DECLARE_CONCRETE_INSTRUCTION 2297 #undef DECLARE_CONCRETE_INSTRUCTION
2298 2298
2299 } } // namespace v8::internal 2299 } } // namespace v8::internal
2300 2300
2301 #endif // V8_IA32_LITHIUM_IA32_H_ 2301 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/lithium-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698