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()
433 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
434 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
439 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
440 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
456 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
462 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
463 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
468 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
473 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
478 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
479 LUnallocated::USED_AT_START)); in UseAtStart()
519 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
523 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
534 LUnallocated* result) { in Define()
544 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
551 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
558 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
619 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
620 LUnallocated* operand = in TempRegister()
621 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
632 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
633 LUnallocated* operand = in TempDoubleRegister()
634 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
646 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
653 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
891 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
895 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
898 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1895 LUnallocated* result_temp = TempRegister(); in DoChange()
2421 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()