Searched refs:context_length (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-async-gen.h | 27 int context_length, 32 Node* outer_promise, int context_length, 38 int context_length, in Await() argument 42 return Await(context, generator, value, outer_promise, context_length, in Await() 48 Node* outer_promise, int context_length, in AwaitOptimized() argument 54 context, generator, value, outer_promise, context_length, in AwaitOptimized() 59 int context_length, in Await() argument 63 return Await(context, generator, value, outer_promise, context_length, in Await() 69 Node* outer_promise, int context_length, in AwaitOptimized() argument 75 context_length, init_closure_context, in AwaitOptimized()
|
D | builtins-async-gen.cc | 28 int context_length, const ContextInitializer& init_closure_context, in Await() argument 31 DCHECK_GE(context_length, Context::MIN_CONTEXT_SLOTS); in Await() 35 static const int kWrappedPromiseOffset = FixedArray::SizeFor(context_length); in Await() 49 InitializeFunctionContext(native_context, closure_context, context_length); in Await() 152 int context_length, const ContextInitializer& init_closure_context, in AwaitOptimized() argument 155 DCHECK_GE(context_length, Context::MIN_CONTEXT_SLOTS); in AwaitOptimized() 164 FixedArray::SizeFor(context_length); in AwaitOptimized() 180 InitializeFunctionContext(native_context, closure_context, context_length); in AwaitOptimized()
|
/external/v8/src/compiler/ |
D | js-create-lowering.cc | 1238 int context_length = slot_count + Context::MIN_CONTEXT_SLOTS; in ReduceJSCreateFunctionContext() local 1250 a.AllocateContext(context_length, map); in ReduceJSCreateFunctionContext() 1257 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) { in ReduceJSCreateFunctionContext() 1317 int const context_length = scope_info.ContextLength(); in ReduceJSCreateBlockContext() local 1320 if (context_length < kBlockContextAllocationLimit) { in ReduceJSCreateBlockContext() 1329 a.AllocateContext(context_length, factory()->block_context_map()); in ReduceJSCreateBlockContext() 1336 for (int i = Context::MIN_CONTEXT_SLOTS; i < context_length; ++i) { in ReduceJSCreateBlockContext()
|
/external/v8/src/snapshot/ |
D | snapshot-common.cc | 615 uint32_t context_length = next_context_offset - context_offset; in ExtractContextData() local 616 return Vector<const byte>(context_data, context_length); in ExtractContextData()
|