HomeSort by relevance Sort by last modified time
    Searched refs:stack_depth_ (Results 1 - 3 of 3) sorted by null

  /external/v8/src/x87/
lithium-codegen-x87.h 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++)
433 int stack_depth_; member in class:v8::internal::LCodeGen::X87Stack
    [all...]
lithium-codegen-x87.cc 524 int layout = stack_depth_;
525 for (int i = 0; i < stack_depth_; i++) {
526 layout |= (stack_[stack_depth_ - 1 - i].code() << ((i + 1) * 3));
535 DCHECK(Contains(reg) && stack_depth_ > other_slot);
557 return stack_depth_ - pos - 1;
562 for (int i = 0; i < stack_depth_; i++) {
571 for (int i = 0; i < stack_depth_; i++) {
663 stack_[stack_depth_] = reg;
670 DCHECK(!Contains(reg) && stack_[stack_depth_].is(reg) &&
671 stack_depth_ < X87Register::kMaxNumAllocatableRegisters)
    [all...]
  /art/runtime/
debugger.h 97 stack_depth_(stack_depth), method_(method) {
109 return stack_depth_;
131 const int stack_depth_; member in class:art::SingleStepControl
    [all...]

Completed in 582 milliseconds