Home | History | Annotate | Download | only in arm64

Lines Matching refs:LUnallocated

28          LUnallocated::cast(Output())->HasFixedPolicy() ||
29 !LUnallocated::cast(Output())->HasRegisterPolicy());
31 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
357 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
358 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
363 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) {
364 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
369 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
391 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
396 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
402 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
403 LUnallocated::USED_AT_START));
425 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY));
430 LUnallocated* result) {
440 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
447 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
454 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
504 LUnallocated* LChunkBuilder::TempRegister() {
505 LUnallocated* operand =
506 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
517 LUnallocated* LChunkBuilder::TempDoubleRegister() {
518 LUnallocated* operand =
519 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER);
547 LUnallocated* operand = ToUnallocated(reg);
554 LUnallocated* operand = ToUnallocated(reg);
719 LUnallocated* operand = LUnallocated::cast(it.Current());
723 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
726 LUnallocated* operand = LUnallocated::cast(it.Current());
2684 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {