Home
last modified time | relevance | path

Searched refs:MacroType (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp30 enum class MacroType { enum
58 static llvm::StringRef getMacroTypeName(MacroType Macro) { in getMacroTypeName()
60 case MacroType::Expect: in getMacroTypeName()
62 case MacroType::Assert: in getMacroTypeName()
64 case MacroType::On: in getMacroTypeName()
88 static std::string getMacroName(MacroType Macro, GtestCmp Cmp) { in getMacroName()
100 static llvm::StringRef getSpecSetterName(MacroType Macro) { in getSpecSetterName()
102 case MacroType::On: in getSpecSetterName()
104 case MacroType::Expect: in getSpecSetterName()
130 gtestThatInternal(MacroType Macro, StatementMatcher Actual, in gtestThatInternal()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFStreamer.cpp1370 uint8_t MacroType = MacroEntry.Type; in emitMacroTableImpl() local
1371 switch (MacroType) { in emitMacroTableImpl()
1375 (hasDWARFv5Header && (MacroType >= dwarf::DW_MACRO_lo_user && in emitMacroTableImpl()
1380 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl()
1403 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl()
1423 switch (MacroType) { in emitMacroTableImpl()
1425 MacroType = dwarf::DW_MACRO_define_strp; in emitMacroTableImpl()
1433 MacroType = dwarf::DW_MACRO_undef_strp; in emitMacroTableImpl()
1446 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl()
1461 MS->emitIntValue(MacroType, 1); in emitMacroTableImpl()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerCompileUnit.cpp989 uint8_t MacroType = MacroEntry.Type; in emitMacroTableImpl() local
990 switch (MacroType) { in emitMacroTableImpl()
994 MacroType == dwarf::DW_MACINFO_vendor_ext) || in emitMacroTableImpl()
1000 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl()
1019 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl()
1033 switch (MacroType) { in emitMacroTableImpl()
1035 MacroType = dwarf::DW_MACRO_define_strp; in emitMacroTableImpl()
1043 MacroType = dwarf::DW_MACRO_undef_strp; in emitMacroTableImpl()
1056 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl()
1067 OutSection.emitIntVal(MacroType, 1); in emitMacroTableImpl()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DDIBuilder.cpp222 unsigned MacroType, StringRef Name, in createMacro() argument
225 assert((MacroType == dwarf::DW_MACINFO_undef || in createMacro()
226 MacroType == dwarf::DW_MACINFO_define) && in createMacro()
228 auto *M = DIMacro::get(VMContext, MacroType, LineNumber, Name, Value); in createMacro()
/freebsd-14.2/sys/dev/bhnd/tools/
H A Dnvram_map_gen.awk233 MacroType = class_new("MacroType")
234 class_add_prop(MacroType, p_name, "name")
235 class_add_prop(MacroType, p_const_suffix, "const_suffix")
2230 _obj = obj_new(MacroType)
3006 obj_assert_class(macro_type, MacroType)
3015 obj_assert_class(macro_type, MacroType)
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DDIBuilder.h190 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType,