Home | History | Annotate | Download | only in compiler

Lines Matching full:const

39   Kind kind() const { return kind_; }
40 size_t GetPushCount() const {
44 size_t GetOffsetToPokeAt() const {
49 bool IsOutputIgnored() const {
53 size_t ConsumedOutputCount() const {
57 bool operator==(OutputFrameStateCombine const& other) const {
60 bool operator!=(OutputFrameStateCombine const& other) const {
64 friend size_t hash_value(OutputFrameStateCombine const&);
66 OutputFrameStateCombine const&);
72 Kind const kind_;
73 size_t const parameter_;
104 int local_count() const { return local_count_; }
105 int parameter_count() const { return parameter_count_; }
106 Handle<SharedFunctionInfo> shared_info() const { return shared_info_; }
107 FrameStateType type() const { return type_; }
108 ContextCallingMode context_calling_mode() const {
118 FrameStateType const type_;
119 int const parameter_count_;
120 int const local_count_;
121 Handle<SharedFunctionInfo> const shared_info_;
129 const FrameStateFunctionInfo* info)
134 FrameStateType type() const {
138 BailoutId bailout_id() const { return bailout_id_; }
139 OutputFrameStateCombine state_combine() const { return frame_state_combine_; }
140 MaybeHandle<SharedFunctionInfo> shared_info() const {
144 int parameter_count() const {
147 int local_count() const {
150 const FrameStateFunctionInfo* function_info() const { return info_; }
153 BailoutId const bailout_id_;
154 OutputFrameStateCombine const frame_state_combine_;
155 const FrameStateFunctionInfo* const info_;
158 bool operator==(FrameStateInfo const&, FrameStateInfo const&);
159 bool operator!=(FrameStateInfo const&, FrameStateInfo const&);
161 size_t hash_value(FrameStateInfo const&);
163 std::ostream& operator<<(std::ostream&, FrameStateInfo const&);
165 static const int kFrameStateParametersInput = 0;
166 static const int kFrameStateLocalsInput = 1;
167 static const int kFrameStateStackInput = 2;
168 static const int kFrameStateContextInput = 3;
169 static const int kFrameStateFunctionInput = 4;
170 static const int kFrameStateOuterStateInput = 5;
171 static const int kFrameStateInputCount = kFrameStateOuterStateInput + 1;