| /llvm-project-15.0.7/lldb/unittests/Target/ |
| H A D | FindFileTest.cpp | 27 llvm::StringRef remapped; member 28 Matches(const char *o, const char *r) : original(o), remapped(r) {} in Matches() 30 : original(o, style), remapped(r) {} in Matches() 55 SCOPED_TRACE(match.original.GetPath() + " -> " + match.remapped); in TestFileFindings() 56 llvm::Optional<FileSpec> remapped; in TestFileFindings() local 58 EXPECT_TRUE(bool(remapped = map.FindFile(match.original))); in TestFileFindings() 59 EXPECT_TRUE(FileSpec(remapped.value()).GetPath() == in TestFileFindings() 60 ConstString(match.remapped).GetStringRef()); in TestFileFindings()
|
| H A D | PathMappingListTest.cpp | 20 FileSpec remapped; member 21 Matches(const char *o, const char *r) : original(o), remapped(r) {} in Matches() 23 : original(o, style), remapped(r) {} in Matches() 37 SCOPED_TRACE(match.original.GetPath() + " -> " + match.remapped.GetPath()); in TestPathMappings() 41 EXPECT_EQ(FileSpec(actual_remapped.GetStringRef()), match.remapped); in TestPathMappings() 43 EXPECT_TRUE(map.ReverseRemapPath(match.remapped, unmapped_spec)); in TestPathMappings()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | PathMappingList.cpp | 144 if (llvm::Optional<FileSpec> remapped = RemapPath(path.GetStringRef())) { in RemapPath() local 145 new_path.SetString(remapped->GetPath()); in RemapPath() 190 FileSpec remapped(it.second.GetStringRef()); in RemapPath() local 193 AppendPathComponents(remapped, path, orig_style); in RemapPath() 194 if (!only_if_exists || FileSystem::Instance().Exists(remapped)) in RemapPath() 195 return remapped; in RemapPath() 220 if (auto remapped = RemapPath(NormalizePath(orig_spec.GetPath()), in FindFile() local 222 return remapped; in FindFile()
|
| /llvm-project-15.0.7/clang/test/Index/Inputs/ |
| H A D | crash-recovery-reparse-remap.c | 2 #warning parsing remapped file
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | SourceManager.cpp | 461 auto remapped = target->GetSourcePathMap().FindFile(m_file_spec); in CommonInitializer() local 462 if (!remapped) { in CommonInitializer() 465 remapped = new_spec; in CommonInitializer() 467 if (remapped) { in CommonInitializer() 468 m_file_spec = *remapped; in CommonInitializer()
|
| H A D | Module.cpp | 1614 if (auto remapped = m_source_mappings.FindFile(orig_spec)) { in FindSourceFile() local 1615 new_spec = *remapped; in FindSourceFile() 1624 if (auto remapped = m_source_mappings.RemapPath(path)) in RemapSourceFile() local 1625 return remapped->GetPath(); in RemapSourceFile()
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/readability/ |
| H A D | non-const-parameter.cpp | 249 void constPointerArray(const char *remapped[][2]) { in constPointerArray() 250 const char *name = remapped[0][0]; in constPointerArray()
|
| /llvm-project-15.0.7/llvm/test/LTO/X86/ |
| H A D | type-mapping-bug4.ll | 55 ; * SourceElementType of getelementptr is remapped to itself. 56 ; * ResultElementType of getelementptr is incorrectly remapped to %class.CWBD*.
|
| /llvm-project-15.0.7/mlir/test/Transforms/ |
| H A D | test-legalize-remapped-value.mlir | 1 // RUN: mlir-opt %s -test-remapped-value | FileCheck %s
|
| /llvm-project-15.0.7/mlir/docs/ |
| H A D | DialectConversion.md | 177 updated/remapped operands of an operation, such as when the types of results 194 /// `operands` parameter, containing the remapped operands of the original 204 The types of the remapped operands provided to a conversion pattern must be of a 207 the types of the remapped operands are expected to match the types of the 208 original operands. If a type converter is provided, the types of the remapped 210 remapped operand types are not of an expected type, and a materialization to the 213 explicitly ensure type safety, or sanitize the types of the incoming remapped 269 the remapped operands to be of a certain set of types, but the original 274 * When the remapped operands of a
|
| /llvm-project-15.0.7/llvm/test/Linker/ |
| H A D | distinct.ll | 5 ; remapped.
|
| H A D | mdlocation.ll | 3 ; Test that DILocations are remapped properly.
|
| H A D | testlink.ll | 11 ; The uses of intlist in the other file should be remapped.
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/ |
| H A D | cmdline.test | 19 CHECK: -object-prefix-map <prefix=remapped>
|
| /llvm-project-15.0.7/lld/test/COFF/ |
| H A D | precomp-ghash.test | 3 # have properly remapped indices to corresponding TPI records.
|
| /llvm-project-15.0.7/llvm/docs/CommandGuide/ |
| H A D | dsymutil.rst | 84 .. option:: --object-prefix-map <prefix=remapped> 87 this for Clang objects where the module cache location was remapped using
|
| H A D | llvm-cxxmap.rst | 79 # C function "void foo_bar()" is remapped to C++ function "void foo::bar()".
|
| /llvm-project-15.0.7/llvm/tools/dsymutil/ |
| H A D | Options.td | 121 MetaVarName<"<prefix=remapped>">, 124 "remapped using -fdebug-prefix-map; to help dsymutil"
|
| /llvm-project-15.0.7/mlir/docs/Tutorials/Toy/ |
| H A D | Ch-5.md | 101 remapped/replaced. This is used when dealing with type conversions, as the 115 /// operands that have been remapped from `tensor<...>` to `memref<...>`. 122 // of affine loops. We provide a functor that operates on the remapped 130 // Generate an adaptor for the remapped operands of the TransposeOp.
|
| /llvm-project-15.0.7/mlir/lib/Target/LLVMIR/ |
| H A D | ModuleTranslation.cpp | 1071 SmallVector<llvm::Value *> remapped; in lookupValues() local 1072 remapped.reserve(values.size()); in lookupValues() 1074 remapped.push_back(lookupValue(v)); in lookupValues() 1075 return remapped; in lookupValues()
|
| /llvm-project-15.0.7/mlir/test/Conversion/SCFToGPU/ |
| H A D | step_one.mlir | 66 // Using remapped values instead of loop iterators.
|
| /llvm-project-15.0.7/llvm/test/DebugInfo/X86/ |
| H A D | clone-module.ll | 27 ; metadata !8 2nd argument and the !dbg !14 debug location may get remapped
|
| /llvm-project-15.0.7/mlir/lib/Transforms/Utils/ |
| H A D | DialectConversion.cpp | 893 SmallVectorImpl<Value> &remapped); 1258 SmallVectorImpl<Value> &remapped) { in remapValues() argument 1259 remapped.reserve(llvm::size(values)); in remapValues() 1304 remapped.push_back(newOperand); in remapValues()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/GlobalISel/ |
| H A D | arm64-regbankselect.mir | 315 ; Greedy mode remapped the instruction on the GPR bank. 348 ; Greedy mode remapped the instruction on the GPR bank.
|
| /llvm-project-15.0.7/compiler-rt/cmake/Modules/ |
| H A D | CompilerRTUtils.cmake | 440 # Android uses i686, but that's remapped at a later stage.
|