search for: ignorenoderesults

Displaying 6 results from an estimated 6 matches for "ignorenoderesults".

2008 Oct 01
2
[LLVMdev] Type Legalizer Question.
...ess to the map; just use build an > EXTRACT_ELEMENT node, and legalize will take care of the mapping for > you. > > -Eli > Thanks. I have another query related to type legalizer. Can a target ignore certain nodes during legalize? Probably a hook for target that can be called inside IgnoreNodeResults ()? We want to keep certain nodes illegal, especially the pointer nodes. Our target has 16-bit pointer and a few 16-bit insns to perform arithmetic. Rest of the stuff is 8-bit so we want to use legalizer to expand them. - Sanjiv ___________________________________________ > LLVM Developers m...
2008 Oct 01
3
[LLVMdev] Type Legalizer Question.
On Wed, 2008-10-01 at 11:12 +0200, Duncan Sands wrote: > Hi, > > > I have another query related to type legalizer. > > Can a target ignore certain nodes during legalize? Probably a hook for > > target that can be called inside IgnoreNodeResults ()? > > while this could be done, I don't like the idea of doing an end-run > around the whole type legalization infrastructure. So you would have > to come up with a pretty convincing argument as to why this can't be > done another way! > > > We want to keep cert...
2008 Oct 01
0
[LLVMdev] Type Legalizer Question.
Hi, > I have another query related to type legalizer. > Can a target ignore certain nodes during legalize? Probably a hook for > target that can be called inside IgnoreNodeResults ()? while this could be done, I don't like the idea of doing an end-run around the whole type legalization infrastructure. So you would have to come up with a pretty convincing argument as to why this can't be done another way! > We want to keep certain nodes illegal, especially the p...
2008 Oct 02
0
[LLVMdev] Type Legalizer Question.
...pta wrote: > On Wed, 2008-10-01 at 11:12 +0200, Duncan Sands wrote: >> Hi, >> >>> I have another query related to type legalizer. >>> Can a target ignore certain nodes during legalize? Probably a hook >>> for >>> target that can be called inside IgnoreNodeResults ()? >> >> while this could be done, I don't like the idea of doing an end-run >> around the whole type legalization infrastructure. So you would have >> to come up with a pretty convincing argument as to why this can't be >> done another way! >> >>...
2008 Sep 30
2
[LLVMdev] Type Legalizer Question.
All the sub methods called inside ExpandIntegerOperand like ExpandInOp_STORE etc have access to the expanded operands map. Why they aren't passed to target LowerOperation? A target may also want to use the already expanded Lo and Hi parts. - Sanjiv -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Sep 30
0
[LLVMdev] Type Legalizer Question.
On Tue, Sep 30, 2008 at 9:48 AM, <Sanjiv.Gupta at microchip.com> wrote: > All the sub methods called inside ExpandIntegerOperand like ExpandInOp_STORE > etc have access to the expanded operands map. > > Why they aren't passed to target LowerOperation? A target may also want to > use the already expanded Lo and Hi parts. You don't really need access to the map; just