reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Symbol/UnwindPlan.h
   82       void SetUnspecified() { m_type = unspecified; }
   84       void SetUndefined() { m_type = undefined; }
   86       void SetSame() { m_type = same; }
   88       bool IsSame() const { return m_type == same; }
   90       bool IsUnspecified() const { return m_type == unspecified; }
   92       bool IsUndefined() const { return m_type == undefined; }
   94       bool IsCFAPlusOffset() const { return m_type == isCFAPlusOffset; }
   96       bool IsAtCFAPlusOffset() const { return m_type == atCFAPlusOffset; }
   98       bool IsAFAPlusOffset() const { return m_type == isAFAPlusOffset; }
  100       bool IsAtAFAPlusOffset() const { return m_type == atAFAPlusOffset; }
  102       bool IsInOtherRegister() const { return m_type == inOtherRegister; }
  104       bool IsAtDWARFExpression() const { return m_type == atDWARFExpression; }
  106       bool IsDWARFExpression() const { return m_type == isDWARFExpression; }
  109         m_type = atCFAPlusOffset;
  114         m_type = isCFAPlusOffset;
  119         m_type = atAFAPlusOffset;
  124         m_type = isAFAPlusOffset;
  129         m_type = inOtherRegister;
  134         if (m_type == inOtherRegister)
  139       RestoreType GetLocationType() const { return m_type; }
  142         switch(m_type)
  155         if (m_type == atDWARFExpression || m_type == isDWARFExpression) {
  155         if (m_type == atDWARFExpression || m_type == isDWARFExpression) {
  169         if (m_type == atDWARFExpression || m_type == isDWARFExpression)
  169         if (m_type == atDWARFExpression || m_type == isDWARFExpression)
  175         if (m_type == atDWARFExpression || m_type == isDWARFExpression)
  175         if (m_type == atDWARFExpression || m_type == isDWARFExpression)
tools/lldb/source/Symbol/UnwindPlan.cpp
   24   if (m_type == rhs.m_type) {
   24   if (m_type == rhs.m_type) {
   25     switch (m_type) {
   55   m_type = atDWARFExpression;
   64   m_type = isDWARFExpression;
   98   switch (m_type) {
  118     if (m_type == atCFAPlusOffset)
  121     if (m_type == atCFAPlusOffset)
  128     if (m_type == atAFAPlusOffset)
  131     if (m_type == atAFAPlusOffset)
  148     if (m_type == atDWARFExpression)
  153     if (m_type == atDWARFExpression)