Home | History | Annotate | Download | only in x87

Lines Matching defs:stack_depth_

361         : stack_depth_(0), is_mutable_(true), masm_(masm) { }
363 : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(masm()) {
364 for (int i = 0; i < stack_depth_; i++) {
369 if (stack_depth_ != other.stack_depth_) return false;
370 for (int i = 0; i < stack_depth_; i++) {
376 stack_depth_ = other.stack_depth_;
377 for (int i = 0; i < stack_depth_; i++) {
389 int depth() const { return stack_depth_; }
395 stack_depth_--;
399 DCHECK(stack_depth_ < X87Register::kMaxNumAllocatableRegisters);
400 stack_[stack_depth_] = reg;
401 stack_depth_++;
412 int stack_depth_;