search for: siddharth

Displaying 20 results from an estimated 132 matches for "siddharth".

2017 Sep 19
3
Dependency Info from AST
...nks for the suggestion i was trying to use the patch https://reviews.llvm.org/D30691 and ASTimporter concept for cross file analysis. Can u explain in details the approach u suggested ? What is `nm` on the object files ? Can u suggest some approach to start on this cross file analysis tool. Thanks, Siddharth On Tue, Sep 19, 2017 at 9:42 PM, Chris Bieneman <beanz at apple.com> wrote: > (Apologies for the re-send Siddharth, I failed to cc the list) > > There is no existing tool that I'm aware of which performs this analysis > on the AST. It is possible to do on an AST. You would j...
2017 Aug 17
3
Inst->replaceAllUsesWith and uses in ConstantExpr
I see. Is there a pre-existing way to do this in LLVM? Cheers, ~Siddharth. On Thu, 17 Aug 2017 at 02:12 Craig Topper <craig.topper at gmail.com> wrote: > ConstantExprs are immutable, they can't be changed once they are created. > And a ConstantExpr can reference other ConstantExprs. So replacing all uses > of a Value in a ConstantExpr would require c...
2018 May 11
2
LTO query
Yes running LLVM performance test suite with LTO and Thin LTO enabled. Thanks, Siddharth On Fri, May 11, 2018 at 7:32 PM, Teresa Johnson <tejohnson at google.com> wrote: > I'm not completely sure what you are asking. Are you looking for > performance benchmarks to use for LTO and ThinLTO testing? Or are you > asking how to build/run with LTO and ThinLTO? Are you as...
2018 May 01
2
Disabling Exception in LLVM
...the built Clang can compile C++ code with or without exceptions (using the -fno-exceptions). flag. Said another way Clang's implementation doesn't use exceptions but Clang itself can compile C++ code with or without exception support. Can anyone clarify on this comment ? Thanks, Siddharth On Tue, May 1, 2018 at 11:02 PM, Chris Bieneman <chris.bieneman at me.com> wrote: > Siddharth, > > I'm not sure what coding standards you refer to when you say "some C++ > coding standard". This question is answered in the LLVM Coding Standards > document here:...
2019 Apr 05
2
[cfe-dev] scan-build on Windows
Hi Siddharth, alternativly you can try this <https://github.com/rizsotto/scan-build>, it's written in Python. Regards, Laszlo On Sat, Apr 6, 2019 at 5:14 AM Artem Dergachev via cfe-dev < cfe-dev at lists.llvm.org> wrote: > Hi, > > I never tried it myself but i can try to help you wi...
2017 Sep 19
0
Dependency Info from AST
> On Sep 19, 2017, at 10:09 AM, Siddharth Shankar Swain <h2015096 at pilani.bits-pilani.ac.in> wrote: > > Hi Chris, > Thanks for the suggestion i was trying to use the patch https://reviews.llvm.org/D30691 <https://reviews.llvm.org/D30691> and ASTimporter concept for cross file analysis. Can u explain in details the a...
2018 May 11
2
LTO query
Hi, Thanks for the info, If i only want to run performance test on benchmarks for LTO and Thin LTO enabled target, Can u suggest ways to do it ? I want to do it at my end. Thanks, Siddharth On Wed, May 2, 2018 at 7:03 PM, Teresa Johnson <tejohnson at google.com> wrote: > I've only measured performance on x86. There are some old results for SPEC > cpu2006 in the blog post here: > http://blog.llvm.org/2016/06/thinlto-scalable-and-incremental-lto.html > The ben...
2018 May 11
0
LTO query
...test-suite-overview http://llvm.org/docs/lnt/quickstart.html http://llvm.org/docs/lnt/tests.html#llvm-cmake-test-suite But I can't find any documentation describing how to pass custom options to lnt runtests, so hopefully Mehdi or someone else can help. Teresa On Fri, May 11, 2018 at 7:59 AM Siddharth Shankar Swain < h2015096 at pilani.bits-pilani.ac.in> wrote: > Yes running LLVM performance test suite with LTO and Thin LTO enabled. > Thanks, > Siddharth > > On Fri, May 11, 2018 at 7:32 PM, Teresa Johnson <tejohnson at google.com> > wrote: > >> I'm not...
2019 Apr 10
2
[cfe-dev] scan-build on Windows
...tools like scan-build in /usr/bin i am not able to generate reports ( HTML files ) Could you provide the exact command and its exact output? Normally you don't care where is everything installed because you simply provide the path to the analyzer with `--use-analyzer`. On 4/8/19 12:26 PM, Siddharth Shankar Swain wrote: > Hi Artem, Laszlo, > > There are couple of problems with scan-build :- > > 1) For Windows i get the following error while running scan-build - " > > “scan-build: Not supported for windows. Exiting...”: > > 2) For Linux Also if i don't instal...
2020 Mar 03
2
TBAA for struct fields
...nd gcc O0/O1/O2 give the same expected result. For Clang, O1 onwards results are wrong! This is because the load and store get hoisted and sinked in the loop in foo, respectively. That happens even though load(p1->f2) and store(p2->f1) are same address, but LLVM doesn’t find it. Thanks, Siddharth ________________________________ From: Oliver Stannard <oliver.stannard at linaro.org> Sent: Friday, February 28, 2020 4:55 PM To: Tiwary, Siddharth <Siddharth.Tiwary at amd.com> Cc: llvm-dev at lists.llvm.org <llvm-dev at lists.llvm.org> Subject: Re: [llvm-dev] TBAA for struct f...
2017 Aug 17
2
Inst->replaceAllUsesWith and uses in ConstantExpr
Whoops, sorry, I meant "value->replaceAllUsesWith". Should I create a new post with an updated title? Thanks Siddharth On Thu 17 Aug, 2017, 01:05 Tim Northover <t.p.northover at gmail.com> wrote: > On 16 August 2017 at 15:39, (IIIT) Siddharth Bhat via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > > From what I have observed, using `Inst->replaceAllUsesWith` does not > replace >...
2018 May 01
0
Disabling Exception in LLVM
...exceptions enabled, it just means we don't use them. Clang is a full C++ compiler. Even though LLVM & Clang do not use exceptions in their implementation, Clang does support compiling C++ code that uses exceptions. Does this answer your question? -Chris > On May 1, 2018, at 10:38 AM, Siddharth Shankar Swain <h2015096 at pilani.bits-pilani.ac.in> wrote: > > Hi Chris, > Thanks for answering, Can u clarify on this comment mentioned in https://github.com/Z3Prover/z3/issues/861 <https://github.com/Z3Prover/z3/issues/861> . > > cplusplus no exception support · Is...
2018 May 01
2
Disabling Exception in LLVM
Hi all, Can anyone explain why exceptions are disabled in LLVM, even if some C++ coding standard tells to use exceptions ? Thanks, Siddharth -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180501/ed7903db/attachment-0001.html>
2018 May 11
0
LTO query
...not completely sure what you are asking. Are you looking for performance benchmarks to use for LTO and ThinLTO testing? Or are you asking how to build/run with LTO and ThinLTO? Are you asking how to run LLVM's performance test-suite with LTO and ThinLTO? Teresa On Fri, May 11, 2018 at 5:21 AM Siddharth Shankar Swain < h2015096 at pilani.bits-pilani.ac.in> wrote: > Hi, > Thanks for the info, If i only want to run performance test on benchmarks > for LTO and Thin LTO enabled target, Can u suggest ways to do it ? I want > to do it at my end. > Thanks, > Siddharth > > O...
2017 Apr 21
2
Relocation design of different architecture
Thanks. I am just trying to find a relocation and linking design for Hexagon architecture, whether to follow the MIPS style of relocation or other architecture style of relocation. Thats my question . Thats why i was asking about the functions and their differences Please guide. Thanks, Siddharth On Fri, Apr 21, 2017 at 8:37 PM, mats petersson <mats at planetcatfish.com> wrote: > If you look at the actual code, it's fairly obvious that the approach is > different, in that the COFF versions have a single architecture per class, > the ELF supports many different architect...
2018 May 30
2
Meetup/Social in India
...a, we are planning to organize LLVM meetups in India evry monthly or bimonthly in the best interest of other developers. Based on the concentration of developers Pune, Bangalore and Hyderabad are the location we have in mind. Interested folks please reply stating ur opinion/views on this. Thanks, Siddharth -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180530/254578bb/attachment.html>
2018 Jan 30
1
Enabling LTO for new target
yeah so when LTO runs, in the linker, it uses the target to produce object code. In the sense of code generation for target arch. Thanks, Siddharth On Mon, Jan 29, 2018 at 11:03 PM, Teresa Johnson <tejohnson at google.com> wrote: > Can you be more specific? LTO/ThinLTO are target independent. You just > need to be using a linker that supports *LTO (gold, lld, ld64, eg). > Teresa > > > On Sun, Jan 28, 2018 at 9:04 PM,...
2017 Sep 14
2
Dependency Info from AST
...d we want to analyze their ASTs to find out any dependency between them ( like a function defined in one c file is used in other, any external variable etc ). How can we do it at the AST level? I mean is there any automated tool or flag for it in LLVM. If anyone has any idea please tell. sincerely, Siddharth -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170914/2b8d6282/attachment.html>
2017 Jan 15
3
LLVM Start
Hello, I am a computer science student new to LLVM compiler infrastructure. Please guide me where to start from to learn LLVM in the most effective way. Thanks, Siddharth Shankar Swain -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170115/6855d875/attachment.html>
2018 May 30
0
Meetup/Social in India
I'd be interested in attending and helping organise the Hyderabad meetup. Cheers Siddharth On Wed 30 May, 2018, 14:32 Siddharth Shankar Swain via llvm-dev, < llvm-dev at lists.llvm.org> wrote: > Hi Folks, > > We are a group of LLVM compiler developers in Hyderabad area. Considering > few previous mail about meetups in India, we are planning to organize LLVM > meetu...