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()
357 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) { in ToUnallocated()
358 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER, in ToUnallocated()
363 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) { in ToUnallocated()
364 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, in ToUnallocated()
369 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) { in Use()
391 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in UseRegister()
396 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER)); in UseRegisterAndClobber()
402 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER, in UseRegisterAtStart()
403 LUnallocated::USED_AT_START)); in UseRegisterAtStart()
425 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY)); in UseAny()
430 LUnallocated* result) { in Define()
440 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER)); in DefineAsRegister()
447 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index)); in DefineAsSpilled()
454 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT)); in DefineSameAsFirst()
504 LUnallocated* LChunkBuilder::TempRegister() { in TempRegister()
505 LUnallocated* operand = in TempRegister()
506 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER); in TempRegister()
517 LUnallocated* LChunkBuilder::TempDoubleRegister() { in TempDoubleRegister()
518 LUnallocated* operand = in TempDoubleRegister()
519 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER); in TempDoubleRegister()
547 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
554 LUnallocated* operand = ToUnallocated(reg); in FixedTemp()
719 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
723 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed; in AddInstruction()
726 LUnallocated* operand = LUnallocated::cast(it.Current()); in AddInstruction()
2684 if (spill_index > LUnallocated::kMaxFixedSlotIndex) { in DoUnknownOSRValue()