Home
last modified time | relevance | path

Searched refs:pipeline_stats (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/src/compiler/
Dpipeline-statistics.cc21 PipelineStatistics* pipeline_stats) { in Begin() argument
23 scope_.reset(new ZoneStats::StatsScope(pipeline_stats->zone_stats_)); in Begin()
25 outer_zone_initial_size_ = pipeline_stats->OuterZoneSize(); in Begin()
28 pipeline_stats->total_stats_.outer_zone_initial_size_ + in Begin()
29 pipeline_stats->zone_stats_->GetCurrentAllocatedBytes(); in Begin()
34 PipelineStatistics* pipeline_stats, in End() argument
37 diff->function_name_ = pipeline_stats->function_name_; in End()
40 pipeline_stats->OuterZoneSize() - outer_zone_initial_size_; in End()
Dpipeline-statistics.h51 void Begin(PipelineStatistics* pipeline_stats);
52 void End(PipelineStatistics* pipeline_stats,
88 PhaseScope(PipelineStatistics* pipeline_stats, const char* name) in PhaseScope() argument
89 : pipeline_stats_(pipeline_stats) { in PhaseScope()
/third_party/mesa3d/src/intel/perf/
Dintel_perf_query.c237 } pipeline_stats; member
718 perf->vtbl.store_register_mem(ctx->ctx, obj->pipeline_stats.bo, in snapshot_statistics_registers()
894 if (query->pipeline_stats.bo) { in intel_perf_begin_query()
895 perf_cfg->vtbl.bo_unreference(query->pipeline_stats.bo); in intel_perf_begin_query()
896 query->pipeline_stats.bo = NULL; in intel_perf_begin_query()
899 query->pipeline_stats.bo = in intel_perf_begin_query()
1129 bo = query->pipeline_stats.bo; in intel_perf_wait_query()
1165 return (query->pipeline_stats.bo && in intel_perf_is_query_ready()
1166 !perf_cfg->vtbl.batch_references(current_batch, query->pipeline_stats.bo) && in intel_perf_is_query_ready()
1167 !perf_cfg->vtbl.bo_busy(query->pipeline_stats.bo)); in intel_perf_is_query_ready()
[all …]
/third_party/mesa3d/src/gallium/frontends/lavapipe/
Dlvp_query.c69 pool->pipeline_stats = pCreateInfo->pipelineStatistics; in lvp_CreateQueryPool()
127 uint32_t mask = pool->pipeline_stats; in lvp_GetQueryPoolResults()
154 uint32_t mask = pool->pipeline_stats; in lvp_GetQueryPoolResults()
Dlvp_private.h488 VkQueryPipelineStatisticFlags pipeline_stats; member
Dlvp_execute.c2904 pool->pipeline_stats & VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT) in handle_begin_query()
2936 pool->pipeline_stats & VK_QUERY_PIPELINE_STATISTIC_COMPUTE_SHADER_INVOCATIONS_BIT) in handle_begin_query_indexed_ext()
3005 num_results = util_bitcount(pool->pipeline_stats); in handle_copy_query_pool_results()
3018 u_foreach_bit(bit, pool->pipeline_stats) in handle_copy_query_pool_results()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_query.c24 VkQueryPipelineStatisticFlags pipeline_stats; member
149 VkQueryPipelineStatisticFlags pipeline_stats) in find_or_allocate_qp() argument
155 if (pool->pipeline_stats == pipeline_stats) in find_or_allocate_qp()
167 new_pool->pipeline_stats = pipeline_stats; in find_or_allocate_qp()
173 pool_create.pipelineStatistics = pipeline_stats; in find_or_allocate_qp()
470 VkQueryPipelineStatisticFlags pipeline_stats = 0; in zink_create_query() local
474 pipeline_stats = VK_QUERY_PIPELINE_STATISTIC_GEOMETRY_SHADER_PRIMITIVES_BIT | in zink_create_query()
478 pipeline_stats = pipeline_statistic_convert(index); in zink_create_query()
486 pipeline_stats = 0; in zink_create_query()
490 pipeline_stats); in zink_create_query()
/third_party/mesa3d/src/mesa/main/
Dqueryobj.c448 return &ctx->Query.pipeline_stats[which]; in get_pipe_stats_binding_point()
Dmtypes.h2396 struct gl_query_object *pipeline_stats[MAX_PIPELINE_STATISTICS]; member