Displaying 3 results from an estimated 3 matches for "emitinilneasm".
2014 Jan 29
6
[LLVMdev] making emitInlineAsm protected
I would like to make the following member of AsmPrinter be protected
void EmitInlineAsm(StringRef Str, const MDNode *LocMDNode = 0,
InlineAsm::AsmDialect AsmDialect =
InlineAsm::AD_ATT) const;
I have some stubs that I want to emit in MipsAsmParser .
Are there any objections to doing this?
Reed
2014 Jan 31
4
[LLVMdev] making emitInlineAsm protected
...> > InlineAsm::AD_ATT) const;
> >
> > I have some stubs that I want to emit in MipsAsmParser .
>
> You mean Printer? There is no such a thing as inline asm in a .s file.
>
> > Are there any objections to doing this?
>
> Probably. EmitInilneAsm is the only case I know that has a reasonable use of
> hasRawTextSupport in order for it to work on targets without an asm parser.
> Exposing it exposes a way for targets avoid the MC layer.
>
> Cheers,
> Rafael
> _______________________________________________
> LLVM Develope...
2014 Jan 29
6
[LLVMdev] making emitInlineAsm protected
...ect AsmDialect =
>> InlineAsm::AD_ATT) const;
>>
>> I have some stubs that I want to emit in MipsAsmParser .
> You mean Printer? There is no such a thing as inline asm in a .s file.
>
>> Are there any objections to doing this?
> Probably. EmitInilneAsm is the only case I know that has a reasonable
> use of hasRawTextSupport in order for it to work on targets without an
> asm parser. Exposing it exposes a way for targets avoid the MC layer.
>
> Cheers,
> Rafael
So how do I create stubs?
I have specific function stubs that I want t...