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

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

Issue 5767002: Merge math function ids and custom call generator ids. (Closed)
Patch Set: arm and x64 fixes. Created 10 years 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
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | src/objects-inl.h » ('J')
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 647 matching lines...) Expand 10 before | Expand all | Expand 10 after
658 658
659 class LUnaryMathOperation: public LUnaryOperation { 659 class LUnaryMathOperation: public LUnaryOperation {
660 public: 660 public:
661 explicit LUnaryMathOperation(LOperand* value) 661 explicit LUnaryMathOperation(LOperand* value)
662 : LUnaryOperation(value) { } 662 : LUnaryOperation(value) { }
663 663
664 DECLARE_CONCRETE_INSTRUCTION(UnaryMathOperation, "unary-math-operation") 664 DECLARE_CONCRETE_INSTRUCTION(UnaryMathOperation, "unary-math-operation")
665 DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation) 665 DECLARE_HYDROGEN_ACCESSOR(UnaryMathOperation)
666 666
667 virtual void PrintDataTo(StringStream* stream) const; 667 virtual void PrintDataTo(StringStream* stream) const;
668 MathFunctionId op() const { return hydrogen()->op(); } 668 BuiltinFunctionId op() const { return hydrogen()->op(); }
669 }; 669 };
670 670
671 671
672 class LCmpJSObjectEq: public LBinaryOperation { 672 class LCmpJSObjectEq: public LBinaryOperation {
673 public: 673 public:
674 LCmpJSObjectEq(LOperand* left, LOperand* right) 674 LCmpJSObjectEq(LOperand* left, LOperand* right)
675 : LBinaryOperation(left, right) {} 675 : LBinaryOperation(left, right) {}
676 676
677 DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEq, "cmp-jsobject-eq") 677 DECLARE_CONCRETE_INSTRUCTION(CmpJSObjectEq, "cmp-jsobject-eq")
678 }; 678 };
(...skipping 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after
2060 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2060 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2061 }; 2061 };
2062 2062
2063 #undef DECLARE_HYDROGEN_ACCESSOR 2063 #undef DECLARE_HYDROGEN_ACCESSOR
2064 #undef DECLARE_INSTRUCTION 2064 #undef DECLARE_INSTRUCTION
2065 #undef DECLARE_CONCRETE_INSTRUCTION 2065 #undef DECLARE_CONCRETE_INSTRUCTION
2066 2066
2067 } } // namespace v8::internal 2067 } } // namespace v8::internal
2068 2068
2069 #endif // V8_ARM_LITHIUM_ARM_H_ 2069 #endif // V8_ARM_LITHIUM_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/lithium-arm.cc » ('j') | src/objects-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698