Home | History | Annotate | Download | only in s390

Lines Matching refs:LUnallocated

29   DCHECK(Output() == NULL || LUnallocated::cast(Output())->HasFixedPolicy() ||
30 !LUnallocated::cast(Output())->HasRegisterPolicy());
32 LUnallocated* operand = LUnallocated::cast(it.Current());
36 LUnallocated* operand = LUnallocated::cast(it.Current());
360 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
361 return new (zone()) LUnallocated(LUnallocated::FIXED_REGISTER, reg.code());
364 LUnallocated* LChunkBuilder::ToUnallocated(DoubleRegister reg) {
366 LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER, reg.code());
379 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
383 return Use(value, new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
384 LUnallocated::USED_AT_START));
388 return Use(value, new (zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
392 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE));
396 return Use(value, new (zone()) LUnallocated(LUnallocated::NONE,
397 LUnallocated::USED_AT_START));
431 : Use(value, new (zone()) LUnallocated(LUnallocated::ANY));
434 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
444 LUnallocated* result) {
453 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
459 new (zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
465 new (zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
514 LUnallocated* LChunkBuilder::TempRegister() {
515 LUnallocated* operand =
516 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
526 LUnallocated* LChunkBuilder::TempDoubleRegister() {
527 LUnallocated* operand =
528 new (zone()) LUnallocated(LUnallocated::MUST_HAVE_DOUBLE_REGISTER);
539 LUnallocated* operand = ToUnallocated(reg);
545 LUnallocated* operand = ToUnallocated(reg);
771 LUnallocated* operand = LUnallocated::cast(it.Current());
775 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
778 LUnallocated* operand = LUnallocated::cast(it.Current());
1627 LUnallocated* result_temp = TempRegister();
2033 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {