mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
Set correct message types.
This commit is contained in:
parent
9b4716c49e
commit
f0f3babacf
@ -993,16 +993,16 @@ static void SetupSampling( int64_t& samplingPeriod )
|
|||||||
type = QueueType::HwSampleInstructionRetired;
|
type = QueueType::HwSampleInstructionRetired;
|
||||||
break;
|
break;
|
||||||
case EventCacheReference:
|
case EventCacheReference:
|
||||||
type = QueueType::HwSampleCpuCycle;
|
type = QueueType::HwSampleCacheReference;
|
||||||
break;
|
break;
|
||||||
case EventCacheMiss:
|
case EventCacheMiss:
|
||||||
type = QueueType::HwSampleInstructionRetired;
|
type = QueueType::HwSampleCacheMiss;
|
||||||
break;
|
break;
|
||||||
case EventBranchRetired:
|
case EventBranchRetired:
|
||||||
type = QueueType::HwSampleCpuCycle;
|
type = QueueType::HwSampleBranchRetired;
|
||||||
break;
|
break;
|
||||||
case EventBranchMiss:
|
case EventBranchMiss:
|
||||||
type = QueueType::HwSampleInstructionRetired;
|
type = QueueType::HwSampleBranchMiss;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assert( false );
|
assert( false );
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user