Lines Matching refs:LUnallocated

31          LUnallocated::cast(Output())->HasFixedPolicy() ||  in LITHIUM_CONCRETE_INSTRUCTION_LIST()
32 !LUnallocated::cast(Output())->HasRegisterPolicy()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
34 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
39 LUnallocated* operand = LUnallocated::cast(it.Current()); in LITHIUM_CONCRETE_INSTRUCTION_LIST()
475 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
476 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
481 LUnallocated* LChunkBuilder::ToUnallocated(X87Register reg) { in ToUnallocated()
482 return new (zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
493 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
499 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
500 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
505 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseTempRegister()
510 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE)); in Use()
515 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE, in UseAtStart()
516 LUnallocated::USED_AT_START)); in UseAtStart()
569 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
573 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
584 LUnallocated* result) { in Define()
594 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
602 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
609 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
671 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
672 LUnallocated* operand = in TempRegister()
673 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
685 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
928 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
932 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
935 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
1944 LUnallocated* result_temp = TempRegister(); in DoChange()
2532 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()