Re: (GSoC) I am interested in contributing to GCC's Rust Front-End

2025-03-17 Thread Martin Jambor
Hello, On Wed, Mar 12 2025, Joey Pandina via Gcc wrote: > Dear GCC representative, > My name is Joey and I am a senior Computer Science student at Washington > State University. I am interested in contributing to GCC this summer. Last > semester, I took a class on compilers and thorou

(GSoC) I am interested in contributing to GCC's Rust Front-End

2025-03-12 Thread Joey Pandina via Gcc
Dear GCC representative, My name is Joey and I am a senior Computer Science student at Washington State University. I am interested in contributing to GCC this summer. Last semester, I took a class on compilers and thoroughly enjoyed it. I would be very excited to apply my theoretical knowledge

Re: On master, with checking=all, I get dozens of fails for g++, already for months on end.

2025-02-11 Thread Toon Moene
regards, -- Toon Moene - e-mail: t...@moene.org - phone: +31 346 214290 Saturnushof 14, 3738 XG Maartensdijk, The Netherlands Thanks, I've reduced the issue with the modules testcases and created https://gcc.gnu.org/bugzilla/show_bug.cgi?id=118807 for this. I think this has worked:

Re: On master, with checking=all, I get dozens of fails for g++, already for months on end.

2025-02-09 Thread Nathaniel Shead via Gcc
On Fri, Feb 07, 2025 at 10:57:19AM +0100, Toon Moene wrote: > Compare a standard gcc build: > > https://gcc.gnu.org/pipermail/gcc-testresults/2025-February/837664.html > > with this one using checking=all: > > https://gcc.gnu.org/pipermail/gcc-testresults/2025-February/837708.html > > Other lan

On master, with checking=all, I get dozens of fails for g++, already for months on end.

2025-02-07 Thread Toon Moene
Compare a standard gcc build: https://gcc.gnu.org/pipermail/gcc-testresults/2025-February/837664.html with this one using checking=all: https://gcc.gnu.org/pipermail/gcc-testresults/2025-February/837708.html Other languages do not seem to be affected. A sample: FAIL: g++.dg/modules/xtreme-he

I need a Linux C Project.

2024-09-18 Thread Marco Marques via Gcc
Hi there, I need a help. I need a Linux C Project. How much does it cost? I pay well. Can you help me? Give some directions to use GCC. Sincerely, Marco Paulo S. Marques

Re: I have questions regarding the 4.3 codebase...

2024-07-03 Thread Sid Maxwell via Gcc
Awesome, thanks Richard! On Wed, Jul 3, 2024 at 2:44 AM Richard Biener wrote: > On Tue, Jul 2, 2024 at 9:26 PM Sid Maxwell via Gcc > wrote: > > > > I have another gcc 4.3 question. I'm trying to find where in the code > base > > the instrumentation for bas

Re: I have questions regarding the 4.3 codebase...

2024-07-02 Thread Richard Biener via Gcc
On Tue, Jul 2, 2024 at 9:26 PM Sid Maxwell via Gcc wrote: > > I have another gcc 4.3 question. I'm trying to find where in the code base > the instrumentation for basic block coverage is done. I've tracked down > where/how mcount() calls are generated, but I hav

Re: I have questions regarding the 4.3 codebase...

2024-07-02 Thread Sid Maxwell via Gcc
I have another gcc 4.3 question. I'm trying to find where in the code base the instrumentation for basic block coverage is done. I've tracked down where/how mcount() calls are generated, but I haven't even been able to determine what function(s) are called to increment a basic blo

RE: I am causing valgrind errors...

2024-01-10 Thread Robert Dubner
In the words of Nick Danger: "You just saved me a lot of investigative work." Thank you so much. Bob D. -Original Message- From: Jakub Jelinek Sent: Wednesday, January 10, 2024 15:51 To: Robert Dubner Cc: 'GCC Mailing List' Subject: Re: I am causing valgrind er

Re: I am causing valgrind errors...

2024-01-10 Thread Jakub Jelinek via Gcc
On Wed, Jan 10, 2024 at 02:47:08PM -0600, Robert Dubner wrote: > Here's the thing: when I run valgrind on the compilation -- not on the > executable, but on the compiler with the COBOL front end -- I am getting a > bunch of errors that look like variations of this: > >

I am causing valgrind errors...

2024-01-10 Thread Robert Dubner
This message is a bit of a Hail Mary play. I am not asking anybody to spend any real effort on this question; I am, instead, hoping that somebody will say, "Oh, sure; you can fix that by doing so-and-so..." or "That happens when the GENERIC tree is ..." Jim Lowden and I ar

