Searched refs:query (Results 1 - 25 of 427) sorted by relevance

1234567891011>>

/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/core/core/
H A Dtimestamp.hpp35 /// Emit a timestamp query that is executed asynchronously by
38 class query { class in namespace:clover::timestamp
40 query(command_queue &q);
41 query(query &&other);
42 ~query();
44 query &operator=(const query &) = delete;
47 /// Retrieve the query results.
64 /// Retrieve the query result
[all...]
H A Dtimestamp.cpp30 timestamp::query::query(command_queue &q) : function in class:timestamp::query
36 timestamp::query::query(query &&other) : function in class:timestamp::query
42 timestamp::query::~query() {
48 timestamp::query::operator()() const {
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/core/
H A Dtimestamp.hpp35 /// Emit a timestamp query that is executed asynchronously by
38 class query { class in namespace:clover::timestamp
40 query(command_queue &q);
41 query(query &&other);
42 ~query();
44 query &operator=(const query &) = delete;
47 /// Retrieve the query results.
64 /// Retrieve the query result
[all...]
H A Dtimestamp.cpp30 timestamp::query::query(command_queue &q) : function in class:timestamp::query
36 timestamp::query::query(query &&other) : function in class:timestamp::query
42 timestamp::query::~query() {
48 timestamp::query::operator()() const {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dbrw_performance_query_mdapi.c31 fill_mdapi_perf_query_counter(struct gen_perf_query_info *query, argument
37 struct gen_perf_query_counter *counter = &query->counters[query->n_counters];
39 assert(query->n_counters <= query->max_counters);
47 query->n_counters++;
49 assert(counter->offset + gen_perf_query_counter_get_size(counter) <= query->data_size);
52 #define MDAPI_QUERY_ADD_COUNTER(query, struct_name, field_name, type_name) \
53 fill_mdapi_perf_query_counter(query, #field_name, \
58 #define MDAPI_QUERY_ADD_ARRAY_COUNTER(ctx, query, struct_nam
71 struct gen_perf_query_info *query = NULL; local in function:brw_perf_query_register_mdapi_oa_query
213 struct gen_perf_query_info *query = local in function:brw_perf_query_register_mdapi_statistic_query
[all...]
H A Dbrw_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
122 * Wait on the query object's BO and calculate the final result.
126 struct brw_query_object *query)
136 if (query->bo == NULL)
139 /* If the application has requested the query result, but this batch is
143 if (brw_batch_references(&brw->batch, query->bo))
147 if (brw_bo_busy(query->bo)) {
148 perf_debug("Stalling on the GPU waiting for a query object.\n");
152 results = brw_bo_map(brw, query->bo, MAP_READ);
153 switch (query
125 brw_queryobj_get_results(struct gl_context * ctx,struct brw_query_object * query) argument
221 struct brw_query_object *query; local in function:brw_new_query_object
239 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_delete_query
255 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_begin_query
328 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_end_query
382 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_wait_query
401 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_check_query
429 ensure_bo_has_space(struct gl_context * ctx,struct brw_query_object * query) argument
475 struct brw_query_object *query = brw->query.obj; local in function:brw_emit_query_begin
499 struct brw_query_object *query = brw->query.obj; local in function:brw_emit_query_end
521 struct brw_query_object *query = (struct brw_query_object *) q; local in function:brw_query_counter
574 brw_is_query_pipelined(struct brw_query_object * query) argument
[all...]
H A Dgen6_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
43 set_query_availability(struct brw_context *brw, struct brw_query_object *query, argument
47 * query availability for "pipelined" queries.
62 brw_is_query_pipelined(query)) {
66 /* Order available *after* the query results. */
74 query->bo, 2 * sizeof(uint64_t),
220 * Wait on the query object's BO and calculate the final result.
224 struct brw_query_object *query)
229 if (query->bo == NULL)
232 uint64_t *results = brw_bo_map(brw, query
223 gen6_queryobj_get_results(struct gl_context * ctx,struct brw_query_object * query) argument
328 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gen6_begin_query
417 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gen6_end_query
481 flush_batch_if_needed(struct brw_context * brw,struct brw_query_object * query) argument
502 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gen6_wait_query
522 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gen6_check_query
548 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gen6_query_counter
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/perf/
H A Dintel_perf_private.h40 intel_perf_query_add_stat_reg(struct intel_perf_query_info *query, uint32_t reg, argument
46 assert(query->n_counters < query->max_counters);
48 counter = &query->counters[query->n_counters];
53 counter->offset = sizeof(uint64_t) * query->n_counters;
58 query->n_counters++;
62 intel_perf_query_add_basic_stat_reg(struct intel_perf_query_info *query, argument
65 intel_perf_query_add_stat_reg(query, reg, 1, 1, name, name);
71 struct intel_perf_query_info *query; local in function:intel_perf_append_query_info
[all...]
H A Dintel_perf_mdapi.c37 const struct intel_perf_query_info *query,
57 mdapi_data->PerfCounter1 = result->accumulator[query->perfcnt_offset + 0];
58 mdapi_data->PerfCounter2 = result->accumulator[query->perfcnt_offset + 1];
81 mdapi_data->PerfCounter1 = result->accumulator[query->perfcnt_offset + 0];
82 mdapi_data->PerfCounter2 = result->accumulator[query->perfcnt_offset + 1];
115 mdapi_data->PerfCounter1 = result->accumulator[query->perfcnt_offset + 0];
116 mdapi_data->PerfCounter2 = result->accumulator[query->perfcnt_offset + 1];
146 struct intel_perf_query_info *query = local in function:intel_perf_register_mdapi_statistic_query
149 query->kind = INTEL_PERF_QUERY_TYPE_PIPELINE;
150 query
35 intel_perf_query_result_write_mdapi(void * data,uint32_t data_size,const struct intel_device_info * devinfo,const struct intel_perf_query_info * query,const struct intel_perf_query_result * result) argument
196 fill_mdapi_perf_query_counter(struct intel_perf_query_info * query,const char * name,uint32_t data_offset,uint32_t data_size,enum intel_perf_counter_data_type data_type) argument
235 struct intel_perf_query_info *query = NULL; local in function:intel_perf_register_mdapi_oa_query
[all...]
/xsrc/external/mit/MesaLib.old/src/intel/perf/
H A Dgen_perf_metrics.c44 const struct gen_perf_query_info *query,
48 uint64_t tmp0 = accumulator[query->c_offset + 2];
56 const struct gen_perf_query_info *query,
60 uint64_t tmp0 = accumulator[query->a_offset + 0];
66 double tmp6 = hsw__render_basic__gpu_core_clocks__read(perf, query, accumulator);
75 const struct gen_perf_query_info *query,
79 uint64_t tmp0 = accumulator[query->a_offset + 13];
85 double tmp6 = hsw__render_basic__gpu_core_clocks__read(perf, query, accumulator);
94 const struct gen_perf_query_info *query,
98 uint64_t tmp0 = accumulator[query
43 hsw__render_basic__gpu_core_clocks__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
55 hsw__render_basic__eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
74 hsw__render_basic__ds_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
93 hsw__render_basic__alpha_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
105 hsw__render_basic__sampler1_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
121 hsw__render_basic__ds_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
133 hsw__render_basic__ds_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
148 hsw__render_basic__gs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
160 hsw__render_basic__gs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
179 hsw__render_basic__cs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
198 hsw__render_basic__vs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
217 hsw__render_basic__hs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
236 hsw__render_basic__ds_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
255 hsw__render_basic__gs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
274 hsw__render_basic__ps_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
293 hsw__render_basic__cs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
312 hsw__render_basic__eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
331 hsw__render_basic__vs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
350 hsw__render_basic__hs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
369 hsw__render_basic__ps_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
388 hsw__render_basic__gpu_time__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
404 hsw__render_basic__cs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
456 hsw__render_basic__vs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
468 hsw__render_basic__ps_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
480 hsw__render_basic__sampler0_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
496 hsw__render_basic__sampler1_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
512 hsw__render_basic__samplers_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
533 hsw__render_basic__ds_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
585 hsw__render_basic__gti_vf_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
598 hsw__render_basic__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
611 hsw__render_basic__cs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
623 hsw__render_basic__cs_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
638 hsw__render_basic__sampler0_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
654 hsw__render_basic__gs_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
669 hsw__render_basic__sampler0_texels__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
682 hsw__render_basic__sampler1_texels__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
695 hsw__render_basic__sampler_texels__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
708 hsw__render_basic__gs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
760 hsw__render_basic__avg_gpu_core_frequency__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
784 hsw__render_basic__eu_idle__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
797 hsw__render_basic__gti_depth_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
810 hsw__render_basic__gti_write_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
823 hsw__render_basic__ps_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
838 hsw__render_basic__gti_l3_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
851 hsw__render_basic__vs_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
866 hsw__render_basic__samples_blended__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
880 hsw__render_basic__gpu_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
896 hsw__render_basic__ps_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
911 hsw__render_basic__early_depth_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
923 hsw__render_basic__hs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
975 hsw__render_basic__ds_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
990 hsw__render_basic__gs_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1005 hsw__render_basic__hs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1017 hsw__render_basic__hs_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1032 hsw__render_basic__samples_killed_in_ps__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1044 hsw__render_basic__post_ps_depth_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1057 hsw__render_basic__sampler_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1071 hsw__render_basic__hs_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1086 hsw__render_basic__ps_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1138 hsw__render_basic__hi_depth_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1150 hsw__render_basic__cs_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1165 hsw__render_basic__post_ps_stencil_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1177 hsw__render_basic__gti_rcc_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1190 hsw__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1207 hsw__render_basic__vs_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1222 hsw__render_basic__vs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1274 hsw__render_basic__samples_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1298 hsw__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1350 hsw__compute_basic__untyped_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1370 hsw__compute_basic__typed_atomics__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1397 hsw__compute_basic__slm_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1465 hsw__compute_basic__untyped_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1481 hsw__compute_basic__slm_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1549 hsw__compute_basic__typed_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1573 hsw__compute_extended__eu_untyped_writes0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1585 hsw__compute_extended__untyped_writes0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1597 hsw__compute_extended__untyped_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1615 hsw__compute_extended__typed_writes0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1627 hsw__compute_extended__eu_typed_atomics0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1639 hsw__compute_extended__typed_atomics0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1651 hsw__compute_extended__typed_atomics_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1665 hsw__compute_extended__eu_untyped_reads0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1677 hsw__compute_extended__eu_untyped_atomics0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1689 hsw__compute_extended__gpu_clocks__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1705 hsw__compute_extended__eu_typed_writes0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1717 hsw__compute_extended__typed_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1731 hsw__compute_extended__eu_typed_reads0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1743 hsw__compute_extended__eu_urb_atomics0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1755 hsw__compute_extended__untyped_reads0__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1767 hsw__compute_extended__untyped_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1785 hsw__compute_extended__typed_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1799 hsw__memory_reads__gpu_core_clocks__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1811 hsw__memory_reads__eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1830 hsw__memory_reads__ds_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1865 hsw__memory_reads__gs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1888 hsw__memory_reads__llc_read_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1904 hsw__memory_reads__gti_memory_reads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1936 hsw__memory_reads__avg_gpu_core_frequency__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1963 hsw__memory_reads__ds_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
1986 hsw__memory_reads__hs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2005 hsw__memory_reads__gpu_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2033 hsw__memory_reads__gs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2052 hsw__memory_reads__ps_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2091 hsw__memory_reads__hs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2122 hsw__memory_reads__ps_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2141 hsw__memory_reads__eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2168 hsw__memory_reads__vs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2187 hsw__memory_reads__cs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2230 hsw__memory_reads__cs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2257 hsw__memory_reads__vs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2388 hsw__memory_writes__llc_wr_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2505 hsw__sampler_balance__eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2524 hsw__sampler_balance__ds_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2543 hsw__sampler_balance__sampler3_l2_cache_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2573 hsw__sampler_balance__gs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2592 hsw__sampler_balance__cs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2611 hsw__sampler_balance__vs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2630 hsw__sampler_balance__hs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2649 hsw__sampler_balance__ds_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2668 hsw__sampler_balance__gs_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2687 hsw__sampler_balance__ps_eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2706 hsw__sampler_balance__cs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2725 hsw__sampler_balance__eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2744 hsw__sampler_balance__vs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2763 hsw__sampler_balance__hs_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2782 hsw__sampler_balance__ps_eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2805 hsw__sampler_balance__cs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2865 hsw__sampler_balance__ds_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2917 hsw__sampler_balance__gs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
2977 hsw__sampler_balance__sampler_l2_cache_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3007 hsw__sampler_balance__sampler2_l2_cache_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3021 hsw__sampler_balance__avg_gpu_core_frequency__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3040 hsw__sampler_balance__eu_idle__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3061 hsw__sampler_balance__gpu_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3085 hsw__sampler_balance__hs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3165 hsw__sampler_balance__ps_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3217 hsw__sampler_balance__sampler1_l2_cache_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3243 hsw__sampler_balance__sampler0_l2_cache_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3261 hsw__sampler_balance__vs_duration__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3317 bdw__render_basic__gpu_core_clocks__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3329 bdw__render_basic__eu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3356 bdw__render_basic__eu_fpu_both_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3375 bdw__render_basic__sampler_l1_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3390 bdw__render_basic__vs_send_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3409 bdw__render_basic__sampler1_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3425 bdw__render_basic__vs_fpu1_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3448 bdw__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3460 bdw__render_basic__hi_depth_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3473 bdw__render_basic__ps_eu_both_fpu_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3492 bdw__render_basic__vs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3504 bdw__render_basic__ps_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3516 bdw__render_basic__sampler0_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3532 bdw__render_basic__sampler1_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3548 bdw__render_basic__samplers_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3562 bdw__render_basic__gti_vf_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3581 bdw__render_basic__sampler0_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3597 bdw__render_basic__sampler_texels__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3610 bdw__render_basic__pixels_failing_post_ps_tests__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3627 bdw__render_basic__avg_gpu_core_frequency__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3646 bdw__render_basic__sampler_texel_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3659 bdw__render_basic__cs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3671 bdw__render_basic__shader_memory_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3683 bdw__render_basic__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3695 bdw__render_basic__slm_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3708 bdw__render_basic__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3721 bdw__render_basic__ps_fpu1_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3740 bdw__render_basic__ps_send_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3759 bdw__render_basic__rasterized_pixels__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3772 bdw__render_basic__gpu_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3788 bdw__render_basic__gti_depth_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3803 bdw__render_basic__vs_fpu0_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3822 bdw__render_basic__ps_fpu0_active__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3841 bdw__render_basic__ds_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3853 bdw__render_basic__samples_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3866 bdw__render_basic__eu_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3885 bdw__render_basic__samples_blended__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3898 bdw__render_basic__early_depth_test_fails__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3911 bdw__render_basic__sampler_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3925 bdw__render_basic__gti_hdc_lookups_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3938 bdw__render_basic__gti_rcc_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3953 bdw__render_basic__hs_threads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3969 bdw__render_basic__slm_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3982 bdw__render_basic__l3_shader_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
3998 bdw__render_basic__samples_killed_in_ps__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4011 bdw__render_basic__shader_atomics__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4031 bdw__compute_basic__untyped_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4053 bdw__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4079 bdw__compute_basic__eu_avg_ipc_rate__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4156 bdw__compute_basic__untyped_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4182 bdw__compute_basic__typed_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4204 bdw__compute_basic__eu_thread_occupancy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4287 bdw__render_pipe_profile__hi_depth_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4323 bdw__render_pipe_profile__bc_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4339 bdw__render_pipe_profile__hs_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4387 bdw__render_pipe_profile__vf_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4407 bdw__render_pipe_profile__sf_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4423 bdw__render_pipe_profile__sampler_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4435 bdw__render_pipe_profile__sf_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4459 bdw__render_pipe_profile__cl_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4475 bdw__render_pipe_profile__so_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4511 bdw__render_pipe_profile__cl_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4527 bdw__render_pipe_profile__ds_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4543 bdw__render_pipe_profile__early_depth_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4587 bdw__render_pipe_profile__so_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4623 bdw__memory_reads__gti_ring_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
4780 bdw__memory_reads__gti_l3_reads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5026 bdw__compute_extended__untyped_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5105 bdw__compute_extended__untyped_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5152 bdw__compute_l3_cache__l3_bank03_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5165 bdw__compute_l3_cache__l3_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5196 bdw__compute_l3_cache__l3_total_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5240 bdw__compute_l3_cache__eu_hybrid_fpu0_instruction__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5259 bdw__compute_l3_cache__l3_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5277 bdw__compute_l3_cache__l3_bank00_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5290 bdw__compute_l3_cache__eu_move_fpu0_instruction__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5317 bdw__compute_l3_cache__l3_bank10_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5330 bdw__compute_l3_cache__eu_hybrid_fpu1_instruction__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5373 bdw__compute_l3_cache__l3_bank10_ic_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5389 bdw__compute_l3_cache__l3_bank10_ic_hits__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5407 bdw__compute_l3_cache__gti_l3_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5422 bdw__compute_l3_cache__l3_bank00_ic_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5438 bdw__compute_l3_cache__l3_bank00_ic_hits__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5452 bdw__compute_l3_cache__l3_bank01_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5489 bdw__compute_l3_cache__eu_move_fpu1_instruction__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5524 bdw__compute_l3_cache__l3_bank02_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5537 bdw__compute_l3_cache__l3_bank13_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5574 bdw__compute_l3_cache__l3_bank12_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5707 bdw__data_port_reads_coalescing__eu_bytes_read_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5728 bdw__data_port_reads_coalescing__eu_data_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5758 bdw__data_port_reads_coalescing__hdc0_l3_reads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5788 bdw__data_port_writes_coalescing__eu_hdc0_writes192_b__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5867 bdw__data_port_writes_coalescing__eu_hdc0_writes256_b_simd16__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5894 bdw__data_port_writes_coalescing__eu_hdc0_writes96_b__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5925 bdw__data_port_writes_coalescing__eu_hdc0_writes64_b__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5939 bdw__data_port_writes_coalescing__eu_hdc0_writes128_b__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5954 bdw__data_port_writes_coalescing__eu_bytes_written_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
5981 bdw__data_port_writes_coalescing__eu_data_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6067 bdw__hdc_and_sf__non_sampler_shader12_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6113 bdw__hdc_and_sf__non_sampler_shader01_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6135 bdw__hdc_and_sf__non_sampler_shader02_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6173 bdw__hdc_and_sf__non_sampler_shader10_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6227 bdw__hdc_and_sf__non_sampler_shader11_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6249 bdw__hdc_and_sf__l3_shader_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
6269 bdw__hdc_and_sf__non_sampler_shader00_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
7855 bdw__compute_extra__fpu1_active_adjusted__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
7915 bdw__vme_pipe__eu_thread_occupancy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
7942 bdw__vme_pipe__vme_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8143 chv__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8180 chv__render_basic__samplers_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8345 chv__compute_basic__untyped_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8364 chv__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8451 chv__compute_basic__gti_ring_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
8476 chv__compute_basic__typed_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
10519 sklgt2__render_basic__sampler_l1_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
10548 sklgt2__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
10632 sklgt2__render_basic__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
11576 sklgt2__compute_l3_cache__l3_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
11767 sklgt2__compute_l3_cache__l3_total_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
13119 sklgt2__compute_extra__fpu1_active_adjusted__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
13285 sklgt2__pma__stall__stc_pma_stall__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
16066 sklgt4__render_basic__sampler_l1_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
16095 sklgt4__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
16179 sklgt4__render_basic__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
29947 bxt__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
30031 bxt__compute_basic__untyped_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34467 cnl__render_basic__l3_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34489 cnl__render_basic__sampler_l1_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34521 cnl__render_basic__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34557 cnl__render_basic__samplers_busy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34621 cnl__render_basic__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34641 cnl__render_basic__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34670 cnl__render_basic__gti_depth_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34715 cnl__render_basic__sampler_bottleneck__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34739 cnl__render_basic__gti_rcc_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34758 cnl__render_basic__gti_write_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34771 cnl__render_basic__l3_shader_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34808 cnl__compute_basic__untyped_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34840 cnl__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34875 cnl__compute_basic__eu_avg_ipc_rate__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34960 cnl__compute_basic__untyped_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
34996 cnl__compute_basic__typed_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35035 cnl__compute_basic__eu_thread_occupancy__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35438 cnl__memory_reads__gti_l3_reads__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35647 cnl__compute_extended__typed_atomics_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35689 cnl__compute_extended__untyped_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35740 cnl__compute_extended__typed_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35778 cnl__compute_extended__untyped_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35797 cnl__compute_extended__typed_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35843 cnl__compute_l3_cache__l3_bank00_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35856 cnl__compute_l3_cache__l3_bank01_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35877 cnl__compute_l3_cache__l3_bank11_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35890 cnl__compute_l3_cache__l3_bank12_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35903 cnl__compute_l3_cache__l3_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
35923 cnl__compute_l3_cache__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36024 cnl__compute_l3_cache__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36102 cnl__compute_l3_cache__l3_total_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36218 cnl__hdc_and_sf__non_sampler_shader01_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36240 cnl__hdc_and_sf__non_sampler_shader02_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36278 cnl__hdc_and_sf__non_sampler_shader10_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36332 cnl__hdc_and_sf__non_sampler_shader11_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
36358 cnl__hdc_and_sf__non_sampler_shader00_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37152 cnl__tdl_1__non_ps_thread02_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37180 cnl__tdl_1__non_ps_thread10_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37212 cnl__tdl_1__non_ps_thread00_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37292 cnl__tdl_1__non_ps_thread11_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37336 cnl__tdl_1__non_ps_thread01_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37604 icl__render_basic__sampler_l1_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37691 icl__render_basic__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37766 icl__render_basic__gti_write_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37805 icl__compute_basic__untyped_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37825 icl__compute_basic__typed_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37881 icl__compute_basic__typed_atomics__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37923 icl__compute_basic__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37942 icl__compute_basic__untyped_bytes_written__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
37966 icl__compute_basic__typed_bytes_read__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38038 icl__compute_extended__untyped_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38066 icl__compute_extended__typed_atomics_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38080 icl__compute_extended__eu_a64_untyped_reads00__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38096 icl__compute_extended__eu_a32_untyped_writes00__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38142 icl__compute_extended__typed_writes_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38172 icl__compute_extended__untyped_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38198 icl__compute_extended__typed_reads_per_cache_line__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38224 icl__compute_l3_cache__l3_bank03_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38237 icl__compute_l3_cache__l3_bank00_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38254 icl__compute_l3_cache__l3_bank02_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38283 icl__compute_l3_cache__l3_accesses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38305 icl__compute_l3_cache__l3_sampler_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38361 icl__compute_l3_cache__l3_misses__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38416 icl__compute_l3_cache__l3_lookups__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38437 icl__compute_l3_cache__gti_read_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38466 icl__compute_l3_cache__gti_l3_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38510 icl__compute_l3_cache__l3_total_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38522 icl__compute_l3_cache__gti_write_throughput__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38811 icl__hdc_and_sf__non_sampler_shader01_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38833 icl__hdc_and_sf__non_sampler_shader02_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38915 icl__hdc_and_sf__non_sampler_shader00_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
38937 icl__hdc_and_sf__non_sampler_shader03_access_stalled_on_l3__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
39403 icl__l3_2__l30_bank0_stalled__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
39812 icl__l3_5__l30_bank5_stalled__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40281 icl__tdl_1__ps_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40301 icl__tdl_1__vs_eu_stall_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40329 icl__tdl_1__ps_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40409 icl__tdl_1__vs_eu_active_per_thread__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40497 icl__tdl_2__non_ps_thread02_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40519 icl__tdl_2__non_ps_thread03_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40561 icl__tdl_2__non_ps_thread00_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40603 icl__tdl_2__non_ps_thread07_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40649 icl__tdl_2__non_ps_thread06_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40675 icl__tdl_2__non_ps_thread05_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40693 icl__tdl_2__non_ps_thread04_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
40727 icl__tdl_2__non_ps_thread01_ready_for_dispatch__read(MAYBE_UNUSED struct gen_perf * perf,const struct gen_perf_query_info * query,const uint64_t * accumulator) argument
41078 static struct gen_perf_query_info *query = &hsw_render_basic_query; local in function:hsw_register_render_basic_counter_query
41801 static struct gen_perf_query_info *query = &hsw_compute_basic_query; local in function:hsw_register_compute_basic_counter_query
42344 static struct gen_perf_query_info *query = &hsw_compute_extended_query; local in function:hsw_register_compute_extended_counter_query
42604 static struct gen_perf_query_info *query = &hsw_memory_reads_query; local in function:hsw_register_memory_reads_counter_query
43181 static struct gen_perf_query_info *query = &hsw_memory_writes_query; local in function:hsw_register_memory_writes_counter_query
43749 static struct gen_perf_query_info *query = &hsw_sampler_balance_query; local in function:hsw_register_sampler_balance_counter_query
44358 static struct gen_perf_query_info *query = &bdw_render_basic_query; local in function:bdw_register_render_basic_counter_query
45119 static struct gen_perf_query_info *query = &bdw_compute_basic_query; local in function:bdw_register_compute_basic_counter_query
45718 static struct gen_perf_query_info *query = &bdw_render_pipe_profile_query; local in function:bdw_register_render_pipe_profile_counter_query
46302 static struct gen_perf_query_info *query = &bdw_memory_reads_query; local in function:bdw_register_memory_reads_counter_query
46814 static struct gen_perf_query_info *query = &bdw_memory_writes_query; local in function:bdw_register_memory_writes_counter_query
47316 static struct gen_perf_query_info *query = &bdw_compute_extended_query; local in function:bdw_register_compute_extended_counter_query
48400 static struct gen_perf_query_info *query = &bdw_compute_l3_cache_query; local in function:bdw_register_compute_l3_cache_counter_query
49122 static struct gen_perf_query_info *query = &bdw_data_port_reads_coalescing_query; local in function:bdw_register_data_port_reads_coalescing_counter_query
49633 static struct gen_perf_query_info *query = &bdw_data_port_writes_coalescing_query; local in function:bdw_register_data_port_writes_coalescing_counter_query
50167 static struct gen_perf_query_info *query = &bdw_hdc_and_sf_query; local in function:bdw_register_hdc_and_sf_counter_query
50719 static struct gen_perf_query_info *query = &bdw_l3_1_query; local in function:bdw_register_l3_1_counter_query
51247 static struct gen_perf_query_info *query = &bdw_l3_2_query; local in function:bdw_register_l3_2_counter_query
51762 static struct gen_perf_query_info *query = &bdw_l3_3_query; local in function:bdw_register_l3_3_counter_query
52293 static struct gen_perf_query_info *query = &bdw_l3_4_query; local in function:bdw_register_l3_4_counter_query
52823 static struct gen_perf_query_info *query = &bdw_rasterizer_and_pixel_backend_query; local in function:bdw_register_rasterizer_and_pixel_backend_counter_query
53436 static struct gen_perf_query_info *query = &bdw_sampler_1_query; local in function:bdw_register_sampler_1_counter_query
54011 static struct gen_perf_query_info *query = &bdw_sampler_2_query; local in function:bdw_register_sampler_2_counter_query
54574 static struct gen_perf_query_info *query = &bdw_tdl_1_query; local in function:bdw_register_tdl_1_counter_query
55246 static struct gen_perf_query_info *query = &bdw_tdl_2_query; local in function:bdw_register_tdl_2_counter_query
55922 static struct gen_perf_query_info *query = &bdw_compute_extra_query; local in function:bdw_register_compute_extra_counter_query
56122 static struct gen_perf_query_info *query = &bdw_vme_pipe_query; local in function:bdw_register_vme_pipe_counter_query
56364 static struct gen_perf_query_info *query = &bdw_gpu_busyness_query; local in function:bdw_register_gpu_busyness_counter_query
56536 static struct gen_perf_query_info *query = &bdw_test_oa_query; local in function:bdw_register_test_oa_counter_query
56725 static struct gen_perf_query_info *query = &bdw_stc__pma_stall_query; local in function:bdw_register_stc__pma_stall_counter_query
56944 static struct gen_perf_query_info *query = &chv_render_basic_query; local in function:chv_register_render_basic_counter_query
57528 static struct gen_perf_query_info *query = &chv_compute_basic_query; local in function:chv_register_compute_basic_counter_query
58009 static struct gen_perf_query_info *query = &chv_render_pipe_profile_query; local in function:chv_register_render_pipe_profile_counter_query
58563 static struct gen_perf_query_info *query = &chv_hdc_and_sf_query; local in function:chv_register_hdc_and_sf_counter_query
59115 static struct gen_perf_query_info *query = &chv_l3_1_query; local in function:chv_register_l3_1_counter_query
59643 static struct gen_perf_query_info *query = &chv_l3_2_query; local in function:chv_register_l3_2_counter_query
60158 static struct gen_perf_query_info *query = &chv_l3_3_query; local in function:chv_register_l3_3_counter_query
60689 static struct gen_perf_query_info *query = &chv_l3_4_query; local in function:chv_register_l3_4_counter_query
61219 static struct gen_perf_query_info *query = &chv_rasterizer_and_pixel_backend_query; local in function:chv_register_rasterizer_and_pixel_backend_counter_query
61832 static struct gen_perf_query_info *query = &chv_sampler_1_query; local in function:chv_register_sampler_1_counter_query
62407 static struct gen_perf_query_info *query = &chv_sampler_2_query; local in function:chv_register_sampler_2_counter_query
62970 static struct gen_perf_query_info *query = &chv_tdl_1_query; local in function:chv_register_tdl_1_counter_query
63642 static struct gen_perf_query_info *query = &chv_tdl_2_query; local in function:chv_register_tdl_2_counter_query
64315 static struct gen_perf_query_info *query = &chv_test_oa_query; local in function:chv_register_test_oa_counter_query
64525 static struct gen_perf_query_info *query = &sklgt2_render_basic_query; local in function:sklgt2_register_render_basic_counter_query
65134 static struct gen_perf_query_info *query = &sklgt2_compute_basic_query; local in function:sklgt2_register_compute_basic_counter_query
65708 static struct gen_perf_query_info *query = &sklgt2_render_pipe_profile_query; local in function:sklgt2_register_render_pipe_profile_counter_query
66407 static struct gen_perf_query_info *query = &sklgt2_memory_reads_query; local in function:sklgt2_register_memory_reads_counter_query
67041 static struct gen_perf_query_info *query = &sklgt2_memory_writes_query; local in function:sklgt2_register_memory_writes_counter_query
67718 static struct gen_perf_query_info *query = &sklgt2_compute_extended_query; local in function:sklgt2_register_compute_extended_counter_query
68212 static struct gen_perf_query_info *query = &sklgt2_compute_l3_cache_query; local in function:sklgt2_register_compute_l3_cache_counter_query
68840 static struct gen_perf_query_info *query = &sklgt2_hdc_and_sf_query; local in function:sklgt2_register_hdc_and_sf_counter_query
69316 static struct gen_perf_query_info *query = &sklgt2_l3_1_query; local in function:sklgt2_register_l3_1_counter_query
69825 static struct gen_perf_query_info *query = &sklgt2_l3_2_query; local in function:sklgt2_register_l3_2_counter_query
70277 static struct gen_perf_query_info *query = &sklgt2_l3_3_query; local in function:sklgt2_register_l3_3_counter_query
70728 static struct gen_perf_query_info *query = &sklgt2_rasterizer_and_pixel_backend_query; local in function:sklgt2_register_rasterizer_and_pixel_backend_counter_query
71196 static struct gen_perf_query_info *query = &sklgt2_sampler_query; local in function:sklgt2_register_sampler_counter_query
71715 static struct gen_perf_query_info *query = &sklgt2_tdl_1_query; local in function:sklgt2_register_tdl_1_counter_query
72239 static struct gen_perf_query_info *query = &sklgt2_tdl_2_query; local in function:sklgt2_register_tdl_2_counter_query
72725 static struct gen_perf_query_info *query = &sklgt2_compute_extra_query; local in function:sklgt2_register_compute_extra_counter_query
72864 static struct gen_perf_query_info *query = &sklgt2_vme_pipe_query; local in function:sklgt2_register_vme_pipe_counter_query
73081 static struct gen_perf_query_info *query = &sklgt2_gpu_busyness_query; local in function:sklgt2_register_gpu_busyness_counter_query
73239 static struct gen_perf_query_info *query = &sklgt2_test_oa_query; local in function:sklgt2_register_test_oa_counter_query
73426 static struct gen_perf_query_info *query = &sklgt2_pma__stall_query; local in function:sklgt2_register_pma__stall_counter_query
73570 static struct gen_perf_query_info *query = &sklgt3_render_basic_query; local in function:sklgt3_register_render_basic_counter_query
74190 static struct gen_perf_query_info *query = &sklgt3_compute_basic_query; local in function:sklgt3_register_compute_basic_counter_query
74680 static struct gen_perf_query_info *query = &sklgt3_render_pipe_profile_query; local in function:sklgt3_register_render_pipe_profile_counter_query
75258 static struct gen_perf_query_info *query = &sklgt3_memory_reads_query; local in function:sklgt3_register_memory_reads_counter_query
75762 static struct gen_perf_query_info *query = &sklgt3_memory_writes_query; local in function:sklgt3_register_memory_writes_counter_query
76266 static struct gen_perf_query_info *query = &sklgt3_compute_extended_query; local in function:sklgt3_register_compute_extended_counter_query
76757 static struct gen_perf_query_info *query = &sklgt3_compute_l3_cache_query; local in function:sklgt3_register_compute_l3_cache_counter_query
77384 static struct gen_perf_query_info *query = &sklgt3_hdc_and_sf_query; local in function:sklgt3_register_hdc_and_sf_counter_query
77859 static struct gen_perf_query_info *query = &sklgt3_l3_1_query; local in function:sklgt3_register_l3_1_counter_query
78367 static struct gen_perf_query_info *query = &sklgt3_l3_2_query; local in function:sklgt3_register_l3_2_counter_query
78818 static struct gen_perf_query_info *query = &sklgt3_l3_3_query; local in function:sklgt3_register_l3_3_counter_query
79268 static struct gen_perf_query_info *query = &sklgt3_rasterizer_and_pixel_backend_query; local in function:sklgt3_register_rasterizer_and_pixel_backend_counter_query
79735 static struct gen_perf_query_info *query = &sklgt3_sampler_query; local in function:sklgt3_register_sampler_counter_query
80253 static struct gen_perf_query_info *query = &sklgt3_tdl_1_query; local in function:sklgt3_register_tdl_1_counter_query
80776 static struct gen_perf_query_info *query = &sklgt3_tdl_2_query; local in function:sklgt3_register_tdl_2_counter_query
81255 static struct gen_perf_query_info *query = &sklgt3_compute_extra_query; local in function:sklgt3_register_compute_extra_counter_query
81416 static struct gen_perf_query_info *query = &sklgt3_vme_pipe_query; local in function:sklgt3_register_vme_pipe_counter_query
81644 static struct gen_perf_query_info *query = &sklgt3_gpu_busyness_query; local in function:sklgt3_register_gpu_busyness_counter_query
81820 static struct gen_perf_query_info *query = &sklgt3_test_oa_query; local in function:sklgt3_register_test_oa_counter_query
82008 static struct gen_perf_query_info *query = &sklgt3_pma__stall_query; local in function:sklgt3_register_pma__stall_counter_query
82152 static struct gen_perf_query_info *query = &sklgt4_render_basic_query; local in function:sklgt4_register_render_basic_counter_query
82772 static struct gen_perf_query_info *query = &sklgt4_compute_basic_query; local in function:sklgt4_register_compute_basic_counter_query
83262 static struct gen_perf_query_info *query = &sklgt4_render_pipe_profile_query; local in function:sklgt4_register_render_pipe_profile_counter_query
83840 static struct gen_perf_query_info *query = &sklgt4_memory_reads_query; local in function:sklgt4_register_memory_reads_counter_query
84344 static struct gen_perf_query_info *query = &sklgt4_memory_writes_query; local in function:sklgt4_register_memory_writes_counter_query
84848 static struct gen_perf_query_info *query = &sklgt4_compute_extended_query; local in function:sklgt4_register_compute_extended_counter_query
85339 static struct gen_perf_query_info *query = &sklgt4_compute_l3_cache_query; local in function:sklgt4_register_compute_l3_cache_counter_query
85966 static struct gen_perf_query_info *query = &sklgt4_hdc_and_sf_query; local in function:sklgt4_register_hdc_and_sf_counter_query
86441 static struct gen_perf_query_info *query = &sklgt4_l3_1_query; local in function:sklgt4_register_l3_1_counter_query
86949 static struct gen_perf_query_info *query = &sklgt4_l3_2_query; local in function:sklgt4_register_l3_2_counter_query
87400 static struct gen_perf_query_info *query = &sklgt4_l3_3_query; local in function:sklgt4_register_l3_3_counter_query
87850 static struct gen_perf_query_info *query = &sklgt4_rasterizer_and_pixel_backend_query; local in function:sklgt4_register_rasterizer_and_pixel_backend_counter_query
88317 static struct gen_perf_query_info *query = &sklgt4_sampler_query; local in function:sklgt4_register_sampler_counter_query
88835 static struct gen_perf_query_info *query = &sklgt4_tdl_1_query; local in function:sklgt4_register_tdl_1_counter_query
89358 static struct gen_perf_query_info *query = &sklgt4_tdl_2_query; local in function:sklgt4_register_tdl_2_counter_query
89837 static struct gen_perf_query_info *query = &sklgt4_compute_extra_query; local in function:sklgt4_register_compute_extra_counter_query
90032 static struct gen_perf_query_info *query = &sklgt4_vme_pipe_query; local in function:sklgt4_register_vme_pipe_counter_query
90260 static struct gen_perf_query_info *query = &sklgt4_gpu_busyness_query; local in function:sklgt4_register_gpu_busyness_counter_query
90436 static struct gen_perf_query_info *query = &sklgt4_test_oa_query; local in function:sklgt4_register_test_oa_counter_query
90624 static struct gen_perf_query_info *query = &sklgt4_pma__stall_query; local in function:sklgt4_register_pma__stall_counter_query
90768 static struct gen_perf_query_info *query = &kblgt2_render_basic_query; local in function:kblgt2_register_render_basic_counter_query
91375 static struct gen_perf_query_info *query = &kblgt2_compute_basic_query; local in function:kblgt2_register_compute_basic_counter_query
91865 static struct gen_perf_query_info *query = &kblgt2_render_pipe_profile_query; local in function:kblgt2_register_render_pipe_profile_counter_query
92443 static struct gen_perf_query_info *query = &kblgt2_memory_reads_query; local in function:kblgt2_register_memory_reads_counter_query
92947 static struct gen_perf_query_info *query = &kblgt2_memory_writes_query; local in function:kblgt2_register_memory_writes_counter_query
93451 static struct gen_perf_query_info *query = &kblgt2_compute_extended_query; local in function:kblgt2_register_compute_extended_counter_query
93942 static struct gen_perf_query_info *query = &kblgt2_compute_l3_cache_query; local in function:kblgt2_register_compute_l3_cache_counter_query
94569 static struct gen_perf_query_info *query = &kblgt2_hdc_and_sf_query; local in function:kblgt2_register_hdc_and_sf_counter_query
95044 static struct gen_perf_query_info *query = &kblgt2_l3_1_query; local in function:kblgt2_register_l3_1_counter_query
95552 static struct gen_perf_query_info *query = &kblgt2_l3_2_query; local in function:kblgt2_register_l3_2_counter_query
96003 static struct gen_perf_query_info *query = &kblgt2_l3_3_query; local in function:kblgt2_register_l3_3_counter_query
96453 static struct gen_perf_query_info *query = &kblgt2_rasterizer_and_pixel_backend_query; local in function:kblgt2_register_rasterizer_and_pixel_backend_counter_query
96920 static struct gen_perf_query_info *query = &kblgt2_sampler_query; local in function:kblgt2_register_sampler_counter_query
97438 static struct gen_perf_query_info *query = &kblgt2_tdl_1_query; local in function:kblgt2_register_tdl_1_counter_query
97961 static struct gen_perf_query_info *query = &kblgt2_tdl_2_query; local in function:kblgt2_register_tdl_2_counter_query
98446 static struct gen_perf_query_info *query = &kblgt2_compute_extra_query; local in function:kblgt2_register_compute_extra_counter_query
98585 static struct gen_perf_query_info *query = &kblgt2_vme_pipe_query; local in function:kblgt2_register_vme_pipe_counter_query
98802 static struct gen_perf_query_info *query = &kblgt2_gpu_busyness_query; local in function:kblgt2_register_gpu_busyness_counter_query
98960 static struct gen_perf_query_info *query = &kblgt2_test_oa_query; local in function:kblgt2_register_test_oa_counter_query
99148 static struct gen_perf_query_info *query = &kblgt2_pma__stall_query; local in function:kblgt2_register_pma__stall_counter_query
99292 static struct gen_perf_query_info *query = &kblgt3_render_basic_query; local in function:kblgt3_register_render_basic_counter_query
99912 static struct gen_perf_query_info *query = &kblgt3_compute_basic_query; local in function:kblgt3_register_compute_basic_counter_query
100402 static struct gen_perf_query_info *query = &kblgt3_render_pipe_profile_query; local in function:kblgt3_register_render_pipe_profile_counter_query
100980 static struct gen_perf_query_info *query = &kblgt3_memory_reads_query; local in function:kblgt3_register_memory_reads_counter_query
101484 static struct gen_perf_query_info *query = &kblgt3_memory_writes_query; local in function:kblgt3_register_memory_writes_counter_query
101988 static struct gen_perf_query_info *query = &kblgt3_compute_extended_query; local in function:kblgt3_register_compute_extended_counter_query
102479 static struct gen_perf_query_info *query = &kblgt3_compute_l3_cache_query; local in function:kblgt3_register_compute_l3_cache_counter_query
103106 static struct gen_perf_query_info *query = &kblgt3_hdc_and_sf_query; local in function:kblgt3_register_hdc_and_sf_counter_query
103582 static struct gen_perf_query_info *query = &kblgt3_l3_1_query; local in function:kblgt3_register_l3_1_counter_query
104090 static struct gen_perf_query_info *query = &kblgt3_l3_2_query; local in function:kblgt3_register_l3_2_counter_query
104541 static struct gen_perf_query_info *query = &kblgt3_l3_3_query; local in function:kblgt3_register_l3_3_counter_query
104991 static struct gen_perf_query_info *query = &kblgt3_rasterizer_and_pixel_backend_query; local in function:kblgt3_register_rasterizer_and_pixel_backend_counter_query
105458 static struct gen_perf_query_info *query = &kblgt3_sampler_query; local in function:kblgt3_register_sampler_counter_query
105976 static struct gen_perf_query_info *query = &kblgt3_tdl_1_query; local in function:kblgt3_register_tdl_1_counter_query
106499 static struct gen_perf_query_info *query = &kblgt3_tdl_2_query; local in function:kblgt3_register_tdl_2_counter_query
106978 static struct gen_perf_query_info *query = &kblgt3_compute_extra_query; local in function:kblgt3_register_compute_extra_counter_query
107139 static struct gen_perf_query_info *query = &kblgt3_vme_pipe_query; local in function:kblgt3_register_vme_pipe_counter_query
107367 static struct gen_perf_query_info *query = &kblgt3_gpu_busyness_query; local in function:kblgt3_register_gpu_busyness_counter_query
107542 static struct gen_perf_query_info *query = &kblgt3_test_oa_query; local in function:kblgt3_register_test_oa_counter_query
107730 static struct gen_perf_query_info *query = &kblgt3_pma__stall_query; local in function:kblgt3_register_pma__stall_counter_query
107874 static struct gen_perf_query_info *query = &cflgt2_render_basic_query; local in function:cflgt2_register_render_basic_counter_query
108481 static struct gen_perf_query_info *query = &cflgt2_compute_basic_query; local in function:cflgt2_register_compute_basic_counter_query
108971 static struct gen_perf_query_info *query = &cflgt2_render_pipe_profile_query; local in function:cflgt2_register_render_pipe_profile_counter_query
109549 static struct gen_perf_query_info *query = &cflgt2_memory_reads_query; local in function:cflgt2_register_memory_reads_counter_query
110053 static struct gen_perf_query_info *query = &cflgt2_memory_writes_query; local in function:cflgt2_register_memory_writes_counter_query
110557 static struct gen_perf_query_info *query = &cflgt2_compute_extended_query; local in function:cflgt2_register_compute_extended_counter_query
111048 static struct gen_perf_query_info *query = &cflgt2_compute_l3_cache_query; local in function:cflgt2_register_compute_l3_cache_counter_query
111675 static struct gen_perf_query_info *query = &cflgt2_hdc_and_sf_query; local in function:cflgt2_register_hdc_and_sf_counter_query
112150 static struct gen_perf_query_info *query = &cflgt2_l3_1_query; local in function:cflgt2_register_l3_1_counter_query
112658 static struct gen_perf_query_info *query = &cflgt2_l3_2_query; local in function:cflgt2_register_l3_2_counter_query
113109 static struct gen_perf_query_info *query = &cflgt2_l3_3_query; local in function:cflgt2_register_l3_3_counter_query
113559 static struct gen_perf_query_info *query = &cflgt2_rasterizer_and_pixel_backend_query; local in function:cflgt2_register_rasterizer_and_pixel_backend_counter_query
114026 static struct gen_perf_query_info *query = &cflgt2_sampler_query; local in function:cflgt2_register_sampler_counter_query
114544 static struct gen_perf_query_info *query = &cflgt2_tdl_1_query; local in function:cflgt2_register_tdl_1_counter_query
115067 static struct gen_perf_query_info *query = &cflgt2_tdl_2_query; local in function:cflgt2_register_tdl_2_counter_query
115552 static struct gen_perf_query_info *query = &cflgt2_compute_extra_query; local in function:cflgt2_register_compute_extra_counter_query
115691 static struct gen_perf_query_info *query = &cflgt2_vme_pipe_query; local in function:cflgt2_register_vme_pipe_counter_query
115908 static struct gen_perf_query_info *query = &cflgt2_gpu_busyness_query; local in function:cflgt2_register_gpu_busyness_counter_query
116066 static struct gen_perf_query_info *query = &cflgt2_test_oa_query; local in function:cflgt2_register_test_oa_counter_query
116254 static struct gen_perf_query_info *query = &cflgt2_pma__stall_query; local in function:cflgt2_register_pma__stall_counter_query
116398 static struct gen_perf_query_info *query = &cflgt3_render_basic_query; local in function:cflgt3_register_render_basic_counter_query
117018 static struct gen_perf_query_info *query = &cflgt3_compute_basic_query; local in function:cflgt3_register_compute_basic_counter_query
117508 static struct gen_perf_query_info *query = &cflgt3_render_pipe_profile_query; local in function:cflgt3_register_render_pipe_profile_counter_query
118086 static struct gen_perf_query_info *query = &cflgt3_memory_reads_query; local in function:cflgt3_register_memory_reads_counter_query
118590 static struct gen_perf_query_info *query = &cflgt3_memory_writes_query; local in function:cflgt3_register_memory_writes_counter_query
119094 static struct gen_perf_query_info *query = &cflgt3_compute_extended_query; local in function:cflgt3_register_compute_extended_counter_query
119585 static struct gen_perf_query_info *query = &cflgt3_compute_l3_cache_query; local in function:cflgt3_register_compute_l3_cache_counter_query
120212 static struct gen_perf_query_info *query = &cflgt3_hdc_and_sf_query; local in function:cflgt3_register_hdc_and_sf_counter_query
120688 static struct gen_perf_query_info *query = &cflgt3_l3_1_query; local in function:cflgt3_register_l3_1_counter_query
121196 static struct gen_perf_query_info *query = &cflgt3_l3_2_query; local in function:cflgt3_register_l3_2_counter_query
121647 static struct gen_perf_query_info *query = &cflgt3_l3_3_query; local in function:cflgt3_register_l3_3_counter_query
122097 static struct gen_perf_query_info *query = &cflgt3_rasterizer_and_pixel_backend_query; local in function:cflgt3_register_rasterizer_and_pixel_backend_counter_query
122564 static struct gen_perf_query_info *query = &cflgt3_sampler_query; local in function:cflgt3_register_sampler_counter_query
123082 static struct gen_perf_query_info *query = &cflgt3_tdl_1_query; local in function:cflgt3_register_tdl_1_counter_query
123605 static struct gen_perf_query_info *query = &cflgt3_tdl_2_query; local in function:cflgt3_register_tdl_2_counter_query
124084 static struct gen_perf_query_info *query = &cflgt3_compute_extra_query; local in function:cflgt3_register_compute_extra_counter_query
124245 static struct gen_perf_query_info *query = &cflgt3_vme_pipe_query; local in function:cflgt3_register_vme_pipe_counter_query
124473 static struct gen_perf_query_info *query = &cflgt3_gpu_busyness_query; local in function:cflgt3_register_gpu_busyness_counter_query
124648 static struct gen_perf_query_info *query = &cflgt3_test_oa_query; local in function:cflgt3_register_test_oa_counter_query
124836 static struct gen_perf_query_info *query = &cflgt3_pma__stall_query; local in function:cflgt3_register_pma__stall_counter_query
124980 static struct gen_perf_query_info *query = &bxt_render_basic_query; local in function:bxt_register_render_basic_counter_query
125599 static struct gen_perf_query_info *query = &bxt_compute_basic_query; local in function:bxt_register_compute_basic_counter_query
126083 static struct gen_perf_query_info *query = &bxt_render_pipe_profile_query; local in function:bxt_register_render_pipe_profile_counter_query
126641 static struct gen_perf_query_info *query = &bxt_memory_reads_query; local in function:bxt_register_memory_reads_counter_query
127142 static struct gen_perf_query_info *query = &bxt_memory_writes_query; local in function:bxt_register_memory_writes_counter_query
127643 static struct gen_perf_query_info *query = &bxt_compute_extended_query; local in function:bxt_register_compute_extended_counter_query
128155 static struct gen_perf_query_info *query = &bxt_compute_l3_cache_query; local in function:bxt_register_compute_l3_cache_counter_query
128790 static struct gen_perf_query_info *query = &bxt_hdc_and_sf_query; local in function:bxt_register_hdc_and_sf_counter_query
129242 static struct gen_perf_query_info *query = &bxt_l3_1_query; local in function:bxt_register_l3_1_counter_query
129838 static struct gen_perf_query_info *query = &bxt_rasterizer_and_pixel_backend_query; local in function:bxt_register_rasterizer_and_pixel_backend_counter_query
130315 static struct gen_perf_query_info *query = &bxt_sampler_query; local in function:bxt_register_sampler_counter_query
130857 static struct gen_perf_query_info *query = &bxt_tdl_1_query; local in function:bxt_register_tdl_1_counter_query
131398 static struct gen_perf_query_info *query = &bxt_tdl_2_query; local in function:bxt_register_tdl_2_counter_query
131899 static struct gen_perf_query_info *query = &bxt_compute_extra_query; local in function:bxt_register_compute_extra_counter_query
132040 static struct gen_perf_query_info *query = &bxt_gpu_busyness_query; local in function:bxt_register_gpu_busyness_counter_query
132194 static struct gen_perf_query_info *query = &bxt_test_oa_query; local in function:bxt_register_test_oa_counter_query
132381 static struct gen_perf_query_info *query = &bxt_pma__stall_query; local in function:bxt_register_pma__stall_counter_query
132532 static struct gen_perf_query_info *query = &glk_render_basic_query; local in function:glk_register_render_basic_counter_query
133149 static struct gen_perf_query_info *query = &glk_compute_basic_query; local in function:glk_register_compute_basic_counter_query
133633 static struct gen_perf_query_info *query = &glk_render_pipe_profile_query; local in function:glk_register_render_pipe_profile_counter_query
134191 static struct gen_perf_query_info *query = &glk_memory_reads_query; local in function:glk_register_memory_reads_counter_query
134692 static struct gen_perf_query_info *query = &glk_memory_writes_query; local in function:glk_register_memory_writes_counter_query
135193 static struct gen_perf_query_info *query = &glk_compute_extended_query; local in function:glk_register_compute_extended_counter_query
135705 static struct gen_perf_query_info *query = &glk_compute_l3_cache_query; local in function:glk_register_compute_l3_cache_counter_query
136340 static struct gen_perf_query_info *query = &glk_hdc_and_sf_query; local in function:glk_register_hdc_and_sf_counter_query
136792 static struct gen_perf_query_info *query = &glk_l3_1_query; local in function:glk_register_l3_1_counter_query
137306 static struct gen_perf_query_info *query = &glk_rasterizer_and_pixel_backend_query; local in function:glk_register_rasterizer_and_pixel_backend_counter_query
137783 static struct gen_perf_query_info *query = &glk_sampler_query; local in function:glk_register_sampler_counter_query
138325 static struct gen_perf_query_info *query = &glk_tdl_1_query; local in function:glk_register_tdl_1_counter_query
138866 static struct gen_perf_query_info *query = &glk_tdl_2_query; local in function:glk_register_tdl_2_counter_query
139367 static struct gen_perf_query_info *query = &glk_compute_extra_query; local in function:glk_register_compute_extra_counter_query
139508 static struct gen_perf_query_info *query = &glk_test_oa_query; local in function:glk_register_test_oa_counter_query
139695 static struct gen_perf_query_info *query = &glk_pma__stall_query; local in function:glk_register_pma__stall_counter_query
139845 static struct gen_perf_query_info *query = &cnl_render_basic_query; local in function:cnl_register_render_basic_counter_query
140476 static struct gen_perf_query_info *query = &cnl_compute_basic_query; local in function:cnl_register_compute_basic_counter_query
141018 static struct gen_perf_query_info *query = &cnl_render_pipe_profile_query; local in function:cnl_register_render_pipe_profile_counter_query
141583 static struct gen_perf_query_info *query = &cnl_memory_reads_query; local in function:cnl_register_memory_reads_counter_query
142075 static struct gen_perf_query_info *query = &cnl_memory_writes_query; local in function:cnl_register_memory_writes_counter_query
142565 static struct gen_perf_query_info *query = &cnl_compute_extended_query; local in function:cnl_register_compute_extended_counter_query
143063 static struct gen_perf_query_info *query = &cnl_compute_l3_cache_query; local in function:cnl_register_compute_l3_cache_counter_query
143698 static struct gen_perf_query_info *query = &cnl_hdc_and_sf_query; local in function:cnl_register_hdc_and_sf_counter_query
144234 static struct gen_perf_query_info *query = &cnl_l3_1_query; local in function:cnl_register_l3_1_counter_query
144770 static struct gen_perf_query_info *query = &cnl_l3_2_query; local in function:cnl_register_l3_2_counter_query
145312 static struct gen_perf_query_info *query = &cnl_rasterizer_and_pixel_backend_query; local in function:cnl_register_rasterizer_and_pixel_backend_counter_query
145902 static struct gen_perf_query_info *query = &cnl_sampler_query; local in function:cnl_register_sampler_counter_query
146549 static struct gen_perf_query_info *query = &cnl_tdl_1_query; local in function:cnl_register_tdl_1_counter_query
147195 static struct gen_perf_query_info *query = &cnl_tdl_2_query; local in function:cnl_register_tdl_2_counter_query
147795 static struct gen_perf_query_info *query = &cnl_test_oa_query; local in function:cnl_register_test_oa_counter_query
148018 static struct gen_perf_query_info *query = &icl_render_basic_query; local in function:icl_register_render_basic_counter_query
148516 static struct gen_perf_query_info *query = &icl_compute_basic_query; local in function:icl_register_compute_basic_counter_query
149045 static struct gen_perf_query_info *query = &icl_compute_extended_query; local in function:icl_register_compute_extended_counter_query
149442 static struct gen_perf_query_info *query = &icl_compute_l3_cache_query; local in function:icl_register_compute_l3_cache_counter_query
150094 static struct gen_perf_query_info *query = &icl_render_pipe_profile_query; local in function:icl_register_render_pipe_profile_counter_query
150637 static struct gen_perf_query_info *query = &icl_hdc_and_sf_query; local in function:icl_register_hdc_and_sf_counter_query
151146 static struct gen_perf_query_info *query = &icl_rasterizer_and_pixel_backend_query; local in function:icl_register_rasterizer_and_pixel_backend_counter_query
151695 static struct gen_perf_query_info *query = &icl_l3_1_query; local in function:icl_register_l3_1_counter_query
152235 static struct gen_perf_query_info *query = &icl_l3_2_query; local in function:icl_register_l3_2_counter_query
152593 static struct gen_perf_query_info *query = &icl_l3_3_query; local in function:icl_register_l3_3_counter_query
152951 static struct gen_perf_query_info *query = &icl_l3_4_query; local in function:icl_register_l3_4_counter_query
153338 static struct gen_perf_query_info *query = &icl_l3_5_query; local in function:icl_register_l3_5_counter_query
153725 static struct gen_perf_query_info *query = &icl_sampler_1_query; local in function:icl_register_sampler_1_counter_query
154371 static struct gen_perf_query_info *query = &icl_sampler_2_query; local in function:icl_register_sampler_2_counter_query
154979 static struct gen_perf_query_info *query = &icl_tdl_1_query; local in function:icl_register_tdl_1_counter_query
155717 static struct gen_perf_query_info *query = &icl_tdl_2_query; local in function:icl_register_tdl_2_counter_query
156315 static struct gen_perf_query_info *query = &icl_tdl_3_query; local in function:icl_register_tdl_3_counter_query
157053 static struct gen_perf_query_info *query = &icl_gpu_busyness_query; local in function:icl_register_gpu_busyness_counter_query
157259 static struct gen_perf_query_info *query = &icl_test_oa_query; local in function:icl_register_test_oa_counter_query
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
122 * Wait on the query object's BO and calculate the final result.
126 struct brw_query_object *query)
136 if (query->bo == NULL)
139 /* If the application has requested the query result, but this batch is
143 if (brw_batch_references(&brw->batch, query->bo))
147 if (brw_bo_busy(query->bo)) {
148 perf_debug("Stalling on the GPU waiting for a query object.\n");
152 results = brw_bo_map(brw, query->bo, MAP_READ);
153 switch (query
125 brw_queryobj_get_results(struct gl_context * ctx,struct brw_query_object * query) argument
221 struct brw_query_object *query; local in function:brw_new_query_object
239 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_delete_query
255 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_begin_query
328 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_end_query
381 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_wait_query
400 struct brw_query_object *query = (struct brw_query_object *)q; local in function:brw_check_query
428 ensure_bo_has_space(struct gl_context * ctx,struct brw_query_object * query) argument
474 struct brw_query_object *query = brw->query.obj; local in function:brw_emit_query_begin
498 struct brw_query_object *query = brw->query.obj; local in function:brw_emit_query_end
520 struct brw_query_object *query = (struct brw_query_object *) q; local in function:brw_query_counter
573 brw_is_query_pipelined(struct brw_query_object * query) argument
[all...]
H A Dgfx6_queryobj.c30 * Support for query objects (GL_ARB_occlusion_query, GL_ARB_timer_query,
42 set_query_availability(struct brw_context *brw, struct brw_query_object *query, argument
46 * query availability for "pipelined" queries.
61 brw_is_query_pipelined(query)) {
65 /* Order available *after* the query results. */
73 query->bo, 2 * sizeof(uint64_t),
219 * Wait on the query object's BO and calculate the final result.
223 struct brw_query_object *query)
228 if (query->bo == NULL)
231 uint64_t *results = brw_bo_map(brw, query
222 gfx6_queryobj_get_results(struct gl_context * ctx,struct brw_query_object * query) argument
327 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gfx6_begin_query
416 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gfx6_end_query
480 flush_batch_if_needed(struct brw_context * brw,struct brw_query_object * query) argument
501 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gfx6_wait_query
521 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gfx6_check_query
547 struct brw_query_object *query = (struct brw_query_object *)q; local in function:gfx6_query_counter
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/winsys/svga/drm/
H A Dvmw_query.c43 struct svga_winsys_gb_query *query; local in function:vmw_svga_winsys_query_create
45 query = CALLOC_STRUCT(svga_winsys_gb_query);
46 if (!query)
52 query->buf = vmw_svga_winsys_buffer_wrap(pb_buf);
54 if (!query->buf) {
56 FREE(query);
57 query = NULL;
60 return query;
67 struct svga_winsys_gb_query *query)
69 vmw_svga_winsys_buffer_destroy(sws, query
66 vmw_svga_winsys_query_destroy(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query) argument
76 vmw_svga_winsys_query_init(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query,unsigned offset,SVGA3dQueryState queryState) argument
103 vmw_svga_winsys_query_get_result(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query,unsigned offset,SVGA3dQueryState * queryState,void * result,uint32 resultLen) argument
137 vmw_swc_query_bind(struct svga_winsys_context * swc,struct svga_winsys_gb_query * query,unsigned flags) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/winsys/svga/drm/
H A Dvmw_query.c43 struct svga_winsys_gb_query *query; local in function:vmw_svga_winsys_query_create
45 query = CALLOC_STRUCT(svga_winsys_gb_query);
46 if (!query)
52 query->buf = vmw_svga_winsys_buffer_wrap(pb_buf);
54 if (!query->buf) {
56 FREE(query);
57 query = NULL;
60 return query;
67 struct svga_winsys_gb_query *query)
69 vmw_svga_winsys_buffer_destroy(sws, query
66 vmw_svga_winsys_query_destroy(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query) argument
76 vmw_svga_winsys_query_init(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query,unsigned offset,SVGA3dQueryState queryState) argument
103 vmw_svga_winsys_query_get_result(struct svga_winsys_screen * sws,struct svga_winsys_gb_query * query,unsigned offset,SVGA3dQueryState * queryState,void * result,uint32 resultLen) argument
137 vmw_swc_query_bind(struct svga_winsys_context * swc,struct svga_winsys_gb_query * query,unsigned flags) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c37 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonQueryGetResult
42 "%s: query id %d, result %d\n",
43 __func__, query->Base.Id, (int) query->Base.Result);
45 radeon_bo_map(query->bo, GL_FALSE);
46 result = query->bo->ptr;
48 query->Base.Result = 0;
49 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
50 query->Base.Result += LE32_TO_CPU(result[i]);
54 radeon_bo_unmap(query
59 struct radeon_query_object *query; local in function:radeonNewQueryObject
75 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonDeleteQuery
89 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonWaitQuery
106 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonBeginQuery
129 struct radeon_query_object *query = radeon->query.current; local in function:radeonEmitQueryEnd
166 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonCheckQuery
196 struct radeon_query_object *query = radeon->query.current; local in function:radeon_check_query_active
[all...]
H A Dradeon_queryobj.h44 radeon->query.queryobj.cmd_size = (SZ);
45 radeon->query.queryobj.cmd = calloc(SZ, sizeof(uint32_t));
46 radeon->query.queryobj.name = "queryobj";
47 radeon->query.queryobj.idx = 0;
48 radeon->query.queryobj.check = radeon_check_query_active;
49 radeon->query.queryobj.dirty = GL_FALSE;
50 radeon->query.queryobj.emit = radeon_emit_queryobj;
53 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_queryobj.c38 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonQueryGetResult
43 "%s: query id %d, result %d\n",
44 __func__, query->Base.Id, (int) query->Base.Result);
46 radeon_bo_map(query->bo, GL_FALSE);
47 result = query->bo->ptr;
49 query->Base.Result = 0;
50 for (i = 0; i < query->curr_offset/sizeof(uint32_t); ++i) {
51 query->Base.Result += LE32_TO_CPU(result[i]);
55 radeon_bo_unmap(query
60 struct radeon_query_object *query; local in function:radeonNewQueryObject
76 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonDeleteQuery
90 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonWaitQuery
107 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonBeginQuery
130 struct radeon_query_object *query = radeon->query.current; local in function:radeonEmitQueryEnd
167 struct radeon_query_object *query = (struct radeon_query_object *)q; local in function:radeonCheckQuery
197 struct radeon_query_object *query = radeon->query.current; local in function:radeon_check_query_active
[all...]
H A Dradeon_queryobj.h43 radeon->query.queryobj.cmd_size = (SZ);
44 radeon->query.queryobj.cmd = calloc(SZ, sizeof(uint32_t));
45 radeon->query.queryobj.name = "queryobj";
46 radeon->query.queryobj.idx = 0;
47 radeon->query.queryobj.check = radeon_check_query_active;
48 radeon->query.queryobj.dirty = GL_FALSE;
49 radeon->query.queryobj.emit = radeon_emit_queryobj;
52 insert_at_tail(&radeon->hw.atomlist, &radeon->query.queryobj);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_query.c39 unsigned query; member in struct:i915_query
46 struct i915_query *query = CALLOC_STRUCT( i915_query ); local in function:i915_create_query
48 return (struct pipe_query *)query;
52 struct pipe_query *query)
54 FREE(query);
58 struct pipe_query *query)
63 static bool i915_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
69 struct pipe_query *query,
51 i915_destroy_query(struct pipe_context * ctx,struct pipe_query * query) argument
57 i915_begin_query(struct pipe_context * ctx,struct pipe_query * query) argument
68 i915_get_query_result(struct pipe_context * ctx,struct pipe_query * query,boolean wait,union pipe_query_result * vresult) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/lima/
H A Dlima_query.c29 * but the spec allows you to expose 0 query counter bits, so we just return 0
45 struct lima_query *query = calloc(1, sizeof(*query)); local in function:lima_create_query
48 return (struct pipe_query *)query;
52 lima_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
54 free(query);
58 lima_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
64 lima_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
70 lima_get_query_result(struct pipe_context *ctx, struct pipe_query *query, argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_query.c38 unsigned query; member in struct:i915_query
44 struct i915_query *query = CALLOC_STRUCT(i915_query); local in function:i915_create_query
46 return (struct pipe_query *)query;
50 i915_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
52 FREE(query);
56 i915_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
62 i915_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
68 i915_get_query_result(struct pipe_context *ctx, struct pipe_query *query, argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/lima/
H A Dlima_query.c29 * but the spec allows you to expose 0 query counter bits, so we just return 0
45 struct lima_query *query = calloc(1, sizeof(*query)); local in function:lima_create_query
48 return (struct pipe_query *)query;
52 lima_destroy_query(struct pipe_context *ctx, struct pipe_query *query) argument
54 free(query);
58 lima_begin_query(struct pipe_context *ctx, struct pipe_query *query) argument
64 lima_end_query(struct pipe_context *ctx, struct pipe_query *query) argument
70 lima_get_query_result(struct pipe_context *ctx, struct pipe_query *query, argument
/xsrc/external/mit/xorg-server.old/dist/glx/
H A Dsinglesize.c56 GLint __glGetMap_size(GLenum target, GLenum query) argument
61 ** Assume target and query are both valid.
73 switch (query) {
78 ** The query above might fail, but then order will be zero anyway.
96 switch (query) {
102 ** The query above might fail, but then majorMinor will be zeroes
115 GLint __glGetMapdv_size(GLenum target, GLenum query) argument
117 return __glGetMap_size(target, query);
120 GLint __glGetMapfv_size(GLenum target, GLenum query) argument
122 return __glGetMap_size(target, query);
125 __glGetMapiv_size(GLenum target,GLenum query) argument
133 GLenum query; local in function:__glGetPixelMap_size
[all...]
/xsrc/external/mit/xorg-server/dist/glx/
H A Dsinglesize.c54 __glGetMap_size(GLenum target, GLenum query) argument
59 ** Assume target and query are both valid.
71 switch (query) {
76 ** The query above might fail, but then order will be zero anyway.
94 switch (query) {
100 ** The query above might fail, but then majorMinor will be zeroes
114 __glGetMapdv_size(GLenum target, GLenum query) argument
116 return __glGetMap_size(target, query);
120 __glGetMapfv_size(GLenum target, GLenum query) argument
122 return __glGetMap_size(target, query);
126 __glGetMapiv_size(GLenum target,GLenum query) argument
135 GLenum query; local in function:__glGetPixelMap_size
[all...]
/xsrc/external/mit/fontconfig/dist/fc-query/
H A DMakefile.am2 # fontconfig/fc-query/Makefile.am
24 bin_PROGRAMS=fc-query
28 FC_QUERY_SRC=${top_srcdir}/fc-query
30 SGML = ${FC_QUERY_SRC}/fc-query.sgml
34 BUILT_MANS=fc-query.1
40 EXTRA_DIST=fc-query.sgml $(BUILT_MANS)

Completed in 125 milliseconds

1234567891011>>