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

Declarations

include/llvm/DebugInfo/DWARF/DWARFFormValue.h
   78   bool isFormClass(FormClass FC) const;

References

lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
  102       if ((!FormValue.isFormClass(DWARFFormValue::FC_Constant) &&
  103            !FormValue.isFormClass(DWARFFormValue::FC_Flag)) ||
lib/DebugInfo/DWARF/DWARFDie.cpp
   84   if (FormValue.isFormClass(DWARFFormValue::FC_Block) ||
   85       FormValue.isFormClass(DWARFFormValue::FC_Exprloc)) {
  111   if (FormValue.isFormClass(DWARFFormValue::FC_SectionOffset)) {
lib/DebugInfo/DWARF/DWARFFormValue.cpp
  586   if (!isFormClass(FC_String))
  630   if (!isFormClass(FC_Address))
  651   if (!isFormClass(FC_Reference))
  672   if (!isFormClass(FC_SectionOffset))
  678   if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
  678   if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
  685   if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
  685   if ((!isFormClass(FC_Constant) && !isFormClass(FC_Flag)) ||
  704   if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc) &&
  704   if (!isFormClass(FC_Block) && !isFormClass(FC_Exprloc) &&
  711   if (!isFormClass(FC_String) && Form == DW_FORM_string)
  717   if (!isFormClass(FC_Reference))
lib/DebugInfo/DWARF/DWARFVerifier.cpp
 1122   if (!DWARFFormValue(AttrEnc.Form).isFormClass(Iter->Class)) {
tools/dsymutil/DwarfLinker.cpp
  125   assert(RefValue.isFormClass(DWARFFormValue::FC_Reference));
  799     if (!Val.isFormClass(DWARFFormValue::FC_Reference) ||
 1195       (Val.isFormClass(DWARFFormValue::FC_Block) ||
 1196        Val.isFormClass(DWARFFormValue::FC_Exprloc))) {
 1497            !DWARFFormValue(AttrSpec.Form).isFormClass(DWARFFormValue::FC_Block);
 2121     if (!Ref->isFormClass(DWARFFormValue::FC_Reference))
unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
   23   return DWARFFormValue(Form).isFormClass(FC);