Avoid accessing LLVM/DWARF register mappings if undefined
authorDominic Chen <d.c.ddcc@gmail.com>
Fri, 12 Aug 2016 23:12:59 +0000 (23:12 +0000)
committerDominic Chen <d.c.ddcc@gmail.com>
Fri, 12 Aug 2016 23:12:59 +0000 (23:12 +0000)
commit2868fa171a35ebe9b8f4462004ed1bf359b86dba
tree46e543be0c805400d0c05e3341889d0e20642468
parentc9c0d2dcb5ff88916290deb5d413435ac1ac3bc6
Avoid accessing LLVM/DWARF register mappings if undefined

Summary:
If the backend does not define LLVM/DWARF register mappings, the associated
variables are undefined since the map initializer is called by auto-generated
TableGen routines. This patch initializes the pointers and sizes to nullptr
and zero, respectively, and checks that they are valid before searching
for a mapping.

Reviewers: grosbach, dschuff

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D23458

llvm-svn: 278574
llvm/include/llvm/MC/MCRegisterInfo.h
llvm/lib/MC/MCRegisterInfo.cpp