| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | Format.cpp | 142 FmtReplacement repl; in parseFormatString() local 146 replacements.push_back(repl); in parseFormatString() 152 for (auto &repl : replacements) { in format() local 157 s << repl.spec; in format() 163 s << repl.spec; in format() 166 s << repl.spec << kMarkerForNoSubst; in format() 184 if (repl.index >= adapters.size()) { in format() 185 s << repl.spec << kMarkerForNoSubst; in format() 189 range = range.drop_front(repl.index); in format() 199 if (repl.index >= adapters.size()) { in format() [all …]
|
| H A D | Pattern.cpp | 294 return std::string(repl); in getValueAndRangeUse() 308 return std::string(repl); in getValueAndRangeUse() 344 return repl; in getValueAndRangeUse() 351 return std::string(repl); in getValueAndRangeUse() 357 std::string repl = in getValueAndRangeUse() local 360 return repl; in getValueAndRangeUse() 363 auto repl = in getValueAndRangeUse() local 401 return repl; in getAllRangeUse() 414 std::string repl = in getAllRangeUse() local 417 return repl; in getAllRangeUse() [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/REPL/ |
| H A D | Basic.test | 3 // RUN: %lldb --repl --repl-language c++ 2>&1 | FileCheck %s --check-prefix=CPP 6 // RUN: %lldb --repl --repl-language python 2>&1 | FileCheck %s --check-prefix=PYTHON 9 // RUN: not %lldb --repl --repl-language bogus 2>&1 | FileCheck %s --check-prefix=BOGUS
|
| /llvm-project-15.0.7/clang/www/ |
| H A D | builtins.py | 147 def report_repl(builtin, repl): argument 148 …iltin %s used, replaced with %s\n" % (fileinput.filename(), fileinput.filelineno(), builtin, repl)) 154 for builtin, repl in repl_map.items(): 156 line = line.replace(builtin, repl) 157 report_repl(builtin, repl)
|
| /llvm-project-15.0.7/clang/tools/clang-repl/ |
| H A D | CMakeLists.txt | 10 add_clang_tool(clang-repl 14 clang_target_link_libraries(clang-repl PRIVATE 23 export_executable_symbols_for_plugins(clang-repl)
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/dsp/ |
| H A D | invalid.s | 32 repl.qb $2, -1 # CHECK: :[[@LINE]]:15: error: expected 8-bit unsigned immediate 33 repl.qb $2, 256 # CHECK: :[[@LINE]]:15: error: expected 8-bit unsigned immediate 34 repl.ph $2, -513 # CHECK: :[[@LINE]]:15: error: expected 10-bit signed immediate 35 repl.ph $2, 512 # CHECK: :[[@LINE]]:15: error: expected 10-bit signed immediate
|
| H A D | valid.s | 100 …repl.ph $2, 12 # CHECK: repl.ph $2, 12 # encoding: [0x7c,0x… 101 …repl.qb $1, 85 # CHECK: repl.qb $1, 85 # encoding: [0x7c,0x…
|
| /llvm-project-15.0.7/lldb/source/Interpreter/ |
| H A D | embedded_interpreter.py | 117 repl = code.InteractiveConsole(local_dict) 123 repl.runsource(input_string) 125 repl.runsource(g_run_one_line_str)
|
| /llvm-project-15.0.7/lldb/tools/driver/ |
| H A D | Options.td | 65 def grp_repl : OptionGroup<"repl">, HelpText<"REPL">; 67 def repl: Flag<["--", "-"], "repl">, 71 Alias<repl>, 72 HelpText<"Alias for --repl">, 74 def repl_: Joined<["--", "-"], "repl=">, 81 HelpText<"Alias for --repl=<flags>">, 84 def repl_language: Separate<["--", "-"], "repl-language">, 90 HelpText<"Alias for --repl-language">,
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | preprocessor.cpp | 28 const TokenSequence &repl, std::size_t firstToken, std::size_t tokens) in Definition() argument 29 : replacement_{Tokenize({}, repl, firstToken, tokens)} {} in Definition() 32 const TokenSequence &repl, std::size_t firstToken, std::size_t tokens, in Definition() argument 36 replacement_{Tokenize(argNames, repl, firstToken, tokens)} {} 294 std::string repl; in MacroReplacement() local 296 repl = "\""s + in MacroReplacement() 302 repl = ss.str(); in MacroReplacement() 304 if (!repl.empty()) { in MacroReplacement() 307 insert, input.GetTokenProvenanceRange(j), repl)}; in MacroReplacement() 308 result.Put(repl, call.start()); in MacroReplacement() [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Driver/ |
| H A D | TestHelp.test | 57 CHECK: --repl-language 58 CHECK: --repl
|
| H A D | TestRepl.test | 3 # RUN: echo ':quit' | %lldb -x --repl -O 'expr 42' -S %S/Inputs/Print2.in -o 'expr 999999' -s %s 2>…
|
| /llvm-project-15.0.7/llvm/utils/gn/build/ |
| H A D | write_cmake_config.py | 67 def repl(m): function 71 in_line = var_re.sub(repl, in_line)
|
| /llvm-project-15.0.7/llvm/test/Transforms/Scalarizer/ |
| H A D | constant-insertelement.ll | 7 define <4 x i32> @f1(<4 x i32> *%src, i32 %repl, i32 %index) { 26 %val1 = insertelement <4 x i32> %val0, i32 %repl, i32 3
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/micromips-dsp/ |
| H A D | invalid.s | 4 repl.ph $2, -513 # CHECK: :[[@LINE]]:15: error: expected 10-bit signed immediate 5 repl.ph $2, 512 # CHECK: :[[@LINE]]:15: error: expected 10-bit signed immediate
|
| H A D | valid.s | 98 repl.ph $1, 2 # CHECK: repl.ph $1, 2 # encoding: [0x00,0x02,0x08,0x3d] 99 repl.qb $1, 128 # CHECK: repl.qb $1, 128 # encoding: [0x00,0x30,0x05,0xfc]
|
| /llvm-project-15.0.7/lldb/docs/man/ |
| H A D | lldb.rst | 216 Alias for --repl=<flags> 218 .. option:: --repl-language <language> 222 .. option:: --repl=<flags> 228 Alias for --repl-language 275 Passing --repl starts :program:`lldb` in REPL mode. 319 ``.lldbinit-<language>-repl`` (i.e. ``.lldbinit-swift-repl``). If this file doesn't
|
| /llvm-project-15.0.7/mlir/lib/Transforms/Utils/ |
| H A D | DialectConversion.cpp | 1063 for (auto &repl : replacements) { in applyRewrites() local 1070 if (repl.first->getNumRegions()) in applyRewrites() 1071 argConverter.notifyOpRemoved(repl.first); in applyRewrites() 1077 if (!repl) in applyRewrites() 1080 if (repl.isa<BlockArgument>()) { in applyRewrites() 1081 arg.replaceAllUsesWith(repl); in applyRewrites() 1109 repl.first->dropAllUses(); in applyRewrites() 1110 repl.first->erase(); in applyRewrites() 1146 for (auto result : repl.first->getResults()) in resetState() 2477 trackedOps->erase(repl.first); in convertOperations() [all …]
|
| H A D | FoldUtils.cpp | 287 if (auto repl = foldResults[i].dyn_cast<Value>()) { in processFoldResults() local 288 if (repl.getType() != op->getResult(i).getType()) { in processFoldResults() 292 results.emplace_back(repl); in processFoldResults()
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/clang/tools/clang-repl/ |
| H A D | BUILD.gn | 1 executable("clang-repl") {
|
| /llvm-project-15.0.7/llvm/test/Transforms/Inline/ |
| H A D | alloca-bonus.ll | 38 ; %D poisons this call, scalar-repl can't handle that instruction. 99 ; %B poisons this call, scalar-repl can't handle that instruction. However, we 141 ; %D poisons this call, scalar-repl can't handle that instruction. However, if
|
| /llvm-project-15.0.7/lld/COFF/ |
| H A D | CallGraphSort.cpp | 89 const auto *fromSec = cast<SectionChunk>(c.first.first->repl); in CallGraphSort() 90 const auto *toSec = cast<SectionChunk>(c.first.second->repl); in CallGraphSort()
|
| H A D | Chunks.cpp | 34 : Chunk(SectionKind), file(f), header(h), repl(this) { in SectionChunk() 637 if (sym && this == repl) in printDiscardedMessage() 692 other->repl = repl; in replace()
|
| /llvm-project-15.0.7/llvm/test/MC/Mips/dspr2/ |
| H A D | valid.s | 134 …repl.ph $2, 12 # CHECK: repl.ph $2, 12 # encoding: [0x7c,0x0c,0… 135 …repl.qb $1, 85 # CHECK: repl.qb $1, 85 # encoding: [0x7c,0x55,0…
|
| /llvm-project-15.0.7/clang/tools/ |
| H A D | CMakeLists.txt | 17 add_clang_subdirectory(clang-repl)
|