This ensures that you get the same output regardless if generating code directly to an object file or if generating assembly and assembling that.
Add implementations of the EmitARM64WinCFI*() methods in AArch64TargetAsmStreamer, and fill in one blank in MCAsmStreamer.
Add corresponding directive handlers in AArch64AsmParser and COFFAsmParser.
The SEH directives have been picked to match the prior art for SEH assembly directives for x86_64, e.g. the spelling of ".seh_startepilogue" matching the preexisting ".seh_endprologue". For the directives for saving registers, the exact spelling from the arm64 documentation is picked, e.g. ".seh_save_reg" (to follow that naming for all the other ones, e.g. ".seh_save_fregp_x"), while the corresponding one for x86_64 is plain ".seh_savereg" without the second underscore.
Directives in the epilogues have the same names as in prologues, e.g. .seh_savereg, even though the registers are restored, not saved, at that point.
Looking at these names again, maybe we could add underscores in a few places. The directive names should match the opcode names from https://docs.microsoft.com/en-us/cpp/build/arm64-exception-handling .
For the names that aren't directly derived from the opcodes in the spec, it probably makes sense to match x86. Which I think the current names do; that seems fine.