Home | History | Annotate | Download | only in x87

Lines Matching refs:stack_depth_

357         : stack_depth_(0), is_mutable_(true), masm_(masm) { }
359 : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(masm()) {
360 for (int i = 0; i < stack_depth_; i++) {
365 if (stack_depth_ != other.stack_depth_) return false;
366 for (int i = 0; i < stack_depth_; i++) {
372 stack_depth_ = other.stack_depth_;
373 for (int i = 0; i < stack_depth_; i++) {
385 int depth() const { return stack_depth_; }
391 stack_depth_--;
395 DCHECK(stack_depth_ < X87Register::kMaxNumAllocatableRegisters);
396 stack_[stack_depth_] = reg;
397 stack_depth_++;
408 int stack_depth_;