Lines Matching full:operand
50 typedef Operand MemOperand;
159 void InvokeCode(const Operand& code,
198 void Set(const Operand& dst, const Immediate& x);
249 add(reg, Operand(reg));
657 const Operand& code_operand,
686 Operand SafepointRegisterSlot(Register reg);
703 mov(scratch, Operand(object));
707 and_(Operand(scratch),
709 cmp(Operand(scratch),
715 lea(scratch, Operand(object, -new_space_start));
756 // Generate an Operand for loading a field from an object.
757 static inline Operand FieldOperand(Register object, int offset) {
758 return Operand(object, offset - kHeapObjectTag);
762 // Generate an Operand for loading an indexed field from an object.
763 static inline Operand FieldOperand(Register object,
767 return Operand(object, index, scale, offset - kHeapObjectTag);
771 static inline Operand ContextOperand(Register context, int index) {
772 return Operand(context, Context::SlotOffset(index));
776 static inline Operand GlobalObjectOperand() {
781 // Generates an Operand for saving parameters after PrepareCallApiFunction.
782 Operand ApiParameterOperand(int index);