Support/PathV2: Add native implementation.
authorMichael J. Spencer <bigcheesegs@gmail.com>
Wed, 1 Dec 2010 02:48:27 +0000 (02:48 +0000)
committerMichael J. Spencer <bigcheesegs@gmail.com>
Wed, 1 Dec 2010 02:48:27 +0000 (02:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120539 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/PathV2.cpp
unittests/Support/Path.cpp

index 7e49d8d446a47b647c1f21d222948d7a92792d85..7bb79887a3fa5981575c0b59aa8f772edbe020d9 100644 (file)
@@ -531,6 +531,28 @@ error_code replace_extension(SmallVectorImpl<char> &path,
   return make_error_code(errc::success);
 }
 
+error_code native(const Twine &path, SmallVectorImpl<char> &result) {
+  // Clear result.
+  result.set_size(0);
+#ifdef LLVM_ON_WIN32
+  SmallString<128> path_storage;
+  StringRef p = path.toStringRef(path_storage);
+  result.reserve(p.size());
+  for (StringRef::const_iterator i = p.begin(),
+                                 e = p.end();
+                                 i != e;
+                                 ++i) {
+    if (*i == '/')
+      result.push_back('\\');
+    else
+      result.push_back(*i);
+  }
+#else
+  path.toVector(result);
+#endif
+  return make_error_code(errc::success);
+}
+
 }
 }
 }
index 823b07803006a2758569a4a17fd95ad2fe945fd6..8570047af849593c2ac96b518e051373b5e53d5e 100644 (file)
@@ -107,6 +107,9 @@ TEST(Support, Path) {
     if (error_code ec = sys::path::replace_extension(temp_store, "ext"))
       ASSERT_FALSE(ec.message().c_str());
     outs() << "    replace_extension: " << temp_store << '\n';
+    if (error_code ec = sys::path::native(*i, temp_store))
+      ASSERT_FALSE(ec.message().c_str());
+    outs() << "    native: " << temp_store << '\n';
 
     outs().flush();
   }