Home | History | Annotate | Download | only in ia32

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());
464 LUnallocated* LChunkBuilder::ToUnallocated(Register reg) {
465 return new(zone()) LUnallocated(LUnallocated::FIXED_REGISTER,
470 LUnallocated* LChunkBuilder::ToUnallocated(XMMRegister reg) {
471 return new(zone()) LUnallocated(LUnallocated::FIXED_DOUBLE_REGISTER,
487 return Use(value, new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
493 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER,
494 LUnallocated::USED_AT_START));
499 return Use(value, new(zone()) LUnallocated(LUnallocated::WRITABLE_REGISTER));
504 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE));
509 return Use(value, new(zone()) LUnallocated(LUnallocated::NONE,
510 LUnallocated::USED_AT_START));
563 : Use(value, new(zone()) LUnallocated(LUnallocated::ANY));
567 LOperand* LChunkBuilder::Use(HValue* value, LUnallocated* operand) {
578 LUnallocated* result) {
588 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER));
596 new(zone()) LUnallocated(LUnallocated::FIXED_SLOT, index));
603 new(zone()) LUnallocated(LUnallocated::SAME_AS_FIRST_INPUT));
665 LUnallocated* LChunkBuilder::TempRegister() {
666 LUnallocated* operand =
667 new(zone()) LUnallocated(LUnallocated::MUST_HAVE_REGISTER);
679 LUnallocated* operand = ToUnallocated(reg);
686 LUnallocated* operand = ToUnallocated(reg);
921 LUnallocated* operand = LUnallocated::cast(it.Current());
925 if (LUnallocated::cast(instr->Output())->HasFixedPolicy()) ++fixed;
928 LUnallocated* operand = LUnallocated::cast(it.Current());
1941 LUnallocated* result_temp = TempRegister();
2528 if (spill_index > LUnallocated::kMaxFixedSlotIndex) {