/third_party/node/deps/v8/src/compiler/backend/ |
D | instruction-scheduler.h | 200 (instr->OutputAt(0)->IsUnallocated()) && in IsFixedRegisterParameter() 201 (UnallocatedOperand::cast(instr->OutputAt(0)) in IsFixedRegisterParameter() 203 UnallocatedOperand::cast(instr->OutputAt(0)) in IsFixedRegisterParameter()
|
D | register-allocator-verifier.cc | 92 BuildConstraint(instr->OutputAt(i), &op_constraints[count]); in RegisterAllocatorVerifier() 151 CheckConstraint(instr->OutputAt(i), &op_constraints[count]); in VerifyAssignment() 587 block_assessments->AddDefinition(*instr->OutputAt(i), virtual_register); in VerifyGapMoves() 590 AllocatedOperand::cast(instr->OutputAt(i)); in VerifyGapMoves()
|
D | instruction.cc | 514 os << *instr.OutputAt(0) << " = "; in operator <<() 516 os << "(" << *instr.OutputAt(0); in operator <<() 518 os << ", " << *instr.OutputAt(i); in operator <<() 788 const InstructionOperand* output = instruction->OutputAt(i); in ValidateSSA()
|
D | move-optimizer.cc | 179 outputs.InsertOp(*instruction->OutputAt(i)); in RemoveClobberedDestinations() 230 src_cant_be.InsertOp(*from->OutputAt(i)); in MigrateMoves()
|
D | code-generator-impl.h | 104 return ToRegister(instr_->OutputAt(index));
|
D | instruction-scheduler.cc | 197 const InstructionOperand* output = instr->OutputAt(i); in AddInstruction()
|
D | instruction.h | 851 const InstructionOperand* OutputAt(size_t i) const { in OutputAt() function 855 InstructionOperand* OutputAt(size_t i) { in OutputAt() function 861 const InstructionOperand* Output() const { return OutputAt(0); } in Output() 862 InstructionOperand* Output() { return OutputAt(0); } in Output()
|
D | mid-tier-register-allocator.cc | 2885 InstructionOperand* output = instr->OutputAt(i); in DefineOutputs() 3037 InstructionOperand* output = instr->OutputAt(i); in AllocateRegisters() 3171 if (!instr->OutputAt(i)->IsUnallocated()) continue; in ReserveFixedRegisters() 3173 UnallocatedOperand::cast(instr->OutputAt(i)); in ReserveFixedRegisters()
|
D | register-allocator.cc | 1670 InstructionOperand* output_operand = last_instruction->OutputAt(i); in MeetRegisterConstraintsForLastInstructionInBlock() 1720 InstructionOperand* output = first->OutputAt(i); in MeetConstraintsAfter() 1821 InstructionOperand* output = second->OutputAt(i); in MeetConstraintsBefore() 2142 InstructionOperand* output = instr->OutputAt(i); in ProcessInstructions()
|
/third_party/node/deps/v8/src/compiler/backend/riscv64/ |
D | instruction-scheduler-riscv64.cc | 1485 if (instr->OutputAt(0)->IsFPRegister()) { in GetInstructionLatency() 1486 auto op = LocationOperand::cast(instr->OutputAt(0)); in GetInstructionLatency()
|
D | code-generator-riscv64.cc | 40 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 1702 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1703 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/mips/ |
D | instruction-scheduler-mips.cc | 1669 if (instr->OutputAt(0)->IsFPRegister()) { in GetInstructionLatency() 1670 auto op = LocationOperand::cast(instr->OutputAt(0)); in GetInstructionLatency()
|
D | code-generator-mips.cc | 42 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 1634 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1635 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
D | instruction-scheduler-mips64.cc | 1679 if (instr->OutputAt(0)->IsFPRegister()) { in GetInstructionLatency() 1680 auto op = LocationOperand::cast(instr->OutputAt(0)); in GetInstructionLatency()
|
D | code-generator-mips64.cc | 43 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 1733 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1734 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/loong64/ |
D | code-generator-loong64.cc | 43 return ToSingleRegister(instr_->OutputAt(index)); in OutputSingleRegister() 1548 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1549 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/s390/ |
D | code-generator-s390.cc | 142 return instr->OutputCount() > 0 && instr->OutputAt(index)->IsRegister(); in HasRegisterOutput() 1473 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1474 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/arm64/ |
D | code-generator-arm64.cc | 1528 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1529 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction() 2954 LocationOperand::cast(instr->OutputAt(0))->representation(); in AssembleArchSelect()
|
/third_party/node/deps/v8/src/compiler/ |
D | graph-visualizer.cc | 1262 os << InstructionOperandAsJSON{instr->OutputAt(i), i_json.code_}; in operator <<()
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
D | code-generator-x64.cc | 2726 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 2727 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction() 4593 LocationOperand::cast(instr->OutputAt(0))->representation(); in AssembleArchSelect()
|
/third_party/node/deps/v8/src/compiler/backend/ia32/ |
D | code-generator-ia32.cc | 1753 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1754 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/ppc/ |
D | code-generator-ppc.cc | 1166 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1167 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|
/third_party/node/deps/v8/src/compiler/backend/arm/ |
D | code-generator-arm.cc | 1763 if (instr->OutputAt(0)->IsFPRegister()) { in AssembleArchInstruction() 1764 LocationOperand* op = LocationOperand::cast(instr->OutputAt(0)); in AssembleArchInstruction()
|