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

  /external/v8/src/snapshot/
snapshot-common.cc 179 int context_length = next_context_offset - context_offset; local
180 return Vector<const byte>(context_data, context_length);
  /external/v8/src/full-codegen/
full-codegen.cc 944 int context_length = 0; local
950 current = current->Exit(&context_length);
956 if (context_length > 0) {
957 while (context_length > 0) {
959 --context_length;
976 int context_length = 0; local
982 current = current->Exit(&context_length);
988 if (context_length > 0) {
989 while (context_length > 0) {
991 --context_length;
1008 int context_length = 0; local
    [all...]
full-codegen.h 113 // {*context_length} the number of context chain links to unwind as we
115 virtual NestedStatement* Exit(int* context_length) { return previous_; }
177 NestedStatement* Exit(int* context_length) override {
180 if (block_scope->ContextLocalCount() > 0) ++(*context_length);
    [all...]
  /external/v8/src/compiler/
js-create-lowering.cc 856 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; local
952 int const context_length = scope_info->ContextLength(); local
    [all...]
ast-graph-builder.cc 200 int context_length() const { return context_length_; } function in class:v8::internal::compiler::BASE_EMBEDDED
836 environment()->TrimContextChain(current->context_length());
    [all...]

Completed in 137 milliseconds