Searched defs:state_info (Results 1 - 7 of 7) sorted by relevance

/external/v8/src/compiler/
H A Djs-call-reducer.cc139 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
144 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
148 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
155 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
H A Djs-inlining.cc185 const FrameStateFunctionInfo* state_info = local
190 BailoutId(-1), OutputFrameStateCombine::Ignore(), state_info);
223 const FrameStateFunctionInfo* state_info = local
228 BailoutId(-1), OutputFrameStateCombine::Ignore(), state_info);
H A Djs-create-lowering.cc285 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
294 if (!state_info.shared_info().ToHandle(&shared_info) ||
341 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
416 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
773 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
774 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
796 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
797 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
826 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
827 int argument_count = state_info
[all...]
H A Dinstruction-selector.cc1913 FrameStateInfo state_info = OpParameter<FrameStateInfo>(state); local
1922 DCHECK_EQ(parameters, state_info.parameter_count());
1923 DCHECK_EQ(locals, state_info.local_count());
1932 instruction_zone(), state_info.type(), state_info.bailout_id(),
1933 state_info.state_combine(), parameters, locals, stack,
1934 state_info.shared_info(), outer_state);
H A Djs-typed-lowering.cc233 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
235 if (state_info.bailout_id() == BailoutId::None()) {
241 if (state_info.state_combine().kind() == OutputFrameStateCombine::kPokeAt &&
242 state_info.state_combine().GetOffsetToPokeAt() == 1) {
250 state_info.bailout_id(), OutputFrameStateCombine::PokeAt(1),
251 state_info.function_info());
263 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
265 if (state_info.bailout_id() == BailoutId::None()) {
273 state_info.bailout_id(), OutputFrameStateCombine::PokeAt(0),
274 state_info
[all...]
/external/v8/test/unittests/compiler/
H A Dliveness-analyzer-unittest.cc61 const FrameStateFunctionInfo* state_info = local
67 BailoutId(ast_num), OutputFrameStateCombine::Ignore(), state_info);
103 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); variable
104 int ast_num = state_info.bailout_id().ToInt();
/external/mksh/src/
H A Dlex.c150 if (++statep == state_info.end) \
151 statep = push_state_i(&state_info, statep); \
156 if (--statep == state_info.base) \
157 statep = pop_state_i(&state_info, statep); \
194 State_info state_info; local
205 state_info.base = states;
206 state_info.end = &state_info.base[STATE_BSIZE];
557 base = state_info.base;

Completed in 215 milliseconds