Home
last modified time | relevance | path

Searched refs:frame_type (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp964 std::string formatFrameType(object::frame_type FT) { in formatFrameType()
966 case object::frame_type::Fpo: in formatFrameType()
968 case object::frame_type::NonFpo: in formatFrameType()
970 case object::frame_type::Trap: in formatFrameType()
972 case object::frame_type::Tss: in formatFrameType()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DCOFF.h611 enum class frame_type : uint16_t { Fpo = 0, Trap = 1, Tss = 2, NonFpo = 3 }; enum
1298 frame_type getFP() const { return static_cast<frame_type>(Attributes >> 14); } in getFP()