Home
last modified time | relevance | path

Searched refs:stack_depth_ (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.h357 : stack_depth_(0), is_mutable_(true), masm_(masm) { } in X87Stack()
359 : stack_depth_(other.stack_depth_), is_mutable_(false), masm_(masm()) { in X87Stack()
360 for (int i = 0; i < stack_depth_; i++) { in X87Stack()
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_; } in depth()
391 stack_depth_--; in pop()
395 DCHECK(stack_depth_ < X87Register::kMaxNumAllocatableRegisters); in push()
[all …]
Dlithium-codegen-x87.cc423 int layout = stack_depth_; in GetLayout()
424 for (int i = 0; i < stack_depth_; i++) { in GetLayout()
425 layout |= (stack_[stack_depth_ - 1 - i].code() << ((i + 1) * 3)); in GetLayout()
434 DCHECK(Contains(reg) && stack_depth_ > other_slot); in Fxch()
456 return stack_depth_ - pos - 1; in st2idx()
461 for (int i = 0; i < stack_depth_; i++) { in ArrayIndex()
470 for (int i = 0; i < stack_depth_; i++) { in Contains()
562 stack_[stack_depth_] = reg; in PrepareToWrite()
569 DCHECK(!Contains(reg) && stack_[stack_depth_].is(reg) && in CommitWrite()
570 stack_depth_ < X87Register::kMaxNumAllocatableRegisters); in CommitWrite()
[all …]
/external/libchrome/base/json/
Djson_parser.h240 int stack_depth_; variable
Djson_parser.cc199 stack_depth_(0), in JSONParser()
500 StackMarker depth_check(&stack_depth_); in ConsumeDictionary()
564 StackMarker depth_check(&stack_depth_); in ConsumeList()
/external/v8/src/profiler/
Dsampling-heap-profiler.cc65 stack_depth_(stack_depth), in SamplingHeapProfiler()
161 while (!it.done() && frames_captured < stack_depth_) { in AddStack()
Dsampling-heap-profiler.h150 const int stack_depth_; variable