Lines Matching refs:LUnallocated
69 LUnallocated::cast(Output())->HasFixedPolicy() || in VerifyCall()
70 !LUnallocated::cast(Output())->HasRegisterPolicy()); in VerifyCall()
72 LUnallocated* operand = LUnallocated::cast(it.Current()); in VerifyCall()
77 LUnallocated* operand = LUnallocated::cast(it.Current()); in VerifyCall()
584 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
585 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
590 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
591 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
607 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
613 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
614 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
619 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
624 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
629 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
630 LUnallocated::USED_AT_START)); in UseAtStart()
665 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
669 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
681 LUnallocated* result) { in Define()
692 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
700 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
708 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
795 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
796 LUnallocated* operand = in TempRegister()
797 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
805 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
812 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
1690 LUnallocated* result_temp = TempRegister(); in DoChange()
2167 if (spill_index > LUnallocated::kMaxFixedIndex) { in DoUnknownOSRValue()