Displaying 4 results from an estimated 4 matches for "maxbytestoemit".
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...itValue(const MCExpr *Value, unsigned Size,
> unsigned AddrSpace);
> virtual void EmitGPRel32Value(const MCExpr *Value);
> virtual void EmitValueToAlignment(unsigned ByteAlignment, int64_t Value,
> - unsigned ValueSize, unsigned MaxBytesToEmit);
> + unsigned ValueSize, unsigned MaxBytesToEmit);
> virtual void EmitCodeAlignment(unsigned ByteAlignment,
> unsigned MaxBytesToEmit);
> virtual void EmitValueToOffset(const MCExpr *Offset, unsigned char Value);...
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote:
> This probably needs to be slightly tweaked to work with mainline. I don't see anything objectionable, but I think Daniel needs to review this one.
Updated patch to work with mainline.
http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94
- Michael Spencer
2016 Jan 22
2
Is there a reason why MCAsmStreamer class doesn't have its own .h file?
...o inherit from it?
> --
> ~Craig
>
Oops, missed the final part. I need to change the alignment. For my target
it is sort of independent of the data layout. I was going to overwrite
void MCAsmStreamer::EmitValueToAlignment(unsigned ByteAlignment, int64_t
Value, unsigned ValueSize, unsigned MaxBytesToEmit).
What is the reason it was made final? Why not to separate this class into
its own module?
--
Rail Shafigulin
Software Engineer
Esencia Technologies
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160121/f...
2016 Jan 21
4
Is there a reason why MCAsmStreamer class doesn't have its own .h file?
Does anybody know if there is a particular reason why MCAsmStreamer doesn't
have its own .h file?
https://github.com/llvm-mirror/llvm/blob/0e66a5f53c74056f95d178c86531d7d9cfb23da9/lib/MC/MCAsmStreamer.cpp#L41
It seems like it is a good idea to have this class declared as its own
module ( its own .cpp and .h files). That would make it easier to inherit
from it if there is a need (like in my