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

Side by Side Diff: src/hydrogen.h

Issue 1094813002: Version 4.3.61.8 (cherry-pick) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@4.3
Patch Set: Created 5 years, 8 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
« no previous file with comments | « include/v8-version.h ('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 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_HYDROGEN_H_ 5 #ifndef V8_HYDROGEN_H_
6 #define V8_HYDROGEN_H_ 6 #define V8_HYDROGEN_H_
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/accessors.h" 10 #include "src/accessors.h"
(...skipping 2627 matching lines...) Expand 10 before | Expand all | Expand 10 after
2638 } 2638 }
2639 bool IsTransitionToData() const { 2639 bool IsTransitionToData() const {
2640 return IsTransition() && details_.type() == DATA; 2640 return IsTransition() && details_.type() == DATA;
2641 } 2641 }
2642 2642
2643 Zone* zone() { return builder_->zone(); } 2643 Zone* zone() { return builder_->zone(); }
2644 CompilationInfo* top_info() { return builder_->top_info(); } 2644 CompilationInfo* top_info() { return builder_->top_info(); }
2645 CompilationInfo* current_info() { return builder_->current_info(); } 2645 CompilationInfo* current_info() { return builder_->current_info(); }
2646 2646
2647 bool LoadResult(Handle<Map> map); 2647 bool LoadResult(Handle<Map> map);
2648 void LoadFieldMaps(Handle<Map> map); 2648 bool LoadFieldMaps(Handle<Map> map);
2649 bool LookupDescriptor(); 2649 bool LookupDescriptor();
2650 bool LookupInPrototypes(); 2650 bool LookupInPrototypes();
2651 bool IsIntegerIndexedExotic(); 2651 bool IsIntegerIndexedExotic();
2652 bool IsCompatible(PropertyAccessInfo* other); 2652 bool IsCompatible(PropertyAccessInfo* other);
2653 2653
2654 void GeneralizeRepresentation(Representation r) { 2654 void GeneralizeRepresentation(Representation r) {
2655 access_ = access_.WithRepresentation( 2655 access_ = access_.WithRepresentation(
2656 access_.representation().generalize(r)); 2656 access_.representation().generalize(r));
2657 } 2657 }
2658 2658
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
3032 } 3032 }
3033 3033
3034 private: 3034 private:
3035 HGraphBuilder* builder_; 3035 HGraphBuilder* builder_;
3036 }; 3036 };
3037 3037
3038 3038
3039 } } // namespace v8::internal 3039 } } // namespace v8::internal
3040 3040
3041 #endif // V8_HYDROGEN_H_ 3041 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « include/v8-version.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698