Lines Matching defs:value
66 // any value < 0 is considered no_condition
102 // no_condition value (-2). As long as tests for no_condition check
120 explicit constexpr Immediate(int32_t value) : value_(value) {}
121 explicit constexpr Immediate(int32_t value, RelocInfo::Mode rmode)
122 : value_(value), rmode_(rmode) {}
123 explicit Immediate(Smi value)
124 : value_(static_cast<int32_t>(static_cast<intptr_t>(value.ptr()))) {
128 int32_t value() const { return value_; }
139 "Immediate must be small enough to pass it by value");
143 explicit constexpr Immediate64(int64_t value) : value_(value) {}
144 explicit constexpr Immediate64(int64_t value, RelocInfo::Mode rmode)
145 : value_(value), rmode_(rmode) {}
146 explicit constexpr Immediate64(Address value, RelocInfo::Mode rmode)
147 : value_(static_cast<int64_t>(value)), rmode_(rmode) {}
292 "Operand must be small enough to pass it by value");
537 void pushq(Immediate value);
539 // 32 bit value, the normal push will optimize the 8 bit case.
557 // Move the low 16 bits of a 64-bit register value to a 16-bit
574 void movq_heap_number(Register dst, double value);
580 void movq(Register dst, int64_t value) { movq(dst, Immediate64(value)); }
581 void movq(Register dst, uint64_t value) {
582 movq(dst, Immediate64(static_cast<int64_t>(value)));
586 void movq_imm64(Register dst, int64_t value);
611 void load_rax(Address value, RelocInfo::Mode rmode);
2068 void set_byte_at(int pos, byte value) { buffer_start_[pos] = value; }
2409 void emit_mov(Register dst, Immediate value, int size);
2410 void emit_mov(Operand dst, Immediate value, int size);
2411 void emit_mov(Register dst, Immediate64 value, int size);