Home
last modified time | relevance | path

Searched refs:BTFEnum (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/
H A DBTF.h154 struct BTFEnum { struct
334 struct EnumType final : CommonType, private TrailingObjects<EnumType, BTFEnum> {
336 BTF_DEFINE_TAIL_ARR(BTFEnum, values) in BTF_DEFINE_TAIL_ARR()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp214 struct BTF::BTFEnum BTFEnum; in completeType() local
215 BTFEnum.NameOff = BDebug.addString(Enum->getName()); in completeType()
222 BTFEnum.Val = Value; in completeType()
223 EnumValues.push_back(BTFEnum); in completeType()
253 struct BTF::BTFEnum64 BTFEnum; in completeType() local
254 BTFEnum.NameOff = BDebug.addString(Enum->getName()); in completeType()
260 BTFEnum.Val_Lo32 = Value; in completeType()
261 BTFEnum.Val_Hi32 = Value >> 32; in completeType()
262 EnumValues.push_back(BTFEnum); in completeType()
H A DBTFDebug.h103 std::vector<struct BTF::BTFEnum> EnumValues;