Home
last modified time | relevance | path

Searched refs:spill_operand (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/arm/
Dlithium-arm.cc55 LOperand* spill_operand) { in MarkSpilledRegister() argument
56 ASSERT(spill_operand->IsStackSlot()); in MarkSpilledRegister()
58 register_spills_[allocation_index] = spill_operand; in MarkSpilledRegister()
85 LOperand* spill_operand) { in MarkSpilledDoubleRegister() argument
86 ASSERT(spill_operand->IsDoubleStackSlot()); in MarkSpilledDoubleRegister()
88 double_register_spills_[allocation_index] = spill_operand; in MarkSpilledDoubleRegister()
Dlithium-arm.h2095 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
2097 LOperand* spill_operand);
/external/v8/src/x64/
Dlithium-x64.cc57 LOperand* spill_operand) { in MarkSpilledRegister() argument
58 ASSERT(spill_operand->IsStackSlot()); in MarkSpilledRegister()
60 register_spills_[allocation_index] = spill_operand; in MarkSpilledRegister()
65 LOperand* spill_operand) { in MarkSpilledDoubleRegister() argument
66 ASSERT(spill_operand->IsDoubleStackSlot()); in MarkSpilledDoubleRegister()
68 double_register_spills_[allocation_index] = spill_operand; in MarkSpilledDoubleRegister()
Dlithium-x64.h2065 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
2067 LOperand* spill_operand);
/external/v8/src/ia32/
Dlithium-ia32.cc57 LOperand* spill_operand) { in MarkSpilledRegister() argument
58 ASSERT(spill_operand->IsStackSlot()); in MarkSpilledRegister()
60 register_spills_[allocation_index] = spill_operand; in MarkSpilledRegister()
65 LOperand* spill_operand) { in MarkSpilledDoubleRegister() argument
66 ASSERT(spill_operand->IsDoubleStackSlot()); in MarkSpilledDoubleRegister()
68 double_register_spills_[allocation_index] = spill_operand; in MarkSpilledDoubleRegister()
Dlithium-ia32.h2177 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
2179 LOperand* spill_operand);
/external/v8/src/mips/
Dlithium-mips.cc55 LOperand* spill_operand) { in MarkSpilledRegister() argument
56 ASSERT(spill_operand->IsStackSlot()); in MarkSpilledRegister()
58 register_spills_[allocation_index] = spill_operand; in MarkSpilledRegister()
85 LOperand* spill_operand) { in MarkSpilledDoubleRegister() argument
86 ASSERT(spill_operand->IsDoubleStackSlot()); in MarkSpilledDoubleRegister()
88 double_register_spills_[allocation_index] = spill_operand; in MarkSpilledDoubleRegister()
Dlithium-mips.h2075 void MarkSpilledRegister(int allocation_index, LOperand* spill_operand);
2077 LOperand* spill_operand);
/external/v8/src/
Dlithium-allocator.cc1459 LOperand* spill_operand = range->TopLevel()->GetSpillOperand(); in ProcessOsrEntry() local
1461 instruction->MarkSpilledDoubleRegister(reg_index, spill_operand); in ProcessOsrEntry()
1463 instruction->MarkSpilledRegister(reg_index, spill_operand); in ProcessOsrEntry()