Lines Matching refs:LUnallocated
31 LUnallocated::cast(Output())->HasFixedPolicy() || in LITHIUM_CONCRETE_INSTRUCTION_LIST()
32 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
34 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
39 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
464 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
465 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
470 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg) { in ToUnallocated()
471 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
487 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
493 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
494 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
499 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
504 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
509 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
510 LUnallocated::USED_AT_START)); in UseAtStart()
563 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
567 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
578 LUnallocated* result) { in Define()
588 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
596 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
603 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
665 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
666 LUnallocated* operand = in TempRegister()
667 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
679 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
686 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
921 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
925 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
928 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1941 LUnallocated* result_temp = TempRegister(); in DoChange()
2528 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()