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

Side by Side Diff: src/hydrogen.h

Issue 98673003: Fix HInnerAllocatedObject to use an HValue for the offset. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « src/code-stubs-hydrogen.cc ('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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1700 matching lines...) Expand 10 before | Expand all | Expand 10 after
1711 ElementsKind kind, 1711 ElementsKind kind,
1712 int length); 1712 int length);
1713 1713
1714 HValue* BuildElementIndexHash(HValue* index); 1714 HValue* BuildElementIndexHash(HValue* index);
1715 1715
1716 void BuildCompareNil( 1716 void BuildCompareNil(
1717 HValue* value, 1717 HValue* value,
1718 Handle<Type> type, 1718 Handle<Type> type,
1719 HIfContinuation* continuation); 1719 HIfContinuation* continuation);
1720 1720
1721 HValue* BuildCreateAllocationMemento(HValue* previous_object, 1721 void BuildCreateAllocationMemento(HValue* previous_object,
1722 int previous_object_size, 1722 HValue* previous_object_size,
1723 HValue* payload); 1723 HValue* payload);
1724 1724
1725 HInstruction* BuildConstantMapCheck(Handle<JSObject> constant, 1725 HInstruction* BuildConstantMapCheck(Handle<JSObject> constant,
1726 CompilationInfo* info); 1726 CompilationInfo* info);
1727 HInstruction* BuildCheckPrototypeMaps(Handle<JSObject> prototype, 1727 HInstruction* BuildCheckPrototypeMaps(Handle<JSObject> prototype,
1728 Handle<JSObject> holder); 1728 Handle<JSObject> holder);
1729 1729
1730 HInstruction* BuildGetNativeContext(); 1730 HInstruction* BuildGetNativeContext();
1731 HInstruction* BuildGetArrayFunction(); 1731 HInstruction* BuildGetArrayFunction();
1732 1732
1733 protected: 1733 protected:
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after
2630 } 2630 }
2631 2631
2632 private: 2632 private:
2633 HGraphBuilder* builder_; 2633 HGraphBuilder* builder_;
2634 }; 2634 };
2635 2635
2636 2636
2637 } } // namespace v8::internal 2637 } } // namespace v8::internal
2638 2638
2639 #endif // V8_HYDROGEN_H_ 2639 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/code-stubs-hydrogen.cc ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698