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

/external/v8/src/compiler/
H A Djs-call-reducer.cc121 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
126 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
450 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
455 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
459 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
475 for (int i = start_index + 1; i < state_info.parameter_count(); ++i) {
H A Djs-inlining.cc228 const FrameStateFunctionInfo* state_info = local
233 bailout_id, OutputFrameStateCombine::Ignore(), state_info);
266 const FrameStateFunctionInfo* state_info = local
271 BailoutId(-1), OutputFrameStateCombine::Ignore(), state_info);
H A Djs-create-lowering.cc295 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
305 if (state_info.shared_info().ToHandle(&shared_info)) {
352 if (state_info.shared_info().ToHandle(&shared_info)) {
391 if (state_info.shared_info().ToHandle(&shared_info)) {
435 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
500 if (!state_info.shared_info().ToHandle(&shared)) return NoChange();
986 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
987 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
1010 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
1011 int argument_count = state_info
1041 FrameStateInfo state_info = OpParameter<FrameStateInfo>(frame_state); local
[all...]
H A Dinstruction-selector.cc2594 FrameStateInfo state_info = OpParameter<FrameStateInfo>(state); local
2603 DCHECK_EQ(parameters, state_info.parameter_count());
2604 DCHECK_EQ(locals, state_info.local_count());
2613 instruction_zone(), state_info.type(), state_info.bailout_id(),
2614 state_info.state_combine(), parameters, locals, stack,
2615 state_info.shared_info(), outer_state);
/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];
540 base = state_info.base;

Completed in 223 milliseconds