Lines Matching refs:value

41   // If the constant value can be represented in just 16 bits, then
45 // be loaded with just one, so that this value is patchable later.
188 void li(Register dst, Handle<HeapObject> value, LiFlags mode = OPTIMIZE_SIZE);
189 void li(Register dst, ExternalReference value, LiFlags mode = OPTIMIZE_SIZE);
765 // AddOverflow sets overflow register to a negative value if
769 // SubOverflow sets overflow register to a negative value if
796 // If the value is a NaN, canonicalize the value else, do nothing.
810 void JumpIfSmi(Register value, Label* smi_label,
941 // Compare the object in a register to a value and jump if they are equal.
949 // Compare the object in a register to a value and jump if they are not equal.
957 // Checks if value is in range [lower_limit, higher_limit] using a single
959 void JumpIfIsInRange(Register value, unsigned lower_limit,
966 // |object| is the object being stored into, |value| is the object being
967 // stored. value and scratch registers are clobbered by the operation.
971 Register object, int offset, Register value, Register scratch,
977 // has been written. |value| is the object being stored. The value and
980 Register object, Register address, Register value, RAStatus ra_status,
1086 void IncrementCounter(StatsCounter* counter, int value, Register scratch1,
1089 EmitIncrementCounter(counter, value, scratch1, scratch2);
1091 void EmitIncrementCounter(StatsCounter* counter, int value, Register scratch1,
1093 void DecrementCounter(StatsCounter* counter, int value, Register scratch1,
1096 EmitDecrementCounter(counter, value, scratch1, scratch2);
1098 void EmitDecrementCounter(StatsCounter* counter, int value, Register scratch1,
1117 inline void SmiTst(Register value, Register scratch) {
1118 And(scratch, value, Operand(kSmiTagMask));
1122 void JumpIfNotSmi(Register value, Label* not_smi_label,