/third_party/node/deps/v8/src/compiler/ |
H A D | frame-states.h | 88 int local_count, in FrameStateFunctionInfo() 92 local_count_(local_count), in FrameStateFunctionInfo() 95 int local_count() const { return local_count_; } in local_count() function in v8::internal::compiler::FrameStateFunctionInfo 117 int local_count, in JSToWasmFrameStateFunctionInfo() 120 : FrameStateFunctionInfo(type, parameter_count, local_count, shared_info), in JSToWasmFrameStateFunctionInfo() 154 int local_count() const { in local_count() function in v8::internal::compiler::final 155 return info_ == nullptr ? 0 : info_->local_count(); in local_count() 87 FrameStateFunctionInfo(FrameStateType type, int parameter_count, int local_count, Handle<SharedFunctionInfo> shared_info) FrameStateFunctionInfo() argument 116 JSToWasmFrameStateFunctionInfo(FrameStateType type, int parameter_count, int local_count, Handle<SharedFunctionInfo> shared_info, const wasm::FunctionSig* signature) JSToWasmFrameStateFunctionInfo() argument
|
H A D | bytecode-analysis.h | 35 int local_count() const { return bit_vector_->length() - parameter_count_; } in local_count() function in v8::internal::compiler::BytecodeLoopAssignments
|
H A D | common-operator.h | 559 FrameStateType type, int parameter_count, int local_count, 563 FrameStateType type, int parameter_count, int local_count,
|
H A D | common-operator.cc | 1560 FrameStateType type, int parameter_count, int local_count, in CreateFrameStateFunctionInfo() 1562 return zone()->New<FrameStateFunctionInfo>(type, parameter_count, local_count, in CreateFrameStateFunctionInfo() 1569 FrameStateType type, int parameter_count, int local_count, in CreateJSToWasmFrameStateFunctionInfo() 1575 type, parameter_count, local_count, shared_info, signature); in CreateJSToWasmFrameStateFunctionInfo() 1559 CreateFrameStateFunctionInfo( FrameStateType type, int parameter_count, int local_count, Handle<SharedFunctionInfo> shared_info) CreateFrameStateFunctionInfo() argument 1568 CreateJSToWasmFrameStateFunctionInfo( FrameStateType type, int parameter_count, int local_count, Handle<SharedFunctionInfo> shared_info, const wasm::FunctionSig* signature) CreateJSToWasmFrameStateFunctionInfo() argument
|
H A D | bytecode-analysis.cc | 67 DCHECK_LT(index, local_count()); in ContainsLocal()
|
H A D | verifier.cc | 567 CHECK_EQ(func_info->local_count(), in Check()
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_internal_entry.h | 235 unsigned int local_count; in complete_task_assignment() local 240 local_count = m_done_count; in complete_task_assignment() 262 float num = static_cast<float>(local_count); in complete_task_assignment()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_lower_variable_initializers.c | 158 const unsigned local_count = shader->info.workgroup_size[0] * in nir_zero_initialize_shared_memory() local 189 nir_ssa_def *new_offset = nir_iadd_imm(&b, offset, chunk_size * local_count); in nir_zero_initialize_shared_memory()
|
/third_party/node/deps/v8/src/objects/ |
H A D | contexts.cc | 26 int local_count = scope_info->ContextLocalCount(); in AddLocalNamesFromContext() local 27 names_table = names_table->EnsureCapacity(isolate, names_table, local_count); in AddLocalNamesFromContext()
|
H A D | scope-info.cc | 942 int local_count = context_local_count(); in InlinedLocalNamesLookup() local 943 for (int i = 0; i < local_count; ++i) { in InlinedLocalNamesLookup()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-interface.cc | 232 int local_count = scope_info->ContextLocalCount(); in GetPrivateMembers() local 233 for (int j = 0; j < local_count; ++j) { in GetPrivateMembers() 239 private_entries_count += local_count; in GetPrivateMembers()
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | instruction-selector.cc | 3281 int locals = state_info.local_count(); in GetFrameStateDescriptorInternal()
|