Lines Matching refs:LUnallocated
28 LUnallocated::cast(Output())->HasFixedPolicy() || in LITHIUM_CONCRETE_INSTRUCTION_LIST()
29 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
31 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
36 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
426 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
427 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
432 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
433 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
449 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
455 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
456 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
461 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
466 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
471 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
472 LUnallocated::USED_AT_START)); in UseAtStart()
512 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
516 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
527 LUnallocated* result) { in Define()
537 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
544 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
551 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
612 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
613 LUnallocated* operand = in TempRegister()
614 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
625 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
626 LUnallocated* operand = in TempDoubleRegister()
627 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
639 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
646 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
881 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
885 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
888 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1946 LUnallocated* result_temp = TempRegister(); in DoChange()
2472 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()