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

  /external/v8/src/full-codegen/
full-codegen.cc 939 int context_length = 0; local
948 current->Exit(&context_length);
949 DCHECK_EQ(-1, context_length);
953 current = current->Exit(&context_length);
959 if (context_length > 0) {
960 while (context_length > 0) {
962 --context_length;
979 int context_length = 0; local
988 current->Exit(&context_length);
989 DCHECK_EQ(-1, context_length);
1019 int context_length = 0; local
    [all...]
full-codegen.h 130 // {*context_length} the number of context chain links to unwind as we
132 virtual NestedStatement* Exit(int* context_length) { return previous_; }
194 NestedStatement* Exit(int* context_length) override {
197 if (block_scope->ContextLocalCount() > 0) ++(*context_length);
211 NestedStatement* Exit(int* context_length) override {
212 if (needs_context_) ++(*context_length);
263 NestedStatement* Exit(int* context_length) override;
281 NestedStatement* Exit(int* context_length) override {
282 ++(*context_length);
    [all...]
  /external/v8/src/snapshot/
snapshot-common.cc 240 int context_length = next_context_offset - context_offset; local
241 return Vector<const byte>(context_data, context_length);
  /external/v8/src/compiler/
js-create-lowering.cc 666 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; local
667 a.AllocateArray(context_length, factory()->function_context_map());
673 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) {
737 int const context_length = scope_info->ContextLength(); local
    [all...]
ast-graph-builder.cc 199 int context_length() const { return context_length_; } function in class:v8::internal::compiler::BASE_EMBEDDED
    [all...]

Completed in 123 milliseconds