MC: rename EmitWin64EH routines
authorSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 29 Jun 2014 01:52:01 +0000 (01:52 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Sun, 29 Jun 2014 01:52:01 +0000 (01:52 +0000)
commit622520e70f5db893be1ed14ef54528aaea607701
treec7f54e995a0f65002ce8ae26665a6acdeb4dfac6
parent521a69f182527afa267a9e2b4894e4a7ce71addb
MC: rename EmitWin64EH routines

Rename the routines to reflect the reality that they are more related to call
frame information than to Win64 EH. Although EH is implemented in an intertwined
manner by augmenting with an exception handler and an associated parameter, the
majority of these routines emit information required to unwind the frames. This
also helps identify that these routines are generic for most windows platforms
(they apply equally to nearly all architectures except x86) although the
encoding of the information is architecture dependent.

Unwinding data is emitted via EmitWinCFI* and exception handling information via
EmitWinEH*.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211994 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/MC/MCStreamer.h
include/llvm/MC/MCWinCOFFStreamer.h
lib/CodeGen/AsmPrinter/Win64Exception.cpp
lib/MC/MCAsmStreamer.cpp
lib/MC/MCParser/COFFAsmParser.cpp
lib/MC/MCStreamer.cpp
lib/MC/WinCOFFStreamer.cpp
lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
lib/Target/X86/X86MCInstLower.cpp