Home | History | Annotate | Download | only in x87

Lines Matching refs:LUnallocated

31          LUnallocated::cast(Output())->HasFixedPolicy() ||
32 !LUnallocated::cast(Output())->HasRegisterPolicy());
34 LUnallocated* operand = LUnallocated::cast(it.Current());
39 LUnallocated* operand = LUnallocated::cast(it.Current());
475 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
476 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
481 LUnallocated* LChunkBuilder::ToUnallocated(X87Register reg) {
482 return new (zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
493 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
499 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
500 LUnallocated::USED_AT_START));
505 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
510 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
515 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
516 LUnallocated::USED_AT_START));
569 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY));
573 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
584 LUnallocated* result) {
594 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
602 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
609 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
671 LUnallocated* LChunkBuilder::TempRegister() {
672 LUnallocated* operand =
673 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
685 LUnallocated* operand = ToUnallocated(reg);
928 LUnallocated* operand = LUnallocated::cast(it.Current());
932 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
935 LUnallocated* operand = LUnallocated::cast(it.Current());
1944 LUnallocated* result_temp = TempRegister();
2532 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {