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

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

Issue 6201004: ARM: Implement ClassOf in the lithium arm backend. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 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-codegen-arm.cc ('k') | no next file » | 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 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 : LUnaryOperation<1>(value), temporary_(temp) {} 891 : LUnaryOperation<1>(value), temporary_(temp) {}
892 892
893 DECLARE_CONCRETE_INSTRUCTION(ClassOfTest, "class-of-test") 893 DECLARE_CONCRETE_INSTRUCTION(ClassOfTest, "class-of-test")
894 DECLARE_HYDROGEN_ACCESSOR(ClassOfTest) 894 DECLARE_HYDROGEN_ACCESSOR(ClassOfTest)
895 895
896 virtual void PrintDataTo(StringStream* stream); 896 virtual void PrintDataTo(StringStream* stream);
897 897
898 LOperand* temporary() { return temporary_; } 898 LOperand* temporary() { return temporary_; }
899 899
900 private: 900 private:
901 LOperand *temporary_; 901 LOperand* temporary_;
902 }; 902 };
903 903
904 904
905 class LClassOfTestAndBranch: public LClassOfTest { 905 class LClassOfTestAndBranch: public LClassOfTest {
906 public: 906 public:
907 LClassOfTestAndBranch(LOperand* value, 907 LClassOfTestAndBranch(LOperand* value,
908 LOperand* temporary, 908 LOperand* temporary,
909 LOperand* temporary2, 909 LOperand* temporary2,
910 int true_block_id, 910 int true_block_id,
911 int false_block_id) 911 int false_block_id)
(...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after
2111 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2111 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2112 }; 2112 };
2113 2113
2114 #undef DECLARE_HYDROGEN_ACCESSOR 2114 #undef DECLARE_HYDROGEN_ACCESSOR
2115 #undef DECLARE_INSTRUCTION 2115 #undef DECLARE_INSTRUCTION
2116 #undef DECLARE_CONCRETE_INSTRUCTION 2116 #undef DECLARE_CONCRETE_INSTRUCTION
2117 2117
2118 } } // namespace v8::internal 2118 } } // namespace v8::internal
2119 2119
2120 #endif // V8_IA32_LITHIUM_IA32_H_ 2120 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698