| /llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Host/ |
| H A D | BUILD.gn | 19 "common/File.cpp", 20 "common/FileAction.cpp", 21 "common/FileCache.cpp", 22 "common/FileSystem.cpp", 23 "common/GetOptInc.cpp", 24 "common/Host.cpp", 29 "common/LZMA.cpp", 31 "common/MainLoop.cpp", 38 "common/PipeBase.cpp", 42 "common/Socket.cpp", [all …]
|
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | update_test_checks.py | 34 from UpdateTestChecks import common 55 initial_args = common.parse_commandline_args(parser) 60 common.error('Unexpected opt name: ' + opt_basename) 68 common.SCRUB_TRAILING_WHITESPACE_TEST_RE = common.SCRUB_TRAILING_WHITESPACE_AND_ATTRIBUTES_RE 70 common.SCRUB_TRAILING_WHITESPACE_TEST_RE = common.SCRUB_TRAILING_WHITESPACE_RE 85 common.verify_filecheck_prefixes(filecheck_cmd) 108 builder = common.FunctionTestBuilder( 121 builder.process_run_line(common.OPT_FUNCTION_RE, common.scrub_body, 170 m = common.CHECK_RE.match(input_line) 182 m = common.IR_FUNCTION_RE.match(input_line) [all …]
|
| H A D | update_analyze_test_checks.py | 39 from UpdateTestChecks import common 49 initial_args = common.parse_commandline_args(parser) 55 common.error('Unexpected opt name: ' + opt_basename) 58 for ti in common.itertests(initial_args.tests, parser, 62 m = common.TRIPLE_IR_RE.match(l) 74 common.verify_filecheck_prefixes(filecheck_cmd) 96 builder = common.FunctionTestBuilder( 116 builder.process_run_line(common.ANALYZE_FUNCTION_RE, common.scrub_body, 121 builder.process_run_line(common.LV_DEBUG_RE, common.scrub_body, 143 m = common.CHECK_RE.match(input_line) [all …]
|
| H A D | update_llc_test_checks.py | 15 from UpdateTestChecks import common 44 initial_args = common.parse_commandline_args(parser) 52 m = common.TRIPLE_IR_RE.match(l) 73 m = common.TRIPLE_ARG_RE.search(llc_cmd) 78 m = common.MARCH_ARG_RE.search(llc_cmd) 82 m = common.DEBUG_ONLY_ARG_RE.search(llc_cmd) 88 common.verify_filecheck_prefixes(filecheck_cmd) 116 builder = common.FunctionTestBuilder( 169 generated_prefixes = common.add_checks_at_end( 186 m = common.CHECK_RE.match(input_line) [all …]
|
| H A D | update_cc_test_checks.py | 28 from UpdateTestChecks import common 45 common.debug('Running', ' '.join(json_dump_args)) 112 common.error('Clang AST dump JSON format changed?') 167 args = common.parse_commandline_args(parser) 211 raw_tool_output = common.invoke_tool(extra_args[0], 215 common.OPT_FUNCTION_RE, common.scrub_body, raw_tool_output, 252 m = common.TRIPLE_ARG_RE.search(commands[0]) 275 common.verify_filecheck_prefixes(filecheck_cmd) 292 builder = common.FunctionTestBuilder( 371 m = common.CHECK_RE.match(line) [all …]
|
| /llvm-project-15.0.7/lldb/source/Host/ |
| H A D | CMakeLists.txt | 15 common/FileAction.cpp 16 common/FileCache.cpp 17 common/File.cpp 19 common/GetOptInc.cpp 20 common/Host.cpp 26 common/LZMA.cpp 27 common/MainLoop.cpp 34 common/PipeBase.cpp 39 common/Socket.cpp 41 common/Terminal.cpp [all …]
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | tools.cpp | 20 return common::visit( in GetLastName() 21 common::visitors{ in GetLastName() 39 return common::visit( in GetLastName() 48 return common::visit( in GetLastName() 59 return common::visit( in GetLastName() 67 return common::visit( in GetLastName() 78 return common::visit( in GetFirstName() 79 common::visitors{ in GetFirstName() 97 return common::visit( in GetFirstName() 106 return common::visit( in GetFirstName() [all …]
|
| H A D | parse-tree.cpp | 35 return common::visit( in EndsInBareName() 36 common::visitors{ in EndsInBareName() 123 return common::visit( in ActualArgToExpr() 124 common::visitors{ in ActualArgToExpr() 127 return common::visit( in ActualArgToExpr() 128 common::visitors{ in ActualArgToExpr() 150 return common::visit( in ConvertToArrayElementRef() 151 common::visitors{ in ConvertToArrayElementRef() 234 ActionStmt{common::Indirection{ in ConvertToAssignment() 239 return common::visit( in GetSource() [all …]
|
| /llvm-project-15.0.7/libcxx/test/std/ranges/range.adaptors/range.common.view/ |
| H A D | base.pass.cpp | 32 std::ranges::common_view<CopyableView> common(view); in test() local 33 assert(common.base().begin_ == buf); in test() 34 assert(std::move(common).base().begin_ == buf); in test() 36 ASSERT_SAME_TYPE(decltype(common.base()), CopyableView); in test() 38 static_assert(hasLValueQualifiedBase(common)); in test() 44 assert(std::move(common).base().begin_ == buf); in test() 47 static_assert(!hasLValueQualifiedBase(common)); in test() 53 assert(common.base().begin_ == buf); in test() 54 assert(std::move(common).base().begin_ == buf); in test() 56 ASSERT_SAME_TYPE(decltype(common.base()), CopyableView); in test() [all …]
|
| H A D | end.pass.cpp | 30 std::ranges::common_view<SizedRandomAccessView> common(view); in test() local 31 …std::same_as<RandomAccessIter> auto end = common.end(); // Note this should NOT be the sentinel ty… in test() 38 std::ranges::common_view<SizedRandomAccessView> const common(view); in test() local 58 std::ranges::common_view<SizedForwardView> common(view); in main() local 59 std::same_as<CommonForwardIter> auto end = common.end(); in main() 64 std::ranges::common_view<CopyableView> common(view); in main() local 65 std::same_as<CommonIntIter> auto end = common.end(); in main() 72 std::ranges::common_view<SizedForwardView> const common(view); in main() local 73 std::same_as<CommonForwardIter> auto end = common.end(); in main() 78 std::ranges::common_view<CopyableView> const common(view); in main() local [all …]
|
| H A D | adaptor.pass.cpp | 36 std::same_as<CommonView> auto result = std::views::common(view); in test() 43 std::same_as<std::ranges::ref_view<NotAView>> auto result = std::views::common(arr); in test() 73 auto const partial = std::views::transform(f) | std::views::common; in test() 84 auto const partial = std::views::common | std::views::transform(f); in test() 94 static_assert(!std::is_invocable_v<decltype(std::views::common)>); in test() 95 static_assert(!std::is_invocable_v<decltype(std::views::common), NotAView>); in test() 96 static_assert( CanBePiped<SomeView&, decltype(std::views::common)>); in test() 97 static_assert( CanBePiped<int(&)[10], decltype(std::views::common)>); in test() 98 static_assert(!CanBePiped<int(&&)[10], decltype(std::views::common)>); in test() 99 static_assert(!CanBePiped<NotAView, decltype(std::views::common)>); in test() [all …]
|
| H A D | begin.pass.cpp | 43 std::ranges::common_view<SizedRandomAccessView> common(view); in test() local 44 std::same_as<RandomAccessIter> auto begin = common.begin(); in test() 50 std::ranges::common_view<SizedRandomAccessView> const common(view); in test() local 51 std::same_as<RandomAccessIter> auto begin = common.begin(); in test() 67 std::ranges::common_view<SizedForwardView> common(view); in main() local 69 std::same_as<CommonIter> auto begin = common.begin(); in main() 71 std::same_as<CommonIter> auto cbegin = std::as_const(common).begin(); in main() 77 std::ranges::common_view<MoveOnlyView> common(std::move(view)); in main() local 79 std::same_as<CommonIter> auto begin = common.begin(); in main() 85 std::ranges::common_view<CopyableView> const common(view); in main() local [all …]
|
| /llvm-project-15.0.7/llvm/utils/UpdateTestChecks/ |
| H A D | asm.py | 5 from . import common 236 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 261 asm = common.SCRUB_KILL_COMMENT_RE.sub('', asm) 269 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 279 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 283 asm = common.SCRUB_KILL_COMMENT_RE.sub('', asm) 291 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 301 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 315 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) 325 asm = common.SCRUB_WHITESPACE_RE.sub(r' ', asm) [all …]
|
| /llvm-project-15.0.7/lld/test/MachO/ |
| H A D | lto-common-symbol-resolution.ll | 8 ; RUN: opt -module-summary %t/common.ll -o %t/common.o 18 ; RUN: llvm-ar rcs %t/defined-and-common.a %t/defined.o %t/common.o 19 ; RUN: llvm-ar rcs %t/common-and-defined.a %t/common.o %t/defined.o 20 ; RUN: llvm-ar rcs %t/weak-defined-and-common.a %t/weak-defined.o %t/common.o 21 ; RUN: llvm-ar rcs %t/common-and-weak-defined.a %t/common.o %t/weak-defined.o 24 ; RUN: %lld -dylib %t/defined.o %t/common.o -o %t/test 26 ; RUN: %lld -dylib %t/common.o %t/defined.o -o %t/test 51 ; RUN: %lld -dylib %t/defined.a %t/common.o -o %t/test 72 ;--- common.ll 76 @foo = common global i8 0 [all …]
|
| H A D | common-symbol-resolution.s | 4 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/common.s -o %t/common.o 5 # RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %t/weak-common.s -o %t/weak-common.o 15 # RUN: llvm-ar rcs %t/weak-defined-and-common.a %t/weak-defined.o %t/common.o 16 # RUN: llvm-ar rcs %t/common-and-weak-defined.a %t/common.o %t/weak-defined.o 18 ## The weak attribute appears to have no effect on common symbols. Given two 19 ## common symbols of the same name, we always pick the one with the larger size, 23 # RUN: %lld -lSystem -order_file %t/order %t/common.o %t/weak-common.o %t/test.o -o %t/test 25 # RUN: %lld -lSystem -order_file %t/order %t/weak-common.o %t/common.o %t/test.o -o %t/test 28 ## Defined symbols are the only ones that take precedence over common symbols. 70 #--- common.s [all …]
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | canonicalize-do.cpp | 27 common::visit( in Post() 28 common::visitors{ in Post() 32 [&](common::Indirection<AssociateConstruct> &associate) { in Post() 47 [&](common::Indirection<CriticalConstruct> &critical) { in Post() 51 [&](common::Indirection<DoConstruct> &doConstruct) { in Post() 55 [&](common::Indirection<IfConstruct> &ifConstruct) { in Post() 59 [&](common::Indirection<CaseConstruct> &caseConstruct) { in Post() 72 [&](common::Indirection<ForallConstruct> &forall) { in Post() 76 [&](common::Indirection<WhereConstruct> &where) { in Post() 112 std::get<Statement<common::Indirection<LabelDoStmt>>>( in CanonicalizeIfMatch() [all …]
|
| /llvm-project-15.0.7/llvm/test/Transforms/SimplifyCFG/ |
| H A D | hoist-from-addresstaken-block.ll | 9 ; CHECK: common.ret: 15 br label %common.ret 17 br label %common.ret 18 common.ret: 19 %common.retval = phi i32 [ 0, %loc ], [ 42, %loc2 ] 20 ret i32 %common.retval 25 ; CHECK-NEXT: common.ret: 32 common.ret: 34 ret i32 %common.retval 36 br label %common.ret [all …]
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | warn-common.s | 3 # RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/warn-common.s -o %t2.o 6 ## Report multiple commons if warn-common is specified 7 # RUN: ld.lld --warn-common %t1.o %t2.o -o %t.out 2>&1 | FileCheck %s --check-prefix=WARN 8 # WARN: multiple common of arr 10 # RUN: ld.lld --fatal-warnings --warn-common --no-warn-common %t1.o %t2.o -o %t.out 12 ## Report if common is overridden 13 # RUN: ld.lld --warn-common %t1.o %t3.o -o %t.out 2>&1 | FileCheck %s --check-prefix=OVER 14 # OVER: common arr is overridden 16 ## Report if common is overridden, but in different order 17 # RUN: ld.lld --warn-common %t3.o %t1.o -o %t.out 2>&1 | FileCheck %s --check-prefix=OVER
|
| /llvm-project-15.0.7/flang/lib/Evaluate/ |
| H A D | variable.cpp | 315 return common::visit(common::visitors{ in LEN() 335 return common::visit(common::visitors{ in LEN() 373 return common::visit(common::visitors{ in Rank() 388 return common::visit(common::visitors{ in Rank() 396 return common::visit(common::visitors{ in Rank() 432 return common::visit(common::visitors{ in Rank() 451 return common::visit(common::visitors{ in Rank() 464 return common::visit(common::visitors{ in GetFirstSymbol() 474 return common::visit(common::visitors{ in GetLastSymbol() 493 return common::visit(common::visitors{ in UnwrapComponent() [all …]
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | parse-tree.h | 372 common::Indirection<SaveStmt>, common::Indirection<TargetStmt>, 481 common::Indirection<CallStmt>, common::Indirection<CloseStmt>, 487 common::Indirection<GotoStmt>, common::Indirection<IfStmt>, 488 common::Indirection<InquireStmt>, common::Indirection<LockStmt>, 489 common::Indirection<NullifyStmt>, common::Indirection<OpenStmt>, 491 common::Indirection<PrintStmt>, common::Indirection<ReadStmt>, 492 common::Indirection<ReturnStmt>, common::Indirection<RewindStmt>, 493 common::Indirection<StopStmt>, common::Indirection<SyncAllStmt>, 496 common::Indirection<WaitStmt>, common::Indirection<WhereStmt>, 552 common::Indirection<Submodule>, common::Indirection<BlockData>, [all …]
|
| /llvm-project-15.0.7/flang/include/flang/Evaluate/ |
| H A D | target.h | 23 common::RoundingMode mode{common::RoundingMode::TiesToEven}; 61 static bool CanSupportType(common::TypeCategory, std::int64_t kind); 62 bool EnableType(common::TypeCategory category, std::int64_t kind, 64 void DisableType(common::TypeCategory category, std::int64_t kind); 67 common::TypeCategory category, std::int64_t kind) const; 69 common::TypeCategory category, std::int64_t kind) const; 70 bool IsTypeEnabled(common::TypeCategory category, std::int64_t kind) const; 80 std::uint8_t byteSize_[common::TypeCategory_enumSize][maxKind]{}; 81 std::uint8_t align_[common::TypeCategory_enumSize][maxKind]{};
|
| H A D | call.h | 45 extern template class Fortran::common::Indirection< 51 using SymbolRef = common::Reference<const Symbol>; 77 explicit ActualArgument(common::Label); 106 common::Label GetLabel() const { return std::get<common::Label>(u_); } in GetLabel() 119 return std::holds_alternative<common::Label>(u_); in isAlternateReturn() 128 common::Intent dummyIntent() const { return dummyIntent_; } in dummyIntent() 129 ActualArgument &set_dummyIntent(common::Intent intent) { in set_dummyIntent() 152 std::variant<common::CopyableIndirection<Expr<SomeType>>, AssumedType, 153 common::Label> 157 common::Intent dummyIntent_{common::Intent::Default}; [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-apply-replacements/Inputs/conflict/ |
| H A D | expected.txt | 2 New replacement: $(path)/common.h: 106:+26:"int & elem : ints" 3 Existing replacement: $(path)/common.h: 106:+26:"auto & i : ints" 5 New replacement: $(path)/common.h: 140:+7:"i" 6 Existing replacement: $(path)/common.h: 140:+7:"elem" 8 New replacement: $(path)/common.h: 169:+0:"(int*)" 9 Existing replacement: $(path)/common.h: 160:+12:"" 11 New replacement: $(path)/common.h: 169:+1:"nullptr" 12 Existing replacement: $(path)/common.h: 160:+12:""
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/Generic/ |
| H A D | debug-names-many-cu.ll | 71 @foobar1 = common dso_local global i8* null, align 8, !dbg !10 77 @foobar2 = common dso_local global i8* null, align 8, !dbg !20 83 @foobar3 = common dso_local global i8* null, align 8, !dbg !30 89 @foobar4 = common dso_local global i8* null, align 8, !dbg !40 95 @foobar5 = common dso_local global i8* null, align 8, !dbg !50 101 @foobar6 = common dso_local global i8* null, align 8, !dbg !60 107 @foobar7 = common dso_local global i8* null, align 8, !dbg !70 113 @foobar8 = common dso_local global i8* null, align 8, !dbg !80 119 @foobar9 = common dso_local global i8* null, align 8, !dbg !90 125 @foobar10 = common dso_local global i8* null, align 8, !dbg !100 [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/ |
| H A D | common-sym.test | 1 RUN: dsymutil -oso-prepend-path %p/.. %p/../Inputs/common.macho.x86_64 -f -o - | llvm-dwarfdump -v … 4 $ cat common.c 5 char common[16]; 8 $ clang -g -c common.c -o common.macho.x86_64.o 9 $ clang common.macho.x86_64.o -o common.macho.x86_64 12 CHECK: DW_AT_name {{.*}} "common"
|