search for: ssijaric

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

Did you mean: sijaric
2016 Mar 22
1
Question about GlobalOpt
...unction Attributes pass for the purpose of detecting norecurse functions: http://reviews.llvm.org/D14769. I’ll look for other threads on this topic. Thanks, Sanjin From: mehdi.amini at apple.com [mailto:mehdi.amini at apple.com] Sent: Monday, March 21, 2016 4:02 PM To: Sanjin Sijaric <ssijaric at codeaurora.org> Cc: LLVM Dev Mailing List <llvm-dev at lists.llvm.org>; Chandler Carruth <chandlerc at google.com>; James Molloy <james at jamesmolloy.co.uk> Subject: Re: [llvm-dev] Question about GlobalOpt On Mar 21, 2016, at 3:57 PM, Sanjin Sijaric via ll...
2015 Jan 30
2
[LLVMdev] [PATCH] Bugfix for missed dependency from store to load in buildSchedGraph().
...Finkel [mailto:hfinkel at anl.gov] Sent: den 23 december 2014 18:11 To: Sanjin Sijaric Cc: Mattias Eriksson V; llvmdev at cs.uiuc.edu; Tom Stellard; Sergei Larin; Jonas Paulsson; Andrew Trick Subject: Re: ScheduleDAGInstrs.cpp ----- Original Message ----- > From: "Sanjin Sijaric" <ssijaric at codeaurora.org> > To: "Jonas Paulsson" <jonas.paulsson at ericsson.com>, "Andrew Trick" > <atrick at apple.com> > Cc: "Hal Finkel" <hfinkel at anl.gov>, "Mattias Eriksson V" > <mattias.v.eriksson at ericsson.com>, l...
2015 Feb 10
2
[LLVMdev] [PATCH] Bugfix for missed dependency from store to load in buildSchedGraph().
...s.uiuc.edu Subject: Re: [PATCH] Bugfix for missed dependency from store to load in buildSchedGraph(). ----- Original Message ----- > From: "Jonas Paulsson" <jonas.paulsson at ericsson.com> > To: "Hal Finkel" <hfinkel at anl.gov>, "Sanjin Sijaric" <ssijaric at codeaurora.org>, "Andrew Trick (atrick at apple.com)" > <atrick at apple.com>, llvm-commits at cs.uiuc.edu > Cc: "Mattias Eriksson V" <mattias.v.eriksson at ericsson.com>, llvmdev at cs.uiuc.edu, "Tom Stellard" > <thomas.stellard at amd.co...
2018 Jul 17
3
Upstreaming Exception Handling support for Windows on ARM64
Hi, We would like to upstream exception handling support for Windows on ARM64. Microsoft-published specifications can be found here: a) https://docs.microsoft.com/en-us/cpp/build/arm64-exception-handling b) https://docs.microsoft.com/en-us/cpp/build/arm64-windows-abi-conventions We propose the following approach: 1) Upstream miscellaneous clang and llvm patches that are
2016 Mar 21
3
Question about GlobalOpt
Hi, GlobalOpt may not consider demoting globals to locals in the "main" function when C is used. It used to consider "main" specifically prior to commit r253168 , for both C and C++. Since r253168, the check for the norecurse attribute may prevent "main" from being considered. This happens because the Function Attributes pass will not add the norecurse
2014 Dec 19
2
[LLVMdev] ScheduleDAGInstrs.cpp
Hi, I write again regarding buildSchedGraph(), as I am still not happy about things there. I have found at least two examples which do not work out: 1) SU(2) Store "Value A" SU(1) Store "Value A" SU(0) Load "Value A" If MIsNeedChainEdge() returns false for SU(0) and SU(1), SU(0) is inserted into RejectedMemNodes and removed from its MemUses SU list, as this