The codeblocks which I installed is not compiling the program so guid me How to install a c compiler to codeblocks

2023-12-18 Thread Shivaprasad M S via Gcc

Re: "I can't get off this list! Unsubscribe me!"

2023-11-23 Thread Jonathan Wakely via Gcc
On Thu, 23 Nov 2023 at 16:42, shivansh khare via Gcc wrote: > > "I can't get off this list! Unsubscribe me!" Please read https://gcc.gnu.org/pipermail/gcc/2023-November/242918.html

"I can't get off this list! Unsubscribe me!"

2023-11-23 Thread shivansh khare via Gcc
"I can't get off this list! Unsubscribe me!"

[Analyzer] Transform a region 't[i]' to its svalue form '&t + (i * element_size)'

2023-11-16 Thread Pierrick Philippe
Hi all, hi David, I am trying to use the analyzer API to transform an element_region (such as 't[1]') to a binop_svalue with an inner region_svalue (such as '&t + 4' in case of integers array) for analysis purpose. I managed to do it the other way around (i.e. f

Re: How can I run xg++ from its build location?

2023-08-26 Thread Michael Welsh Duggan via Gcc
David Edelsohn via Gcc writes: > n Fri, Aug 25, 2023 at 4:16 PM Michael Welsh Duggan via Gcc < > gcc@gcc.gnu.org> wrote: > >> I am attempting to debug an issue in gcc (PR 110827, if curious). In >> order to do this I have built a stage 1 compiler with debugging and

Re: How can I run xg++ from its build location?

2023-08-26 Thread Benjamin Priour via Gcc
Hi, If you further have issues with loading required libraries, you could try running a test intended for g++ (make check-c++ from under BUILDDIR/gcc/) You may find examples at https://gcc-newbies-guide.readthedocs.io/en/latest/working-with-the-testsuite.html#running-just-one-test-or-just-a-few

Re: How can I run xg++ from its build location?

2023-08-25 Thread David Malcolm via Gcc
On Fri, 2023-08-25 at 16:12 -0400, Michael Welsh Duggan via Gcc wrote: > I am attempting to debug an issue in gcc (PR 110827, if curious).  In > order to do this I have built a stage 1 compiler with debugging and > without optimization as discussed here: > > https://gcc.gnu.org/wi

Re: How can I run xg++ from its build location?

2023-08-25 Thread Sam James via Gcc
Michael Welsh Duggan via Gcc writes: > I am attempting to debug an issue in gcc (PR 110827, if curious). In > order to do this I have built a stage 1 compiler with debugging and > without optimization as discussed here: > > https://gcc.gnu.org/wiki/DebuggingGCC#Building_a_Debu

Re: How can I run xg++ from its build location?

2023-08-25 Thread David Edelsohn via Gcc
On Fri, Aug 25, 2023 at 4:16 PM Michael Welsh Duggan via Gcc < gcc@gcc.gnu.org> wrote: > I am attempting to debug an issue in gcc (PR 110827, if curious). In > order to do this I have built a stage 1 compiler with debugging and > without optimization as discussed here: > >

How can I run xg++ from its build location?

2023-08-25 Thread Michael Welsh Duggan via Gcc
I am attempting to debug an issue in gcc (PR 110827, if curious). In order to do this I have built a stage 1 compiler with debugging and without optimization as discussed here: https://gcc.gnu.org/wiki/DebuggingGCC#Building_a_Debuggable_Compiler I would like run the compiler from its build

Re: /home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c:1781:1: internal compiler error: RTL check: expected elt 0 type 'i' or 'n', have 'w' (rtx const_int) in vpternlog_redundant_operand_mask,

2023-08-06 Thread Andrew Pinski via Gcc
On Sun, Aug 6, 2023 at 7:41 PM Hongtao Liu via Gcc wrote: > > On Mon, Aug 7, 2023 at 9:38 AM Hongtao Liu wrote: > > > > On Mon, Aug 7, 2023 at 9:35 AM Hongtao Liu wrote: > > > > > > On Mon, Aug 7, 2023 at 2:08 AM Toon Moene wrote: > > > >

Re: /home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c:1781:1: internal compiler error: RTL check: expected elt 0 type 'i' or 'n', have 'w' (rtx const_int) in vpternlog_redundant_operand_mask,

2023-08-06 Thread Hongtao Liu via Gcc
On Mon, Aug 7, 2023 at 9:38 AM Hongtao Liu wrote: > > On Mon, Aug 7, 2023 at 9:35 AM Hongtao Liu wrote: > > > > On Mon, Aug 7, 2023 at 2:08 AM Toon Moene wrote: > > > > > > Wonder if I am the only one to see this: > > > > > > https://gcc.gnu

Re: /home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c:1781:1: internal compiler error: RTL check: expected elt 0 type 'i' or 'n', have 'w' (rtx const_int) in vpternlog_redundant_operand_mask,

2023-08-06 Thread Hongtao Liu via Gcc
On Mon, Aug 7, 2023 at 9:35 AM Hongtao Liu wrote: > > On Mon, Aug 7, 2023 at 2:08 AM Toon Moene wrote: > > > > Wonder if I am the only one to see this: > > > > https://gcc.gnu.org/pipermail/gcc-testresults/2023-August/792616.html Could you share your GCC configure,

Re: /home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c:1781:1: internal compiler error: RTL check: expected elt 0 type 'i' or 'n', have 'w' (rtx const_int) in vpternlog_redundant_operand_mask,

2023-08-06 Thread Hongtao Liu via Gcc
On Mon, Aug 7, 2023 at 2:08 AM Toon Moene wrote: > > Wonder if I am the only one to see this: > > https://gcc.gnu.org/pipermail/gcc-testresults/2023-August/792616.html > > To quote: > > during RTL pass: split1 > /home/toon/compilers/gcc/libgfortran/generat

/home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c:1781:1: internal compiler error: RTL check: expected elt 0 type 'i' or 'n', have 'w' (rtx const_int) in vpternlog_redundant_operand_mask, at

2023-08-06 Thread Toon Moene
Wonder if I am the only one to see this: https://gcc.gnu.org/pipermail/gcc-testresults/2023-August/792616.html To quote: during RTL pass: split1 /home/toon/compilers/gcc/libgfortran/generated/matmul_i1.c: In function 'matmul_i1_avx512f': /home/toon/compilers/gcc/libgfortran

Re: When do I need -fnon-call-exceptions?

2023-06-07 Thread Eric Botcazou via Gcc
> On x864 Linux -fasynchronous-unwind-tables is the default. That is > probably sufficient to make your test case work. The testcase g++.dg/torture/except-1.C you recently added to the testsuite does not pass at all if -fnon-call-exceptions is not specified (and does not pass with optimization

Re: When do I need -fnon-call-exceptions?

2023-06-07 Thread Ian Lance Taylor via Gcc
On Wed, Jun 7, 2023 at 10:09 AM Helmut Zeisel via Gcc wrote: > > I wrote some simple program that set a signal handler for SIGFPE, throws a > C++ exception in the signal handler > and catches the exception. > I compiled with and without -fnon-call-exceptions (on x64 Linux). >

When do I need -fnon-call-exceptions?

2023-06-07 Thread Helmut Zeisel via Gcc
I wrote some simple program that set a signal handler for SIGFPE, throws a C++ exception in the signal handler and catches the exception. I compiled with and without -fnon-call-exceptions (on x64 Linux). In both cases, the result was the same: the exception was caught and the destructors were

Re: I don't want to receive further emails.

2023-04-19 Thread Jonathan Wakely via Gcc
On Wed, 19 Apr 2023, 05:33 physicsXcosmos via Gcc, wrote: > I don't want to receive further emails. > Please see https://gcc.gnu.org/mailman/listinfo/gcc which explains how to unsubscribe.

I don't want to receive further emails.

2023-04-18 Thread physicsXcosmos via Gcc
I don't want to receive further emails.

Re: I have questions regarding the 4.3 codebase...

2023-03-23 Thread Sid Maxwell via Gcc
I'll take a look, Paul, thanks. It hadn't occurred to me to compare different machines' uses. -+- Sid On Thu, Mar 23, 2023 at 10:29 AM Paul Koning wrote: > > > > On Mar 23, 2023, at 10:13 AM, Sid Maxwell via Gcc > wrote: > > > > Thanks for reaching o

Re: I have questions regarding the 4.3 codebase...

2023-03-23 Thread Paul Koning via Gcc
> On Mar 23, 2023, at 10:13 AM, Sid Maxwell via Gcc wrote: > > Thanks for reaching out, Julian, I greatly appreciate your help. Please > forgive and over- or under-sharing. If I've left something out, please let > me know. > > From my pdp10.md: > > ;; JIR

Re: I have questions regarding the 4.3 codebase...

2023-03-23 Thread Sid Maxwell via Gcc
Thanks for reaching out, Julian, I greatly appreciate your help. Please forgive and over- or under-sharing. If I've left something out, please let me know. >From my pdp10.md: ;; JIRA sw_gcc-68. gcc recognizes the "movmemhi" 'instruction' for ;; doing block mo

Re: I have questions regarding the 4.3 codebase...

2023-03-23 Thread Julian Brown
before the xblt that > depends on the result of the xblt). > > I'm hoping to find someone who can help me diagnose the problem. We > want to use this instruction rather than the copy-word-loop currently > generated for struct assignments. I think we'd need a bit more i

I have questions regarding the 4.3 codebase...

2023-03-22 Thread Sid Maxwell via Gcc
Is there anyone on the list with experience with the gcc 4.3 codebase? I'm currently maintaining a fork of it, with a PDP10 code generator. I've run into an issue involving the transformation of a movmemhi to a single PDP10 instruction (an xblt, if you're curious). The transformation appears to

Re: How do I create a GCC source code tarball?

2022-10-09 Thread Richard Biener via Gcc
irectory > ... > > You just tar up the source. > > You could use maintainer-scripts/gcc_release to make a snapshot but in > > the end it just does `tar xcfj file.tar.bz2 gcc` . > > If I may, the error message would be improved by making it shorter: > > > Building

Re: How do I create a GCC source code tarball?

2022-10-07 Thread James K. Lowden
release to make a snapshot but in > the end it just does `tar xcfj file.tar.bz2 gcc` . If I may, the error message would be improved by making it shorter: > Building a full distribution of this tree isn't done > via 'make dist'. since that at least would be accura

RE: How do I create a GCC source code tarball?

2022-10-04 Thread Robert Dubner
I had a feeling that's what the answer was going to be, but, well, I figured it couldn't hurt to ask. Especially because I hadn't before noticed the maintainer-scripts subdirectory. That alone made asking worth it. Thank you very much, Bob Dubner -Original Message---

Re: How do I create a GCC source code tarball?

2022-10-04 Thread Andrew Pinski via Gcc
On Mon, Oct 3, 2022 at 4:32 PM Robert Dubner wrote: > > I have modified the source code of GCC, and I need a tarball for that > modified source. > > My code is based on the trunk branch of the repository at > git://gcc.gnu.org/git/gcc.git > > I attempted to execu

How do I create a GCC source code tarball?

2022-10-03 Thread Robert Dubner
I have modified the source code of GCC, and I need a tarball for that modified source. My code is based on the trunk branch of the repository at git://gcc.gnu.org/git/gcc.git I attempted to execute "make dist", and have encountered the response Building a full distribution of

I need cancel my appoinment

2022-09-27 Thread arif hossain via Gcc
Dear sir, My passport no EJ0261819. please cancel my all appoinment

can i purchase a gcc package

2022-06-28 Thread Phrunsys Emmason via Gcc

How can I add comments to files generated in rtl dump?

2022-05-18 Thread RICHU NORMAN
Hi, I have added the new instruction in opcode and invoked it using asm_volatile .The new instruction is generated in the object dump. Now I wrote an RTL template for the same instruction in a .md file and some cost value calculation in cfile.Then I run the sample c code that invokes the

I am looking to buy a sponsored article on your website , http://www.gnu.org/

2022-01-17 Thread irsia jonas via Gcc
HI i hope you are well I am looking to buy a sponsored article on your website , http://www.gnu.org/ What is the cost per article ? Dofollow links permanent ? Can you add a link in your existing article? it could be a new article or an insertion in an already published article .? If you have

Re: Issue with a flag that I defined getting set to zero

2022-01-10 Thread Gary Oblock via Gcc
Richard, That's nice to know but I added the option itself months ago. Also, it's on the lto1 command line, cc1 command line and shows up in the COLLECT_GCC_OPTIONS so I assume it universally applied. Thanks, Gary From: Richard Biener Sent: Monday,

Re: Issue with a flag that I defined getting set to zero

2022-01-10 Thread Richard Biener via Gcc
On Fri, Jan 7, 2022 at 9:12 AM Gary Oblock via Gcc wrote: > > An optimization flag that I recently added is being > set to zero in push_cfun (which after a couple of > levels of calls cl_optimization_restore to this.) > > The flag defined like this: > > finterleaving-in

Re: Issue with a flag that I defined getting set to zero

2022-01-07 Thread Gary Oblock via Gcc
Gabriel, Yes, indeed, thank you. Note, it is a reminder to those that are receiving proprietary and that is considered as a legal obligation on the part of the company transmitting it because they must make an effort to protect their proprietary information. I'm not a lawyer either but I

Re: Issue with a flag that I defined getting set to zero

2022-01-07 Thread Gabriel Ravier via Gcc
On 1/7/22 09:38, Martin Liška wrote: On 1/7/22 09:30, Gary Oblock wrote: Regarding the corporate legal gibberish. It's automatic and not under my control also we're not supposed to use private emails for work... I respect that. But please respect me that I won't reply to

Re: Issue with a flag that I defined getting set to zero

2022-01-07 Thread Martin Liška
On 1/7/22 09:30, Gary Oblock wrote: Regarding the corporate legal gibberish. It's automatic and not under my control also we're not supposed to use private emails for work... I respect that. But please respect me that I won't reply to your emails any longer. I don'

Re: Issue with a flag that I defined getting set to zero

2022-01-07 Thread Gary Oblock via Gcc
ubject: Re: Issue with a flag that I defined getting set to zero [EXTERNAL EMAIL NOTICE: This email originated from an external sender. Please be mindful of safe email handling and proprietary information protection practices.] On 1/7/22 09:10, Gary Oblock via Gcc wrote: > An optimization flag th

Re: Issue with a flag that I defined getting set to zero

2022-01-07 Thread Martin Liška
On 1/7/22 09:10, Gary Oblock via Gcc wrote: An optimization flag that I recently added is being set to zero in push_cfun (which after a couple of levels of calls cl_optimization_restore to this.) Question is: what's the value of the flag in your IPA pass if you set -finterleaving-index-32

Issue with a flag that I defined getting set to zero

2022-01-07 Thread Gary Oblock via Gcc
An optimization flag that I recently added is being set to zero in push_cfun (which after a couple of levels of calls cl_optimization_restore to this.) The flag defined like this: finterleaving-index-32-bits Common Var(flag_interleaving_index_32_bits) Init(0) Optimization Structure

Re: Anything I can contribute?

2021-11-16 Thread Martin Jambor
Hi Kaisheng, On Sat, Nov 13 2021, Deng Kaisheng wrote: > Hi, > > My name is Deng Kaisheng, a graduate student in National University of > Sinapore (NUS) now major in computer science. I've read the > introduction of your organization and I'm quite interested in what >

Re: Anything I can contribute?

2021-11-15 Thread Deng Kaisheng
Sat, 13 Nov 2021 at 08:36, Deng Kaisheng wrote: >> >> Hi, >> >> My name is Deng Kaisheng, a graduate student in National University of >> Sinapore (NUS) now major in computer science. I've read the introduction of >> your organization and I'

Re: Can I provide a hint to gcc for return value optimization?

2021-11-15 Thread Jason Merrill via Gcc
On Mon, Nov 15, 2021 at 3:17 AM unlvsur unlvsur via Gcc wrote: > Oh I mean copy elision. > > std::string str; > do_something(str); > return str; > > Something like this. > > Or factory function: > std::string foo() > { > return factory(a.begin(),a.end()); &g

Re: Anything I can contribute?

2021-11-15 Thread Philip Herron
ience. I've read the introduction of > your organization and I'm quite interested in what you're doing. > > I want to do something and contribute to the community, and I wonder if there > is something I can do. I major in computer science since undergraduate with a > so

RE: Can I provide a hint to gcc for return value optimization?

2021-11-15 Thread unlvsur unlvsur via Gcc
Oh I mean copy elision. std::string str; do_something(str); return str; Something like this. Or factory function: std::string foo() { return factory(a.begin(),a.end()); } Sometimes the first one does not guarantee to happen? Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986&g

Re: Can I provide a hint to gcc for return value optimization?

2021-11-15 Thread Jonathan Wakely via Gcc
On Mon, 15 Nov 2021, 06:47 unlvsur unlvsur via Gcc, wrote: > I want give a hint to gcc that allows std::string to rvo. Is that > possible? Any attribute for doing that? > It's already allowed, and will be done automatically whenever it's possible. >

Can I provide a hint to gcc for return value optimization?

2021-11-14 Thread unlvsur unlvsur via Gcc
I want give a hint to gcc that allows std::string to rvo. Is that possible? Any attribute for doing that? Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows

Anything I can contribute?

2021-11-13 Thread Deng Kaisheng
Hi, My name is Deng Kaisheng, a graduate student in National University of Sinapore (NUS) now major in computer science. I've read the introduction of your organization and I'm quite interested in what you're doing. I want to do something and contribute to the community, and I

Re: how can I contribute to your organisation

2021-09-27 Thread Jason Merrill via Gcc
On Mon, Sep 27, 2021 at 9:54 AM Aditya Saini wrote: > Hey ,I am Aditya saini and I can code in c/c++ .I want to be a part of > your organization so please guide me how can I contribute to your > organization . > There's a lot of information at https://gcc.gnu.org/contribute.

how can I contribute to your organisation

2021-09-27 Thread Aditya Saini
Hey ,I am Aditya saini and I can code in c/c++ .I want to be a part of your organization so please guide me how can I contribute to your organization . Thank you Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows

Someone I have my own personal information my old personal data on my old Gmail all around my Samsung all account my Google Drive data AND YouTube channel personal URL number And My all domain name,s

2021-09-23 Thread Kuljit Kaur via Gcc
Sent from my iPhone

Can I add a new built-in macro __builtin_secure_generate_random(void* data, std::size_t size) for C and C++ on hosted GCC platforms that support it?

2021-06-05 Thread unlvsur unlvsur via Gcc
I think compiler time random number is useful for cryptography things like blinding. This built-in should also be constexpr. On platforms that does not support this feature (MSDOS) do not define this __builtin. Users can use #if __has_builtin(__builtin_secure_generate_random) #endif to

Re: Does bootstrap make native compiler faster? Should I always use --disable-boostrap?

2021-06-02 Thread Martin Liška
On 6/2/21 10:10 AM, sotrdg sotrdg via Gcc wrote: The document said yes. However, what does bootstrap actually do that can make compiler faster? Hello. In case of openSUSE, we leverage both bootstrap-lto config with 'make profiledbootstrap'. That utilizes profile-guided optimization. Moreover

Re: Does bootstrap make native compiler faster? Should I always use --disable-boostrap?

2021-06-02 Thread Martin Jambor
Hi, On Wed, Jun 02 2021, sotrdg sotrdg via Gcc wrote: > The document said yes. However, what does bootstrap actually do that can make > compiler faster? Assuming the gcc you are bootstrapping is newer than your system compiler, it is quite likely to be better able to optimize itself than the old

Does bootstrap make native compiler faster? Should I always use --disable-boostrap?

2021-06-02 Thread sotrdg sotrdg via Gcc
The document said yes. However, what does bootstrap actually do that can make compiler faster? Sent from Mail for Windows 10

Re: Can I push code to GCC?

2021-05-20 Thread Wei Wu via Gcc
:01 PM, juzhe.zh...@rivai.ai wrote: Hi, I am a compiler engineer base on GCC in China. Recently, I develop a new pattern for vector widen multiply-accumulator(I call it widen fma) because the ISA in my project has the instruction (vwmacc). I develop a lot of code especiallly frontend (gimple

Re: Can I push code to GCC?

2021-05-13 Thread Jeff Law via Gcc
On 5/10/2021 7:01 AM, juzhe.zh...@rivai.ai wrote: Hi, I am a compiler engineer base on GCC in China. Recently, I develop a new pattern for vector widen multiply-accumulator(I call it widen fma) because the ISA in my project has the instruction (vwmacc). I develop a lot of code especiallly

Can I push code to GCC?

2021-05-10 Thread juzhe.zh...@rivai.ai
Hi, I am a compiler engineer base on GCC in China. Recently, I develop a new pattern for vector widen multiply-accumulator(I call it widen fma) because the ISA in my project has the instruction (vwmacc). I develop a lot of code especiallly frontend (gimple&&generic) int GCC. This is us

I want to sponsor post at these sites

2020-12-19 Thread Thomas Henry via Gcc
*Hi Dear,* *I hope you are doing well.* What's is the price at this sitehttps://gcc.gnu.org/ <https://signtr.online/click?redirect=https%3A%2F%2Fgcc.gnu.org%2F&dID=1603669377034&linkName=https://gcc.gnu.org/> I am interested in guest posting service. Please tell me your pric

Re: How do I print the name of a variable created with create_tmp_var_raw

2020-12-08 Thread Thomas Koenig via Gcc
Hi Tobias, On 08.12.20 19:34, Thomas Koenig via Fortran wrote: I would like to know the name of a variable created with create_tmp_var_raw, but it is not clear to my how to do it. ...    t = create_tmp_var_raw (type, prefix); - +  dprintf (2, "%s\n", IDENTIFIER_POINTER (DECL_NAME

Re: How do I print the name of a variable created with create_tmp_var_raw

2020-12-08 Thread Tobias Burnus
Hi Thomas, On 08.12.20 19:34, Thomas Koenig via Fortran wrote: I would like to know the name of a variable created with create_tmp_var_raw, but it is not clear to my how to do it. ... t = create_tmp_var_raw (type, prefix); - + dprintf (2, "%s\n", IDENTIFIER_POINTER (DECL_NAME

How do I print the name of a variable created with create_tmp_var_raw

2020-12-08 Thread Thomas Koenig via Gcc
Hi, I would like to know the name of a variable created with create_tmp_var_raw, but it is not clear to my how to do it. gimple_decl_printable_name sounded like a likely candidate, but that just returns a null pointer. Any combination of IDENTIFIER_POINTER and DECL_NAME that I tried also led

[PATCH 0/2] Support libc with stdio-only I/O in libstdc++

2020-12-07 Thread Keith Packard via Gcc
The current libstdc++ basic_file_stdio.cc code assumes a POSIX API underneath the stdio implementation provided by the host libc. This means that the host must provide a fairly broad POSIX file API, including read, write, open, close, lseek and ioctl. This patch changes basic_file_stdio.cc to only

Re: I absolutely despise the whole -fexec-charset and locale garbage.

2020-11-19 Thread sotrdg sotrdg via Gcc
because of locale. Even glibc was bugged for strcoll. It will forever be unless wg14 wg21 remove the entire garbage. Get Outlook for Android<https://aka.ms/ghei36> From: Liu Hao Sent: Thursday, November 19, 2020, 01:34 To: sotrdg sotrdg; gcc@gcc.gnu.org Subject:

Re: I absolutely despise the whole -fexec-charset and locale garbage.

2020-11-18 Thread Liu Hao via Gcc
在 2020/11/19 上午2:31, sotrdg sotrdg via Gcc 写道: > The locale shit is not thread safe. printf(“Hello World %d”,3) is undefined > behavior under none-UTF-8 exec-charset. WTF WTF WTF. > > This is purely garbage tbh. Just remove this toggle. I want encoding, I can > use another li

I absolutely despise the whole -fexec-charset and locale garbage.

2020-11-18 Thread sotrdg sotrdg via Gcc
The locale shit is not thread safe. printf(“Hello World %d”,3) is undefined behavior under none-UTF-8 exec-charset. WTF WTF WTF. This is purely garbage tbh. Just remove this toggle. I want encoding, I can use another library. I do not need the compiler to do the shitty job for me to ruin my

Re: I want to post on your this site https://gcc.gnu.org/ For Guest posting

2020-08-26 Thread maticulous via Gcc
On Wed, 26 Aug 2020 at 7:46 PM, aqib yasin via Gcc wrote: > I want to post on your this site https://gcc.gnu.org/ please tell > > me price, > > > > Waiting for your positive response, > > > > Thanks, > >

I want to post on your this site https://gcc.gnu.org/ For Guest posting

2020-08-26 Thread aqib yasin via Gcc
I want to post on your this site https://gcc.gnu.org/ please tell me price, Waiting for your positive response, Thanks,

i need this site https://gcc.gnu.org/

2020-08-22 Thread Javeed butt via Gcc
i need this site https://gcc.gnu.org/

Re: Why am I seeing free.2 instead of free in exe.ltrans0.ltrans.s??

2020-08-17 Thread Martin Jambor
Hi, On Tue, Aug 11 2020, Gary Oblock via Gcc wrote: > Note, I'm getting close to getting my part of the structure reorganization > optimization minimally functional (my question about value range propagation > remains open since I re-enabled a couple of optimizations to bypass it.

Why am I seeing free.2 instead of free in exe.ltrans0.ltrans.s??

2020-08-11 Thread Gary Oblock via Gcc
Note, I'm getting close to getting my part of the structure reorganization optimization minimally functional (my question about value range propagation remains open since I re-enabled a couple of optimizations to bypass it.) Therefore this is actually important for me to resolve. I obvi

A problem with DECL_FIELD_OFFSET in something I declared

2020-08-06 Thread Gary Oblock via Gcc
l be creating: typedef struct type_prime type_prime_t; struct type_prime { double x *; double y *; }; and type_prime_t base_for_type_prime; Later, when running partial redundancy elimination, PRE attempts to access the DECL_FIELD_OFFSET of field x and finds that the the DECL_FIELD_OFFSET is N

Re: How do I make a double free at runtime fail reliably in the testsuite?

2020-04-29 Thread Tobias Burnus
-fsanitize=address should work – but I think you need to create gfortran.dg/asan/asan.exp, e.g. by copying gcc.dg/asan/asan.exp and adapting it. That not only checks for double free but also for instruments the code for use-after-free errors. Cheers, Tobias On 4/29/20 9:23 PM, Thomas Koenig

How do I make a double free at runtime fail reliably in the testsuite?

2020-04-29 Thread Thomas Koenig via Gcc
Hi, I have a test case which does a double free on a pointer, at runtime. I have to narrow it down a bit before comitting, but it indicates a regression. Assuming I put this into the testsuite, how can I make sure that this actually fails if the problem ever re-occurs? Is there a combination

Re: where i should insert the finalize function for c++?

2020-04-27 Thread Martin Jambor
Hi, On Sun, Apr 26 2020, 易会战 via Gcc wrote: > I am working a instrumentation tool based on gcc. I insert some > intrumentation code into each function, including destructor > functions. A finalize function will free memory resources after all > work done. But I cannot find prop

where i should insert the finalize function for c++?

2020-04-26 Thread 易会战 via Gcc
I am working a instrumentation tool based on gcc. I insert some intrumentation code into each function, including destructor functions. A finalize function will free memory resources after all work done. But I cannot find proper loacation calling my finalizing function since the destructor

Re: Help, Where I can find proper libtool version?

2020-04-15 Thread Joseph Myers
On Wed, 15 Apr 2020, Maciej W. Rozycki via Gcc wrote: > > So after runing autoreconf and make , I get "libtool: > > Version mismatch error.".It is a curious version, the gnu > > mirrors have no such version. > > It is a repository snapshot, there has been n

Re: Help, Where I can find proper libtool version?

2020-04-15 Thread 易会战 via Gcc
thank your reply. I think that should have a website put current working version tools. I have try to find each right versions for each tools. ---Original--- From: "Maciej W. Rozycki"ftp://sourceware.org/>; or maybe <ftp://alpha.gnu.org/>; (there might be a better place)

Re: Help, Where I can find proper libtool version?

2020-04-15 Thread Maciej W. Rozycki via Gcc
On Wed, 15 Apr 2020, 易会战 via Gcc wrote: > I am trying to add a library into gcc source code tree. The gcc source > have used libtool 2.2.7a 1.1334. but I cannot find the version. It is "libtool (GNU libtool 1.3134 2009-11-30) 2.2.7a" AFAICT, that is 1.3134 rather than 1.1334.

Help, Where I can find proper libtool version?

2020-04-15 Thread 易会战 via Gcc
I am trying to add a library into gcc source code tree. The gcc source have used libtool 2.2.7a 1.1334. but I cannot find the version. So after runing autoreconf and make , I get "libtool: Version mismatch error.".It is a curious version, the gnu mirrors have no such version. Thanks a lot!

[help] how can I have an email address with @gcc.gnu.org ?

2020-03-21 Thread Zhongyunde

Re: How do I run SIMD Testcases on PPC64?

2020-03-10 Thread GT via Gcc
testsuite/gcc.target/powerpc/ ? (After modifying target appropriately.) > > > It certainly would be nice if generic tests did not often have target- > specific stuff in them. In this case, it could be hidden in vect.exp, > perhaps? I got all the tests from RUNTESTFLAGS="vect.e

Re: How do I run SIMD Testcases on PPC64?

2020-03-09 Thread GT via Gcc
‐‐‐ Original Message ‐‐‐ On Thursday, March 5, 2020 6:59 PM, Segher Boessenkool wrote: > On Thu, Mar 05, 2020 at 05:04:16PM +, GT wrote: > > > At the top of that file is dejagnu directive: > > /* { dg-require-effective-target vect_int } */ > > > >

Re: How do I run SIMD Testcases on PPC64?

2020-03-08 Thread GT via Gcc
‐‐‐ Original Message ‐‐‐ On Thursday, March 5, 2020 6:59 PM, Segher Boessenkool wrote: > On Thu, Mar 05, 2020 at 05:04:16PM +, GT wrote: > > > At the top of that file is dejagnu directive: > > /* { dg-require-effective-target vect_int } */ > > > >

Re: How do I run SIMD Testcases on PPC64?

2020-03-05 Thread Segher Boessenkool
On Thu, Mar 05, 2020 at 05:04:16PM +, GT wrote: > At the top of that file is dejagnu directive: > /* { dg-require-effective-target vect_int } */ > > 1. How do I check to see if vect_int is defined? I suspect it as the reason > the test isn't run. https://gcc.gnu.org/git

Re: How do I run SIMD Testcases on PPC64?

2020-03-05 Thread Jakub Jelinek
On Thu, Mar 05, 2020 at 05:04:16PM +, GT wrote: > I tried the make command below: > > make check RUNTESTFLAGS="*.exp=*simd*" I think you can't use wildcards in the name of the *.exp file. So, you need to know which *.exp it is and use make check RUNTESTFLAGS="

  1   2   3   4   5   6   7   8   >