Searched refs:simd_flags (Results 1 - 5 of 5) sorted by relevance

/linux-master/tools/perf/util/
H A Dsample.h69 struct simd_flags { struct
122 struct simd_flags simd_flags; member in struct:perf_sample
H A Dsort.h117 struct simd_flags simd_flags; member in struct:hist_entry
H A Darm-spe.c276 static struct simd_flags arm_spe__synth_simd_flags(const struct arm_spe_record *record)
278 struct simd_flags simd_flags = {}; local
281 simd_flags.arch |= SIMD_OP_FLAGS_ARCH_SVE;
284 simd_flags.arch |= SIMD_OP_FLAGS_ARCH_SVE;
287 simd_flags.pred |= SIMD_OP_FLAGS_PRED_PARTIAL;
290 simd_flags.pred |= SIMD_OP_FLAGS_PRED_EMPTY;
292 return simd_flags;
311 sample->simd_flags = arm_spe__synth_simd_flags(record);
H A Dsort.c148 if (left->simd_flags.arch != right->simd_flags.arch)
149 return (int64_t) left->simd_flags.arch - right->simd_flags.arch;
151 return (int64_t) left->simd_flags.pred - right->simd_flags.pred;
154 static const char *hist_entry__get_simd_name(struct simd_flags *simd_flags) argument
156 u64 arch = simd_flags->arch;
169 if (!he->simd_flags
[all...]
H A Dhist.c750 .simd_flags = sample->simd_flags,

Completed in 128 milliseconds