Home | History | Annotate | Download | only in x87

Lines Matching full:immediate

265 class Immediate BASE_EMBEDDED {
267 inline explicit Immediate(int x);
268 inline explicit Immediate(const ExternalReference& ext);
269 inline explicit Immediate(Handle<Object> handle);
270 inline explicit Immediate(Smi* value);
271 inline explicit Immediate(Address addr);
273 static Immediate CodeRelativeOffset(Label* label) {
274 return Immediate(label);
286 inline explicit Immediate(Label* value);
321 INLINE(explicit Operand(Immediate imm));
363 static Operand ForRegisterPlusImmediate(Register base, Immediate imm) {
398 // A Displacement describes the 32bit immediate field of an instruction which
584 void push(const Immediate& x);
592 void enter(const Immediate& size);
600 void mov_b(const Operand& dst, const Immediate& src);
606 void mov_w(const Operand& dst, const Immediate& src);
610 void mov(Register dst, const Immediate& x);
614 void mov(const Operand& dst, const Immediate& x);
649 void add(Register dst, const Immediate& imm) { add(Operand(dst), imm); }
650 void add(const Operand& dst, const Immediate& x);
653 void and_(Register dst, const Immediate& x);
657 void and_(const Operand& dst, const Immediate& x);
665 void cmpw(const Operand& op, Immediate imm16);
670 void cmp(Register reg, const Immediate& imm) { cmp(Operand(reg), imm); }
671 void cmp(const Operand& op, const Immediate& imm);
712 void or_(Register dst, const Immediate& imm) { or_(Operand(dst), imm); }
713 void or_(const Operand& dst, const Immediate& x);
746 void sub(Register dst, const Immediate& imm) { sub(Operand(dst), imm); }
747 void sub(const Operand& dst, const Immediate& x);
752 void test(Register reg, const Immediate& imm);
756 void test(const Operand& op, const Immediate& imm);
764 void xor_(Register dst, const Immediate& imm) { xor_(Operand(dst), imm); }
765 void xor_(const Operand& dst, const Immediate& x);
1001 inline void emit(const Immediate& x);
1002 inline void emit_w(const Immediate& x);
1012 // with a given destination expression and an immediate operand. It attempts
1015 void emit_arith(int sel, Operand dst, const Immediate& x);