Lines Matching refs:operand

1493       // Test the non-zero operand for negative sign.
1829 Operand operand = BuildSeqStringOperand(string, instr->index(), encoding);
1831 __ movzxbl(result, operand);
1833 __ movzxwl(result, operand);
1853 Operand operand = BuildSeqStringOperand(string, instr->index(), encoding);
1859 __ movb(operand, Immediate(value));
1862 __ movw(operand, Immediate(value));
1867 __ movb(operand, value);
1869 __ movw(operand, value);
3098 Operand operand(BuildFastArrayOperand(
3108 __ movss(result, operand);
3112 __ movsd(ToDoubleRegister(instr->result()), operand);
3118 __ movsxbl(result, operand);
3124 __ movzxbl(result, operand);
3128 __ movsxwl(result, operand);
3132 __ movzxwl(result, operand);
3136 __ movl(result, operand);
3140 __ movl(result, operand);
4170 Operand operand = FieldOperand(write_register, offset);
4174 __ Store(operand, value, representation);
4181 __ Move(operand, Smi::FromInt(value));
4184 __ movl(operand, Immediate(value));
4190 __ Move(operand, handle_value);
4297 Operand operand(BuildFastArrayOperand(
4308 __ movss(operand, value);
4311 __ movsd(operand, ToDoubleRegister(instr->value()));
4321 __ movb(operand, value);
4327 __ movw(operand, value);
4333 __ movl(operand, value);
4420 Operand operand =
4427 __ Store(operand, ToRegister(instr->value()), representation);
4433 __ Move(operand, Smi::FromInt(value));
4436 __ movl(operand, Immediate(value));
4440 __ Move(operand, handle_value);
4453 __ leap(key_reg, operand);
5490 void LCodeGen::EmitPushTaggedOperand(LOperand* operand) {
5491 DCHECK(!operand->IsDoubleRegister());
5492 if (operand->IsConstantOperand()) {
5493 __ Push(ToHandle(LConstantOperand::cast(operand)));
5494 } else if (operand->IsRegister()) {
5495 __ Push(ToRegister(operand));
5497 __ Push(ToOperand(operand));