Delete multi-byte related functions from PAL (#41611)
authorAdeel Mujahid <adeelbm@outlook.com>
Wed, 2 Sep 2020 03:25:22 +0000 (06:25 +0300)
committerGitHub <noreply@github.com>
Wed, 2 Sep 2020 03:25:22 +0000 (20:25 -0700)
commitcfd60300ced9acd1bfa417d89cfd9f0136ec07e2
tree353694e6f84df1e2e40108086b79a19ff234e25c
parentaaecee06466286c6313a6d16f9435d7cae5a1b9b
Delete multi-byte related functions from PAL (#41611)

* Delete multi-byte related functions from PAL

In PAL, delete:
* `IsDBCSLeadByte`; unimplemented.
* `IsDBCSLeadByteEx`; no-op.
* `GetCPInfo`; has hardcoded length of 4, and the only usage checks for
  `length == 1`.
* `_mbsinc`; has one usage in ilasm, which is simplified for Unix
  (after the removal of above).
* `_mbsninc`; unused.
* `_mbsdec`; usage is inlined as `p--` because `IsDBCSLeadByteEx` is a
  no-op.
* `GetCaseInsensitiveValueA`, handle ANSI cases as Unicode.
* `IsTextUnicode`, single usage in ilasm is inlined.

* Delete _MBCS, _ismbblead and simplifications

* Delete trailing whitespaces from PR file changed
60 files changed:
src/coreclr/src/dlls/mscordac/mscordac_unixexports.src
src/coreclr/src/ilasm/asmparse.h
src/coreclr/src/ilasm/grammar_after.cpp
src/coreclr/src/ilasm/ilasmpch.h
src/coreclr/src/pal/inc/pal.h
src/coreclr/src/pal/inc/rt/palrt.h
src/coreclr/src/pal/inc/rt/safecrt.h
src/coreclr/src/pal/src/CMakeLists.txt
src/coreclr/src/pal/src/cruntime/mbstring.cpp [deleted file]
src/coreclr/src/pal/src/locale/unicode.cpp
src/coreclr/src/pal/src/safecrt/input.inl
src/coreclr/src/pal/src/safecrt/internal.h
src/coreclr/src/pal/src/safecrt/internal_securecrt.h
src/coreclr/src/pal/src/safecrt/makepath_s.cpp
src/coreclr/src/pal/src/safecrt/output.inl
src/coreclr/src/pal/src/safecrt/safecrt_output_l.cpp
src/coreclr/src/pal/src/safecrt/splitpath_s.cpp
src/coreclr/src/pal/src/safecrt/tmakepath_s.inl
src/coreclr/src/pal/src/safecrt/tsplitpath_s.inl
src/coreclr/src/pal/src/safecrt/wmakepath_s.cpp
src/coreclr/src/pal/src/safecrt/wsplitpath_s.cpp
src/coreclr/src/pal/tests/palsuite/c_runtime/CMakeLists.txt
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsdec/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsdec/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsdec/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsdec/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsinc/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsinc/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsinc/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsinc/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsninc/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsninc/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsninc/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/c_runtime/_mbsninc/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/CMakeLists.txt
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test2/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test2/test2.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test2/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test3/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test3/test3.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/GetCPInfo/test3/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByte/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByte/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByte/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByte/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByteEx/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByteEx/test1/CMakeLists.txt [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByteEx/test1/test1.cpp [deleted file]
src/coreclr/src/pal/tests/palsuite/locale_info/IsDBCSLeadByteEx/test1/testinfo.dat [deleted file]
src/coreclr/src/pal/tests/palsuite/paltestlist.txt
src/coreclr/src/pal/tests/palsuite/paltestlist_to_be_reviewed.txt
src/coreclr/src/palrt/CMakeLists.txt
src/coreclr/src/palrt/unicode.cpp [deleted file]
src/coreclr/src/utilcode/makepath.cpp
src/coreclr/src/utilcode/splitpath.cpp
src/coreclr/src/utilcode/sstring.cpp