Lines Matching defs:value
88 // Allocate stack space of given size (i.e. decrement {esp} by the value
92 // register's value, in the version that takes a register.
174 inline void JumpIfSmi(Register value, Label* smi_label,
176 test(value, Immediate(kSmiTagMask));
180 inline void JumpIfSmi(Operand value, Label* smi_label,
182 test(value, Immediate(kSmiTagMask));
197 void SmiUntag(Register output, Register value) {
198 mov(output, value);
343 void Push(Immediate value);
423 // Compare the object in a register to a value and jump if they are equal.
430 // Compare the object in a register to a value and jump if they are not equal.
437 // Checks if value is in range [lower_limit, higher_limit] using a single
438 // comparison. Flags CF=1 or ZF=1 indicate the value is in the range
439 // (condition below_equal). It is valid, that |value| == |scratch| as far as
441 void CompareRange(Register value, unsigned lower_limit, unsigned higher_limit,
443 void JumpIfIsInRange(Register value, unsigned lower_limit,
451 // |object| is the object being stored into, |value| is the object being
452 // stored. value and scratch registers are clobbered by the operation.
456 Register object, int offset, Register value, Register scratch,
462 // dirty. |object| is the object being stored into, |value| is the
463 // object being stored. The address and value registers are clobbered by the
465 // write barrier if the value is a smi.
467 Register object, Register address, Register value, SaveFPRegsMode save_fp,
479 // Leave the current exit frame. Expects the return value in
484 // Leave the current exit frame. Expects the return value in
491 // Load a value from the native context with a given index.
538 inline void JumpIfNotSmi(Register value, Label* not_smi_label,
540 test(value, Immediate(kSmiTagMask));
544 inline void JumpIfNotSmi(Operand value, Label* smi_label,
546 test(value, Immediate(kSmiTagMask));
641 void IncrementCounter(StatsCounter* counter, int value, Register scratch) {
643 EmitIncrementCounter(counter, value, scratch);
645 void EmitIncrementCounter(StatsCounter* counter, int value, Register scratch);
646 void DecrementCounter(StatsCounter* counter, int value, Register scratch) {
648 EmitDecrementCounter(counter, value, scratch);
650 void EmitDecrementCounter(StatsCounter* counter, int value, Register scratch);