| /llvm-project-15.0.7/llvm/lib/ObjCopy/ |
| H A D | ConfigManager.cpp | 17 if (!Common.SplitDWO.empty() || !Common.SymbolsPrefix.empty() || in getCOFFConfig() 23 !Common.SetSectionType.empty() || Common.ExtractDWO || in getCOFFConfig() 24 Common.PreserveDates || Common.StripDWO || Common.StripNonAlloc || in getCOFFConfig() 25 Common.StripSections || Common.Weaken || Common.DecompressDebugSections || in getCOFFConfig() 41 !Common.SetSectionType.empty() || Common.ExtractDWO || in getMachOConfig() 42 Common.PreserveDates || Common.StripAllGNU || Common.StripDWO || in getMachOConfig() 43 Common.StripNonAlloc || Common.StripSections || Common.Weaken || in getMachOConfig() 86 Common.ExtractMainPartition || Common.OnlyKeepDebug || in getXCOFFConfig() 87 Common.PreserveDates || Common.StripAllGNU || Common.StripDWO || in getXCOFFConfig() 88 Common.StripDebug || Common.StripNonAlloc || Common.StripSections || in getXCOFFConfig() [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | 2008-05-16-PHIBlockMerge.ll | 21 ; CHECK: Common: 36 Succ: ; preds = %Common, %BB.nomerge 41 Common: ; preds = %Succ 60 ; CHECK: Common: 73 ; This phi has confliction values for Common and (through BB) Common, 79 Common: ; preds = %Succ 98 ; CHECK: Common: 114 ; This phi has identical values for Common and (through BB) Common, 120 Common: ; preds = %Succ 146 ; CHECK: Common: [all …]
|
| H A D | EqualPHIEdgeBlockMerge.ll | 195 ; CHECK: Common: 210 Succ: ; preds = %Common, %BB.nomerge 215 Common: ; preds = %Succ 234 ; CHECK: Common: 247 ; This phi has confliction values for Common and (through BB) Common, 253 Common: ; preds = %Succ 272 ; CHECK: Common: 288 ; This phi has identical values for Common and (through BB) Common, 294 Common: ; preds = %Succ 320 ; CHECK: Common: [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/predef.iterators/iterators.common/ |
| H A D | arrow.pass.cpp | 28 using Common = std::common_iterator<Iterator, sentinel_wrapper<Iterator>>; in test() typedef 30 Common common(iter); in test() 34 Common const ccommon(iter); in test() 48 using Common = std::common_iterator<Iterator, sentinel_type<int*>>; in test() typedef 50 Common common(iter); in test() 54 Common const ccommon(iter); in test() 72 using Common = std::common_iterator<Iterator, sentinel_type<int*>>; in test() typedef 74 Common common(iter); in test() 80 Common const ccommon(iter); in test()
|
| H A D | plus_plus.pass.cpp | 157 using Common = std::common_iterator<cpp17_output_iterator<int*>, sentinel_type<int*>>; in test() typedef 158 auto iter = Common(cpp17_output_iterator<int*>(buffer)); in test() 159 auto sent = Common(sentinel_type<int*>{buffer + 5}); in test()
|
| /llvm-project-15.0.7/libcxx/test/std/ranges/range.req/range.refinements/ |
| H A D | common_range.compile.pass.cpp | 18 template<class It> struct Common { It begin() const; It end() const; }; struct 22 static_assert(!std::ranges::common_range<Common<cpp17_input_iterator<int*>>>); // not a sentinel fo… 23 static_assert(!std::ranges::common_range<Common<cpp20_input_iterator<int*>>>); // not a sentinel fo… 24 static_assert( std::ranges::common_range<Common<forward_iterator<int*>>>); 25 static_assert( std::ranges::common_range<Common<bidirectional_iterator<int*>>>); 26 static_assert( std::ranges::common_range<Common<random_access_iterator<int*>>>); 27 static_assert( std::ranges::common_range<Common<contiguous_iterator<int*>>>); 28 static_assert( std::ranges::common_range<Common<int*>>); 45 static_assert( std::ranges::common_range<Common<forward_iterator<int*>> const>);
|
| /llvm-project-15.0.7/clang/test/Modules/ |
| H A D | merge-objc-protocol-visibility.m | 21 //--- Frameworks/Common.framework/Headers/Common.h 24 @interface Common : NSObject 28 //--- Frameworks/Common.framework/Modules/module.modulemap 29 framework module Common { 30 header "Common.h" 65 #import <Common/Common.h> 75 void test(Common *obj) {
|
| /llvm-project-15.0.7/llvm/tools/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.cpp | 233 Config.Common.InputFilename = Opts.InputFileName; in saveSeparateDebugInfo() 234 Config.Common.OutputFilename = OutputFilename; in saveSeparateDebugInfo() 235 Config.Common.OnlyKeepDebug = true; in saveSeparateDebugInfo() 256 Config.Common.InputFilename = Opts.InputFileName; in saveNonDebugInfo() 258 Config.Common.StripDebug = true; in saveNonDebugInfo() 339 Config.Common.InputFilename = Opts.InputFileName; in saveSeparateLinkedDebugInfo() 340 Config.Common.OutputFilename = OutputFilename; in saveSeparateLinkedDebugInfo() 341 Config.Common.StripDebug = true; in saveSeparateLinkedDebugInfo() 342 Config.Common.OnlyKeepDebug = true; in saveSeparateLinkedDebugInfo() 370 Config.Common.InputFilename = Opts.InputFileName; in saveSingleLinkedDebugInfo() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/iterators/iterator.requirements/iterator.concepts/iterator.concept.readable/ |
| H A D | iter_common_reference_t.compile.pass.cpp | 36 struct Common { Common(A); Common(B); }; struct 39 using type = Common; 50 static_assert(std::same_as<std::iter_common_reference_t<T3>, Common>);
|
| /llvm-project-15.0.7/utils/bazel/llvm-project-overlay/lld/ |
| H A D | BUILD.bazel | 15 outs = ["include/lld/Common/Version.inc"], 21 outs = ["Common/VCSVersion.inc"], 29 hdrs = ["Common/VCSVersion.inc"], 30 strip_include_prefix = "Common", 34 name = "Common", 75 ":Common", 123 ":Common", 169 ":Common", 199 ":Common", 229 ":Common", [all …]
|
| /llvm-project-15.0.7/clang/test/CodeGen/ |
| H A D | pr19841.cpp | 3 namespace Common { namespace 18 Common::RenderMode _configRenderMode; 22 0 == Common::kRenderCGA || _vm->_configRenderMode == Common::kRenderEGA in A()
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | indirectly_readable.h | 15 struct Common { }; struct 18 struct T1 : Common<Token> { }; 21 struct T2 : Common<Token> { }; 25 using type = Common<Token>;
|
| /llvm-project-15.0.7/llvm/unittests/ObjCopy/ |
| H A D | ObjCopyTest.cpp | 133 Config.Common.OutputFilename); in callObjCopy() 199 Config.Common.OutputFilename = "a.out"; in copySimpleInMemoryFileImpl() 260 Config.Common.OutputFilename = "a.out"; in addOrUpdateSectionToFileImpl() 262 Config.Common.AddSection.push_back({Name, std::move(NewSectionBuffer)}); in addOrUpdateSectionToFileImpl() 264 Config.Common.UpdateSection.push_back({Name, std::move(NewSectionBuffer)}); in addOrUpdateSectionToFileImpl() 354 Config.Common.OutputFilename = "a.out"; in removeSectionByPatternImpl() 355 EXPECT_THAT_ERROR(Config.Common.ToRemove.addMatcher(std::move(Pattern)), in removeSectionByPatternImpl()
|
| /llvm-project-15.0.7/clang/lib/Driver/ToolChains/ |
| H A D | Gnu.h | 83 class LLVM_LIBRARY_VISIBILITY Common : public Tool { 85 Common(const char *Name, const char *ShortName, const ToolChain &TC) in Common() function 103 class LLVM_LIBRARY_VISIBILITY Preprocessor : public Common { 106 : Common("gcc::Preprocessor", "gcc preprocessor", TC) {} in Preprocessor() 115 class LLVM_LIBRARY_VISIBILITY Compiler : public Common { 117 Compiler(const ToolChain &TC) : Common("gcc::Compiler", "gcc frontend", TC) {} in Compiler() 126 class LLVM_LIBRARY_VISIBILITY Linker : public Common { 128 Linker(const ToolChain &TC) : Common("gcc::Linker", "linker (via gcc)", TC) {} in Linker()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lld/Common/ |
| H A D | BUILD.gn | 10 visibility = [ ":Common" ] 16 static_library("Common") { 21 "//lld/include/lld/Common:version",
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclTemplate.cpp | 260 if (Common) in getCommonPtr() 261 return Common; in getCommonPtr() 268 if (Prev->Common) { in getCommonPtr() 269 Common = Prev->Common; in getCommonPtr() 277 if (!Common) { in getCommonPtr() 286 Prev->Common = Common; in getCommonPtr() 288 return Common; in getCommonPtr() 417 if (!Base::Common) in mergePrevDecl() 420 Common *ThisCommon = static_cast<Common *>(Base::Common); in mergePrevDecl() 425 PrevCommon = static_cast<Common *>(Prev->Base::Common); in mergePrevDecl() [all …]
|
| /llvm-project-15.0.7/clang/test/Modules/Inputs/implicit-invalidate-common/ |
| H A D | module.modulemap | 3 module Common { header "Common.h" }
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjCopy/ |
| H A D | ConfigManager.h | 26 const CommonConfig &getCommonConfig() const override { return Common; } in getCommonConfig() 39 CommonConfig Common; member
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | pset-enum.td | 1 // RUN: llvm-tblgen -gen-register-info -I %p/../../include -I %p/Common %s | FileCheck %s 2 // RUN: llvm-tblgen -gen-register-info -I %p/../../include -I %p/Common -DUSE_NAMESPACE %s | FileCh…
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | SectionKind.h | 108 Common, enumerator 173 bool isCommon() const { return K == Common; } in isCommon() 212 static SectionKind getCommon() { return get(Common); } in getCommon()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | BUILD.gn | 1 static_library("Common") { 20 # ../Process/Windows/Common/x64/RegisterContextWindows_x64.h uses an
|
| /llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| H A D | JITSymbol.cpp | 29 Flags |= JITSymbolFlags::Common; in fromGlobalValue() 58 Flags |= JITSymbolFlags::Common; in fromSummary() 79 Flags |= JITSymbolFlags::Common; in fromObjectSymbol()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | alignment.ll | 13 ; Common variables should not get rounded up to the preferred alignment (16) if 36 ; Common variables should not get rounded up to the preferred alignment (16) if
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/ |
| H A D | unwind-info-x86_64.test | 8 # CHECK: Common encodings array section offset: 0x1c 14 # CHECK: Common encodings: (count = 2)
|
| H A D | unwind-info-arm64.test | 8 # CHECK: Common encodings array section offset: 0x1c 14 # CHECK: Common encodings: (count = 2)
|