Home | History | Annotate | Download | only in src

Lines Matching defs:output_frame

903   FrameDescription* output_frame =
905 output_frame->SetFrameType(StackFrame::JAVA_SCRIPT);
911 output_[frame_index] = output_frame;
935 output_frame->SetTop(top_address);
963 output_frame->SetCallerPc(output_offset, value);
982 output_frame->SetCallerFp(output_offset, value);
986 output_frame->SetFp(fp_value);
987 if (is_topmost) output_frame->SetRegister(fp_reg.code(), fp_value);
1008 output_frame->SetCallerConstantPool(output_offset, value);
1024 value = output_frame->GetFrameSlot(output_offset);
1038 output_frame->SetFrameSlot(output_offset, value);
1040 output_frame->SetContext(value);
1041 if (is_topmost) output_frame->SetRegister(context_reg.code(), value);
1056 output_frame->SetFrameSlot(output_offset, value);
1079 output_frame->SetPc(pc_value);
1085 output_frame->SetConstantPool(constant_pool_value);
1089 output_frame->SetRegister(constant_pool_reg.code(), constant_pool_value);
1095 output_frame->SetState(Smi::FromInt(state));
1108 output_frame->SetContinuation(
1128 FrameDescription* output_frame =
1130 output_frame->SetFrameType(StackFrame::ARGUMENTS_ADAPTOR);
1135 output_[frame_index] = output_frame;
1141 output_frame->SetTop(top_address);
1154 output_frame->SetCallerPc(output_offset, callers_pc);
1165 output_frame->SetCallerFp(output_offset, value);
1167 output_frame->SetFp(fp_value);
1179 output_frame->SetCallerConstantPool(output_offset, value);
1191 output_frame->SetFrameSlot(output_offset, context);
1202 output_frame->SetFrameSlot(output_offset, value);
1213 output_frame->SetFrameSlot(output_offset, value);
1229 output_frame->SetPc(pc_value);
1233 output_frame->SetConstantPool(constant_pool_value);
1254 FrameDescription* output_frame =
1256 output_frame->SetFrameType(StackFrame::CONSTRUCT);
1261 output_[frame_index] = output_frame;
1267 output_frame->SetTop(top_address);
1288 output_frame->SetCallerPc(output_offset, callers_pc);
1299 output_frame->SetCallerFp(output_offset, value);
1301 output_frame->SetFp(fp_value);
1313 output_frame->SetCallerConstantPool(output_offset, value);
1324 output_frame->SetFrameSlot(output_offset, value);
1335 output_frame->SetFrameSlot(output_offset, value);
1346 output_frame->SetFrameSlot(output_offset, value);
1357 output_frame->SetFrameSlot(output_offset, value);
1370 output_frame->SetFrameSlot(output_offset, value);
1382 value = output_frame->GetFrameSlot(output_frame_size - kPointerSize);
1383 output_frame->SetFrameSlot(output_offset, value);
1396 output_frame->SetPc(pc);
1400 output_frame->SetConstantPool(constant_pool_value);
1432 FrameDescription* output_frame =
1434 output_frame->SetFrameType(StackFrame::INTERNAL);
1439 output_[frame_index] = output_frame;
1444 output_frame->SetTop(top_address);
1451 output_frame->SetCallerPc(output_offset, callers_pc);
1462 output_frame->SetCallerFp(output_offset, value);
1464 output_frame->SetFp(fp_value);
1476 output_frame->SetCallerConstantPool(output_offset, value);
1487 output_frame->SetFrameSlot(output_offset, value);
1498 output_frame->SetFrameSlot(output_offset, value);
1513 output_frame->SetFrameSlot(output_offset, value);
1538 output_frame->SetPc(pc);
1542 output_frame->SetConstantPool(constant_pool_value);
1605 FrameDescription* output_frame =
1607 output_frame->SetFrameType(StackFrame::STUB_FAILURE_TRAMPOLINE);
1609 output_[frame_index] = output_frame;
1617 output_frame->SetTop(top_address);
1623 output_frame->SetCallerPc(output_frame_offset, value);
1635 output_frame->SetCallerFp(output_frame_offset, value);
1637 output_frame->SetRegister(fp_reg.code(), frame_ptr);
1638 output_frame->SetFp(frame_ptr);
1651 output_frame->SetCallerConstantPool(output_frame_offset, value);
1663 output_frame->SetRegister(context_reg.code(), value);
1665 output_frame->SetFrameSlot(output_frame_offset, value);
1678 output_frame->SetFrameSlot(output_frame_offset, value);
1701 output_frame->SetFrameSlot(args_arguments_offset, value);
1713 output_frame->SetFrameSlot(length_frame_offset, value);
1725 output_frame->SetFrameSlot(output_frame_offset, value);
1752 output_frame->GetFrameSlot(arguments_length_offset));
1754 output_frame->SetFrameSlot(length_frame_offset, caller_arg_count);
1764 output_frame->SetFrameSlot(args_arguments_offset, value);
1775 CopyDoubleRegisters(output_frame);
1778 SetPlatformCompiledStubRegisters(output_frame, &descriptor);
1786 output_frame->SetPc(reinterpret_cast<intptr_t>(
1793 output_frame->SetConstantPool(constant_pool_value);
1794 output_frame->SetRegister(constant_pool_reg.code(), constant_pool_value);
1796 output_frame->SetState(Smi::FromInt(FullCodeGenerator::NO_REGISTERS));
1799 output_frame->SetContinuation(
3596 FrameDescription* output_frame = deoptimizer->output_[frame_index];
3597 function_ = output_frame->GetFunction();
3598 context_ = reinterpret_cast<Object*>(output_frame->GetContext());
3600 expression_count_ = output_frame->GetExpressionCount();
3603 Address pc = reinterpret_cast<Address>(output_frame->GetPc());
3608 SetExpression(i, output_frame->GetExpression(i));
3612 output_frame = deoptimizer->output_[frame_index - 1];
3613 CHECK_EQ(output_frame->GetFrameType(), StackFrame::ARGUMENTS_ADAPTOR);
3616 parameters_count_ = output_frame->ComputeParametersCount();
3619 SetParameter(i, output_frame->GetParameter(i));