Home | History | Annotate | Download | only in arm

Lines Matching refs:LUnallocated

30          LUnallocated::cast(Output())->HasFixedPolicy() ||
31 !LUnallocated::cast(Output())->HasRegisterPolicy());
33 LUnallocated* operand = LUnallocated::cast(it.Current());
38 LUnallocated* operand = LUnallocated::cast(it.Current());
381 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
382 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
386 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) {
388 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code());
403 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
409 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
410 LUnallocated::USED_AT_START));
415 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
420 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
425 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
426 LUnallocated::USED_AT_START));
466 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY));
470 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
481 LUnallocated* result) {
491 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
498 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
505 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
561 LUnallocated* LChunkBuilder::TempRegister() {
562 LUnallocated* operand =
563 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
574 LUnallocated* LChunkBuilder::TempDoubleRegister() {
575 LUnallocated* operand =
576 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER);
588 LUnallocated* operand = ToUnallocated(reg);
595 LUnallocated* operand = ToUnallocated(reg);
826 LUnallocated* operand = LUnallocated::cast(it.Current());
830 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
833 LUnallocated* operand = LUnallocated::cast(it.Current());
1824 LUnallocated* result_temp = TempRegister();
2265 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {