HomeSort by relevance Sort by last modified time
    Searched defs:first_output (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs.h 95 GLuint first_output; member in struct:brw_vs_compile
  /external/v8/src/compiler/
register-allocator.cc 835 UnallocatedOperand* first_output = UnallocatedOperand::cast(output); local
836 LiveRange* range = LiveRangeFor(first_output->virtual_register());
838 if (first_output->HasFixedPolicy()) {
840 first_output->CopyUnconstrained(code_zone());
841 bool is_tagged = HasTaggedValue(first_output->virtual_register());
842 AllocateFixed(first_output, gap_index, is_tagged);
845 if (first_output->IsStackSlot()) {
846 range->SetSpillOperand(first_output);
850 code()->AddGapMove(gap_index, first_output, output_copy);
865 move->AddMove(first_output, range->GetSpillOperand(), code_zone())
    [all...]
  /external/v8/src/
lithium-allocator.cc 784 LUnallocated* first_output = LUnallocated::cast(first->Output()); local
785 LiveRange* range = LiveRangeFor(first_output->virtual_register());
787 if (first_output->HasFixedPolicy()) {
788 LUnallocated* output_copy = first_output->CopyUnconstrained(
790 bool is_tagged = HasTaggedValue(first_output->virtual_register());
791 AllocateFixed(first_output, gap_index, is_tagged);
794 if (first_output->IsStackSlot()) {
795 range->SetSpillOperand(first_output);
799 chunk_->AddGapMove(gap_index, first_output, output_copy);
812 move->AddMove(first_output, range->GetSpillOperand()
    [all...]

Completed in 99 milliseconds