[PowerPC] Keep vector int to fp conversions in vector domain
[llvm-core.git] / include / llvm / XRay / YAMLXRayRecord.h
blob0de9ea0968e69bb1e19836c3cae2619e90ffae2a
1 //===- YAMLXRayRecord.h - XRay Record YAML Support Definitions ------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Types and traits specialisations for YAML I/O of XRay log entries.
12 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_XRAY_YAML_XRAY_RECORD_H
14 #define LLVM_XRAY_YAML_XRAY_RECORD_H
16 #include <type_traits>
18 #include "llvm/Support/YAMLTraits.h"
19 #include "llvm/XRay/XRayRecord.h"
21 namespace llvm {
22 namespace xray {
24 struct YAMLXRayFileHeader {
25 uint16_t Version;
26 uint16_t Type;
27 bool ConstantTSC;
28 bool NonstopTSC;
29 uint64_t CycleFrequency;
32 struct YAMLXRayRecord {
33 uint16_t RecordType;
34 uint16_t CPU;
35 RecordTypes Type;
36 int32_t FuncId;
37 std::string Function;
38 uint64_t TSC;
39 uint32_t TId;
40 uint32_t PId;
41 std::vector<uint64_t> CallArgs;
44 struct YAMLXRayTrace {
45 YAMLXRayFileHeader Header;
46 std::vector<YAMLXRayRecord> Records;
49 } // namespace xray
51 namespace yaml {
53 // YAML Traits
54 // -----------
55 template <> struct ScalarEnumerationTraits<xray::RecordTypes> {
56 static void enumeration(IO &IO, xray::RecordTypes &Type) {
57 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
58 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
59 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
60 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
64 template <> struct MappingTraits<xray::YAMLXRayFileHeader> {
65 static void mapping(IO &IO, xray::YAMLXRayFileHeader &Header) {
66 IO.mapRequired("version", Header.Version);
67 IO.mapRequired("type", Header.Type);
68 IO.mapRequired("constant-tsc", Header.ConstantTSC);
69 IO.mapRequired("nonstop-tsc", Header.NonstopTSC);
70 IO.mapRequired("cycle-frequency", Header.CycleFrequency);
74 template <> struct MappingTraits<xray::YAMLXRayRecord> {
75 static void mapping(IO &IO, xray::YAMLXRayRecord &Record) {
76 // FIXME: Make this type actually be descriptive
77 IO.mapRequired("type", Record.RecordType);
78 IO.mapRequired("func-id", Record.FuncId);
79 IO.mapOptional("function", Record.Function);
80 IO.mapOptional("args", Record.CallArgs);
81 IO.mapRequired("cpu", Record.CPU);
82 IO.mapRequired("thread", Record.TId);
83 IO.mapOptional("process", Record.PId, 0U);
84 IO.mapRequired("kind", Record.Type);
85 IO.mapRequired("tsc", Record.TSC);
88 static constexpr bool flow = true;
91 template <> struct MappingTraits<xray::YAMLXRayTrace> {
92 static void mapping(IO &IO, xray::YAMLXRayTrace &Trace) {
93 // A trace file contains two parts, the header and the list of all the
94 // trace records.
95 IO.mapRequired("header", Trace.Header);
96 IO.mapRequired("records", Trace.Records);
100 } // namespace yaml
101 } // namespace llvm
103 LLVM_YAML_IS_SEQUENCE_VECTOR(xray::YAMLXRayRecord)
105 #endif // LLVM_XRAY_YAML_XRAY_RECORD_H