Lines Matching refs:LUnallocated
32 LUnallocated::cast(Output())->HasFixedPolicy() || in LITHIUM_CONCRETE_INSTRUCTION_LIST()
33 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
35 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
40 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
414 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
415 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code()); in ToUnallocated()
419 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
421 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code()); in ToUnallocated()
436 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
442 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
443 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
448 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
453 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
458 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
459 LUnallocated::USED_AT_START)); in UseAtStart()
499 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
503 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
514 LUnallocated* result) { in Define()
524 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
531 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
538 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
594 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
595 LUnallocated* operand = in TempRegister()
596 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
607 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
608 LUnallocated* operand = in TempDoubleRegister()
609 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
621 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
628 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
862 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
866 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
869 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1807 LUnallocated* result_temp = TempRegister(); in DoChange()
2324 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()