Home
last modified time | relevance | path

Searched refs:remapped (Results 1 – 25 of 31) sorted by relevance

12

/llvm-project-15.0.7/lldb/unittests/Target/
H A DFindFileTest.cpp27 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 DPathMappingListTest.cpp20 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 DPathMappingList.cpp144 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 Dcrash-recovery-reparse-remap.c2 #warning parsing remapped file
/llvm-project-15.0.7/lldb/source/Core/
H A DSourceManager.cpp461 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 DModule.cpp1614 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 Dnon-const-parameter.cpp249 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 Dtype-mapping-bug4.ll55 ; * 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 Dtest-legalize-remapped-value.mlir1 // RUN: mlir-opt %s -test-remapped-value | FileCheck %s
/llvm-project-15.0.7/mlir/docs/
H A DDialectConversion.md177 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 Ddistinct.ll5 ; remapped.
H A Dmdlocation.ll3 ; Test that DILocations are remapped properly.
H A Dtestlink.ll11 ; The uses of intlist in the other file should be remapped.
/llvm-project-15.0.7/llvm/test/tools/dsymutil/
H A Dcmdline.test19 CHECK: -object-prefix-map <prefix=remapped>
/llvm-project-15.0.7/lld/test/COFF/
H A Dprecomp-ghash.test3 # have properly remapped indices to corresponding TPI records.
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Ddsymutil.rst84 .. option:: --object-prefix-map <prefix=remapped>
87 this for Clang objects where the module cache location was remapped using
H A Dllvm-cxxmap.rst79 # C function "void foo_bar()" is remapped to C++ function "void foo::bar()".
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DOptions.td121 MetaVarName<"<prefix=remapped>">,
124 "remapped using -fdebug-prefix-map; to help dsymutil"
/llvm-project-15.0.7/mlir/docs/Tutorials/Toy/
H A DCh-5.md101 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 DModuleTranslation.cpp1071 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 Dstep_one.mlir66 // Using remapped values instead of loop iterators.
/llvm-project-15.0.7/llvm/test/DebugInfo/X86/
H A Dclone-module.ll27 ; metadata !8 2nd argument and the !dbg !14 debug location may get remapped
/llvm-project-15.0.7/mlir/lib/Transforms/Utils/
H A DDialectConversion.cpp893 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 Darm64-regbankselect.mir315 ; 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 DCompilerRTUtils.cmake440 # Android uses i686, but that's remapped at a later stage.

12