Displaying 8 results from an estimated 8 matches for "raincode".
2019 Dec 03
2
addition of vendor dwarf operator extension.
...ed as big endian and debugging on little endian host using lldb. The listed operator on dwarf issues does that, one operator instead of list of operators.
Proposal,
Addition of listed dwarf operator as vender extension in llvm/lldb till it gets released.
Regards,
Chirag Patel
Software Engineer | Raincode Labs India
Tel: (+91) 080 41159811
Mob: (+91) 9049336744
www.raincodelabs.com<http://www.raincodelabs.com/>
[linkedin-button]<https://in.linkedin.com/in/chirag-patel->
From: David Blaikie <dblaikie at gmail.com>
Sent: 02 December 2019 19:51
To: Chirag Patel <Chirag at raincode...
2018 Jul 16
2
Target triple normalzation through the LLVM C API
...on through the LLVM C API. I would suggest adding an LLVMNormalizeTriple function to the C API (in TargetMachine, I guess) which would wrap Triple::normalize(). Would this be the right way to go about it? If so, we'll propose a patch based on that idea.
Thanks for your help,
Markus Lindström, Raincode Labs (on behalf of LzLabs)
E-mail markus at raincode.com
2018 Aug 23
4
[DebugInfo] DIBuilder missing interface to generate DWARF info for packed_decimal basic type.
...gt; (Somebody is actively working on scaled binary operations, although they have not yet gotten to the point of wanting to support debug info.)
If possible, can you kindly get me in touch with them so I would not spend time on which is already been done?
Regards,
Chirag Patel| Software Engineer
RAINCODE Mainframe to .NET
Tel : +91 080 41159811 | Mob : +91 90493 36744
www.raincodelabs.com<http://www.raincodelabs.com/>
From: paul.robinson at sony.com <paul.robinson at sony.com>
Sent: 22 August 2018 23:03
To: Chirag Patel <Chirag at raincode.com>
Cc: llvm-dev at lists.llvm.org
Subj...
2019 Dec 02
3
addition of vendor dwarf operator extension.
...I am not sure how to go about it for llvm/lldb. Currently I am using it as vendor specific extension on our local fork.
Does adding it as vender specific extension seems like a good idea? If yes please provide me the details about adding specific vendor.
Regards,
Chirag Patel
Software Engineer | Raincode Labs India
Tel: (+91) 080 41159811
Mob: (+91) 9049336744
www.raincodelabs.com<http://www.raincodelabs.com/>
[linkedin-button]<https://in.linkedin.com/in/chirag-patel->
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/ll...
2020 Feb 20
2
[LLVM][DISubprogram][LL format updation query] Question regarding moving DISubprogram DIFlags to DISPFlag.
...create problems hence some of the flags may be present in spflags and in Boolean, as in example spFlags: DISPFlagThunk, isLocal: True.
- Chirag.
-----Original Message-----
From: Djordje Todorovic <djordje.todorovic at rt-rk.com>
Sent: 20 February 2020 14:40
To: Chirag Patel <Chirag at raincode.com>; llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] [LLVM][DISubprogram][LL format updation query] Question regarding moving DISubprogram DIFlags to DISPFlag.
Hi Chirag,
On 20.2.20. 09:57, Chirag Patel wrote:
> Yes, removing the support for isLocal, isDefinition fields completely from...
2018 Aug 22
2
[DebugInfo] DIBuilder missing interface to generate DWARF info for packed_decimal basic type.
...DW_AT_digit_count - unsigned integer, like unsigned DigitCount
DW_AT_decimal_scale - integer, like int DecimalScale
I am looking to add this info in DIBasicType class (DebugInfoMetadata.h) and would appreciate advice on above location.
Regrads,
Chirag Patel| Software Engineer
RAINCODE Mainframe to .NET
Tel : +91 080 41159811 | Mob : +91 90493 36744
www.raincodelabs.com<http://www.raincodelabs.com/>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180822/cca96de0/attachment-0001.html&...
2020 Feb 20
3
[LLVM][DISubprogram][LL format updation query] Question regarding moving DISubprogram DIFlags to DISPFlag.
...no changes in that.
so if ll file has isLocal and isDefinition it will result in parser error. But the bitcode read will work as usual.
- Chirag.
-----Original Message-----
From: Djordje Todorovic <djordje.todorovic at rt-rk.com>
Sent: 20 February 2020 14:16
To: Chirag Patel <Chirag at raincode.com>; llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] [LLVM][DISubprogram][LL format updation query] Question regarding moving DISubprogram DIFlags to DISPFlag.
Hi Chirag,
On 20.2.20. 07:51, Chirag Patel via llvm-dev wrote:
> Hello,
>
>
>
> In regard to the review request...
2020 Feb 20
3
[LLVM][DISubprogram][LL format updation query] Question regarding moving DISubprogram DIFlags to DISPFlag.
Hello,
In regard to the review request https://reviews.llvm.org/D74470,
I am trying to move five of the DIFlags to DISPFlag for the moment namely DIFlagExplicit, DIFlagPrototyped, DIFlagNoReturn, DIFlagThunk, DIFlagAllCallsDescribed.
The llvm ir format for DISubprogram currently has backword compatibility where the isLocal, isDefinition, virtuality, isOptimized and SPFlags are mutually exclusive.