Lines Matching refs:LUnallocated

29   DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||  in LITHIUM_CONCRETE_INSTRUCTION_LIST()
30 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
32 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
36 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
394 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
395 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
399 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
401 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code()); in ToUnallocated()
417 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
422 return Use(value, new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
423 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
428 return Use(value, new (zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
433 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE)); in Use()
439 LUnallocated(LUnallocated::NONE, LUnallocated::USED_AT_START)); in UseAtStart()
479 : Use(value, new (zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
483 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
494 LUnallocated* result) { in Define()
504 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
511 new (zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
518 new (zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
573 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
574 LUnallocated* operand = in TempRegister()
575 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
586 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
587 LUnallocated* operand = in TempDoubleRegister()
588 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
600 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
607 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
841 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
845 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
848 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1801 LUnallocated* result_temp = TempRegister(); in DoChange()
2234 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()