Home | History | Annotate | Download | only in x87

Lines Matching refs:stack_depth_

383         : stack_depth_(0), is_mutable_(true), masm_(masm) { }
385 : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(masm()) {
386 for (int i = 0; i < stack_depth_; i++) {
391 if (stack_depth_ != other.stack_depth_) return false;
392 for (int i = 0; i < stack_depth_; i++) {
398 stack_depth_ = other.stack_depth_;
399 for (int i = 0; i < stack_depth_; i++) {
411 int depth() const { return stack_depth_; }
416 stack_depth_--;
420 DCHECK(stack_depth_ < X87Register::kMaxNumAllocatableRegisters);
421 stack_[stack_depth_] = reg;
422 stack_depth_++;
433 int stack_depth_;