Home | History | Annotate | Download | only in arm

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());
426 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
427 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
432 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) {
433 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
449 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
455 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
456 LUnallocated::USED_AT_START));
461 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
466 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
471 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
472 LUnallocated::USED_AT_START));
512 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY));
516 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
527 LUnallocated* result) {
537 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
544 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
551 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
612 LUnallocated
613 LUnallocated* operand =
614 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
625 LUnallocated* LChunkBuilder::TempDoubleRegister() {
626 LUnallocated* operand =
627 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER);
639 LUnallocated* operand = ToUnallocated(reg);
646 LUnallocated* operand = ToUnallocated(reg);
881 LUnallocated* operand = LUnallocated::cast(it.Current());
885 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
888 LUnallocated* operand = LUnallocated::cast(it.Current());
1946 LUnallocated* result_temp = TempRegister();
2472 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {