search for: nextsilicon

Displaying 4 results from an estimated 4 matches for "nextsilicon".

2018 Aug 08
2
Passing arguments to var args function
Hey Tim, thanks for the quick answer, this looks exactly like what I was trying to achieve, I was hoping there was something more clean, I was wondering how the community would accept a change in the TD, if the code at CallinvConvLower.cpp:138 would've passed the IsFixed flag to the AssignFn then all those workarounds wouldn't be needed, this example is only one of a few I can think of for
2020 Sep 10
2
[IR] Modelling of GlobalIFunc
> * Calling getBaseObject() on a GlobalIFunc returns its resolver function. I still don't understand how it can happen looking to the code ( https://github.com/llvm/llvm-project/blob/master/llvm/lib/IR/Globals.cpp#L430). I believe it should return nullptr (the same as if you call it from GlobalAlias that refers to GlobalIFunc). I don't have a strong opinion here because deriving
2017 Dec 14
0
Help adding entries to .symtab
...the normal assembly and linking process, nothing special there. It's a little more complicated if the two instructions are in different compilation units, but if they are in the same compilation then it should be pretty straightforward. --paulr From: Liad Mordekoviz [mailto:liad.mordekoviz at nextsilicon.com] Sent: Thursday, December 14, 2017 1:00 PM To: Robinson, Paul; llvm-dev Subject: Re: [llvm-dev] Help adding entries to .symtab Hey Paul, first of all thank you for taking the time to answer me, if I understand you correctly, I need to modify the instruction it self so one of it's operands...
2017 Dec 14
2
Help adding entries to .symtab
Hey Paul, first of all thank you for taking the time to answer me, if I understand you correctly, I need to modify the instruction it self so one of it's operands is a symbol, and then at MC layer handle that symbol and add an entry to the symtab for that label? What kind of symbol should I use doing such thing? external symbol or MCSymbol? I was trying to find where in the code during the MC