Displaying 2 results from an estimated 2 matches for "emitregisternam".
Did you mean:
emitregistername
2011 Jul 06
0
[LLVMdev] MCInstPrinter::printRegName
I have a question regarding implementation of subclasses of MCInstPrinter.
I am implementing Machine IR layer to MC layer lowering for Mips.
What's the best way to print the value of "Register" in the following code
in MCAsmStreamer::EmitRegisterName? Do I have to convert the LLVM register
number back to its corresponding dwarf register number in function
InstPrinter->printRegName? I just want to have it output the same register
number as before (the same output the false path would produce).
void MCAsmStreamer::EmitRegisterName(int64_t Re...
2013 Dec 19
1
[LLVMdev] [PATCH] MC: handle .cfi_startproc simple
...if (!shouldEmitPersonality)
> diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp
> index 781e400..9fb3c5d 100644
> --- a/lib/MC/MCAsmStreamer.cpp
> +++ b/lib/MC/MCAsmStreamer.cpp
> @@ -61,7 +61,7 @@ private:
> bool needsSet(const MCExpr *Value);
>
> void EmitRegisterName(int64_t Register);
> - virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame);
> + virtual void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame, bool Simple);
> virtual void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame);
>
> public:
> @@ -902,13 +902,15 @@ void M...