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()
360 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
361 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
364 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
366 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code()); in ToUnallocated()
379 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
383 return Use(value, new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
384 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
388 return Use(value, new (zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
392 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE)); in Use()
396 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
397 LUnallocated::USED_AT_START)); in UseAtStart()
431 : Use(value, new (zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
434 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
444 LUnallocated* result) { in Define()
453 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
459 new (zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
465 new (zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
514 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
515 LUnallocated* operand = in TempRegister()
516 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
526 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
527 LUnallocated* operand = in TempDoubleRegister()
528 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
539 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
545 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
769 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
773 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
776 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1646 LUnallocated* result_temp = TempRegister(); in DoChange()
2052 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()