Displaying 2 results from an estimated 2 matches for "mulle_objc_meta_call_convention".
2018 Jul 25
3
A question to the DWARF experts on symbol indirection
...a;
int b;
};
void fooWithAb( struct ab *_param)
{
}
Is it possible to emit DWARF statements, so that in the debugger the
parameter
_param is hidden and the visibility is a and b, without a _param-> prefix ?
Ciao
Nat!
Why I need this:
https://www.mulle-kybernetik.com/weblog/2015/mulle_objc_meta_call_convention.html
2015 Aug 28
2
RFC: alloca -- specify rounding factor for allocation (and more)
...e of 64 bytes. [^1]
* This allocaed field will be exclusively used as an argument to functions
* llvm should be aware of the extra bytes and should be able to use them
in subsequent arguments to function calls (e.g. tail calls)
... Why do I need this ?
http://www.mulle-kybernetik.com/weblog/2015/mulle_objc_meta_call_convention.html
AFAIK AllocaInst can do address alignment but not size alignment. I
wonder if that would be an "OK" addition to llvm, if one could specify a
rounding also ?
Then I would need a way to signal to llvm that this is a special field,
so that it may reuse all the space. Would I mark t...