From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x335.google.com (mail-wm1-x335.google.com [IPv6:2a00:1450:4864:20::335]) by sourceware.org (Postfix) with ESMTPS id 606A83858C60 for ; Tue, 15 Mar 2022 21:32:41 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 606A83858C60 Received: by mail-wm1-x335.google.com with SMTP id l10so238502wmb.0 for ; Tue, 15 Mar 2022 14:32:41 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=r/x7tS8kQ9ygqy3h8vsad2kb1yhV+uyCSfrZMuebdiQ=; b=j0DIUoQtmo66Tckls869Q1RuRSIu6RCJhWRy++t3NNUsOqhrRbL0LWm0Yad3LXvQL1 NFvp0XKMdrJoJuvuM4YJIUmvxHcoDuf159LM5B41GqcJgNGkx8qc6aR/8my9q1/m0zxs to7WbK/Qrmg14pzJ2WO63BK+qewmlr9utky0b1D4H4Bmgm01ckcu3YyPtkNh5pCMWNHf qIU36WPXGXEFbzjvB6ottQvFg0Ao5+yc00ndPG8gmKmySTjAOUqOD8ICNYB7gppkzBf0 qf7cgqjWaYCNOhcf/GQRuwsUTYkK0QTSjDjF6NwWLMG/I10hNdc63/Ilc8aFRjZIWLmI wCVQ== X-Gm-Message-State: AOAM533kEMPYa3433GYIFJlK8eQPF5B8VQpSlTujIBAjKl3nRxyajaMy NHvEey7PIBNT28pQ5HR7PlaCdih99vt7KjE+aoro2KMfhZZ/rQ== X-Google-Smtp-Source: ABdhPJwl1Fs+SMGa9mMEH94vRAA7eaRyoyTmCc9E09AXRn+6DU1Ojy9rNg8wCf5YEhpho78X6ybVkHLgaOkDBekKdQ4= X-Received: by 2002:a7b:cd96:0:b0:381:201e:ba06 with SMTP id y22-20020a7bcd96000000b00381201eba06mr4978750wmj.78.1647379959245; Tue, 15 Mar 2022 14:32:39 -0700 (PDT) MIME-Version: 1.0 From: Mohamed Atef Date: Tue, 15 Mar 2022 23:32:28 +0200 Message-ID: Subject: [PATCH] libgompd: add OMPD support, libgompd initialization and global ICVs functions To: gcc-patches@gcc.gnu.org, Jakub Jelinek , tobias@codesourcery.com, Martin Jambor X-Spam-Status: No, score=-2.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Mar 2022 21:32:43 -0000 This patch added OMPD support to libgomp, api version funcitos and global ICVs functions. I hope you review it as soon as possible, to fix the problems. I tried as much as I could to follow GNU standards. We have a seminar at the college next week, so we need this to be reviewed. Thanks libgomp/ChangeLog 2022-03-15 Mohamed Atef *config/darwin/plugin-suffix.h (SONAME_SUFFIX): Remove ()s. *config/hpux/plugin-suffix.h (SONAME_SUFFIX): Remove ()s. *config/posix/plugin-suffix.h (SONAME_SUFFIX): Remove ()s. *configure: Regenerate. * Makefile.am (toolexeclib_LTLIBRARIES): Add libgompd.la (libgompd_la_LDFLAGS, libgompd_la_DEPENDENCIES, libgompd_la_LINK, libgompd_la_SOURCES, libgompd_version_dep, libgompd_version_script, libgompd.ver-sun, libgompd.ver, libgompd_version_info): New. *Makefile.in: Regenerate. *aclocal.m4: Regenerate. *env.c: Include ompd-support.h. (initialize_env): Call gompd_load. *team.c: Include ompd-support.h. (gomp_team_start): Call ompd_bp_parallel_begin. (gomp_team_end): Call ompd_bp_parallel_end. *libgomp.map: Add OMP_5.0.3 symbol versions. *libgompd.map: New. *omp-tools.h.in: New. *ompd-types.h.in: New. *ompd-support.h: New. *ompd-support.c: New. *ompd-helper.h: New. *ompd-helper.c: New. *ompd-init.c: New. *ompd-icv.c: New. *configure.ac (AC_CONFIG_FILES): Add omp-tools.h and ompd-types.h.