Lines Matching defs:value

28   // If the constant value can be represented in just 12 bits, then
34 // even if the constant could be loaded with just one, so that this value is
145 static int InstrCountForLi64Bit(int64_t value);
155 void li(Register dst, Handle<HeapObject> value, LiFlags mode = OPTIMIZE_SIZE);
156 void li(Register dst, ExternalReference value, LiFlags mode = OPTIMIZE_SIZE);
629 // AddOverflow_d sets overflow register to a negative value if
633 // SubOverflow_d sets overflow register to a negative value if
658 // If the value is a NaN, canonicalize the value else, do nothing.
713 void JumpIfSmi(Register value, Label* smi_label);
821 // Compare the object in a register to a value and jump if they are equal.
829 // Compare the object in a register to a value and jump if they are not equal.
837 // Checks if value is in range [lower_limit, higher_limit] using a single
839 void JumpIfIsInRange(Register value, unsigned lower_limit,
846 // |object| is the object being stored into, |value| is the object being
851 Register object, int offset, Register value, RAStatus ra_status,
857 // has been written. |value| is the object being stored.
859 Register object, Operand offset, Register value, RAStatus ra_status,
987 void IncrementCounter(StatsCounter* counter, int value, Register scratch1,
990 EmitIncrementCounter(counter, value, scratch1, scratch2);
992 void EmitIncrementCounter(StatsCounter* counter, int value, Register scratch1,
994 void DecrementCounter(StatsCounter* counter, int value, Register scratch1,
997 EmitDecrementCounter(counter, value, scratch1, scratch2);
999 void EmitDecrementCounter(StatsCounter* counter, int value, Register scratch1,
1014 inline void SmiTst(Register value, Register scratch) {
1015 And(scratch, value, Operand(kSmiTagMask));
1019 void JumpIfNotSmi(Register value, Label* not_smi_label);