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

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

Issue 7003054: Fix bug with GVN on array loads. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: fixed lint errors Created 9 years, 6 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 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 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
970 } 970 }
971 971
972 DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal, 972 DECLARE_CONCRETE_INSTRUCTION(InstanceOfKnownGlobal,
973 "instance-of-known-global") 973 "instance-of-known-global")
974 DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal) 974 DECLARE_HYDROGEN_ACCESSOR(InstanceOfKnownGlobal)
975 975
976 Handle<JSFunction> function() const { return hydrogen()->function(); } 976 Handle<JSFunction> function() const { return hydrogen()->function(); }
977 }; 977 };
978 978
979 979
980 class LBoundsCheck: public LTemplateInstruction<0, 2, 0> { 980 class LBoundsCheck: public LTemplateInstruction<1, 2, 0> {
981 public: 981 public:
982 LBoundsCheck(LOperand* index, LOperand* length) { 982 LBoundsCheck(LOperand* index, LOperand* length) {
983 inputs_[0] = index; 983 inputs_[0] = index;
984 inputs_[1] = length; 984 inputs_[1] = length;
985 } 985 }
986 986
987 LOperand* index() { return inputs_[0]; } 987 LOperand* index() { return inputs_[0]; }
988 LOperand* length() { return inputs_[1]; } 988 LOperand* length() { return inputs_[1]; }
989 989
990 DECLARE_CONCRETE_INSTRUCTION(BoundsCheck, "bounds-check") 990 DECLARE_CONCRETE_INSTRUCTION(BoundsCheck, "bounds-check")
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2393 2393
2394 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder); 2394 DISALLOW_COPY_AND_ASSIGN(LChunkBuilder);
2395 }; 2395 };
2396 2396
2397 #undef DECLARE_HYDROGEN_ACCESSOR 2397 #undef DECLARE_HYDROGEN_ACCESSOR
2398 #undef DECLARE_CONCRETE_INSTRUCTION 2398 #undef DECLARE_CONCRETE_INSTRUCTION
2399 2399
2400 } } // namespace v8::internal 2400 } } // namespace v8::internal
2401 2401
2402 #endif // V8_IA32_LITHIUM_IA32_H_ 2402 #endif // V8_IA32_LITHIUM_IA32_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698