• Home
  • Raw
  • Download

Lines Matching refs:output_

220       output_(NULL),  in Deoptimizer()
259 ASSERT(input_ == NULL && output_ == NULL); in ~Deoptimizer()
266 if (output_[i] != input_) delete output_[i]; in DeleteFrameDescriptions()
268 delete[] output_; in DeleteFrameDescriptions()
270 output_ = NULL; in DeleteFrameDescriptions()
388 ASSERT(output_ == NULL); in DoComputeOutputFrames()
389 output_ = new FrameDescription*[count]; in DoComputeOutputFrames()
391 output_[i] = NULL; in DoComputeOutputFrames()
404 JSFunction* function = output_[index]->GetFunction(); in DoComputeOutputFrames()
410 output_[index]->GetPc(), in DoComputeOutputFrames()
413 output_[index]->GetState()->value())), in DoComputeOutputFrames()
464 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
469 output_[frame_index]->SetFrameSlot(output_offset, input_value); in DoTranslateCommand()
480 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
489 output_[frame_index]->SetFrameSlot(output_offset, tagged_value); in DoTranslateCommand()
493 AddDoubleValue(output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
495 output_[frame_index]->SetFrameSlot(output_offset, kPlaceholder); in DoTranslateCommand()
505 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
512 AddDoubleValue(output_[frame_index]->GetTop() + output_offset, value); in DoTranslateCommand()
513 output_[frame_index]->SetFrameSlot(output_offset, kPlaceholder); in DoTranslateCommand()
524 output_[frame_index]->GetTop() + output_offset); in DoTranslateCommand()
530 output_[frame_index]->SetFrameSlot(output_offset, input_value); in DoTranslateCommand()
542 output_[frame_index]->GetTop() + output_offset); in DoTranslateCommand()
552 output_[frame_index]->SetFrameSlot(output_offset, tagged_value); in DoTranslateCommand()
556 AddDoubleValue(output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
558 output_[frame_index]->SetFrameSlot(output_offset, kPlaceholder); in DoTranslateCommand()
570 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
577 AddDoubleValue(output_[frame_index]->GetTop() + output_offset, value); in DoTranslateCommand()
578 output_[frame_index]->SetFrameSlot(output_offset, kPlaceholder); in DoTranslateCommand()
586 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
592 output_[frame_index]->SetFrameSlot(output_offset, value); in DoTranslateCommand()
602 output_[frame_index]->GetTop() + output_offset, in DoTranslateCommand()
609 output_[frame_index]->SetFrameSlot(output_offset, value); in DoTranslateCommand()
619 FrameDescription* output = output_[0]; in DoOsrTranslateCommand()