Lines Matching refs:LUnallocated
30 LUnallocated::cast(Output())->HasFixedPolicy() || in LITHIUM_CONCRETE_INSTRUCTION_LIST()
31 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
33 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
38 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
428 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
429 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
433 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
435 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code()); in ToUnallocated()
450 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
456 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
457 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
462 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
467 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
472 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
473 LUnallocated::USED_AT_START)); in UseAtStart()
513 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
517 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
528 LUnallocated* result) { in Define()
538 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
545 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
552 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
613 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
614 LUnallocated* operand = in TempRegister()
615 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
626 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
627 LUnallocated* operand = in TempDoubleRegister()
628 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
640 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
647 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
878 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
882 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
885 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1931 LUnallocated* result_temp = TempRegister(); in DoChange()
2470 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()