From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd2a.google.com (mail-io1-xd2a.google.com [IPv6:2607:f8b0:4864:20::d2a]) by sourceware.org (Postfix) with ESMTPS id 1A2BA3858C83 for ; Mon, 28 Feb 2022 18:33:08 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 1A2BA3858C83 Received: by mail-io1-xd2a.google.com with SMTP id d62so15700141iog.13 for ; Mon, 28 Feb 2022 10:33:08 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=aE/Gi1sBDolPmw4VX1y+/KwTp+sKea1t5/i0eLGxRRw=; b=GFk+La6JcPy5HgCuAFnsXESmZ2PC/xaKC4gSmuiX2EFSMBxgPmjF/KjSwErCEUNnVh QgwmWBR1jNPBju9GcWVnqklToC3QXDlXVvWbforB/fiPVrcGIFFsc61TjDyPrw1pvq0s OhXZzY3mYariR87CGBQsTozLCX3dLvxyJpgNj1Ats/7A+bBTwQsA/QFTzsXiVsoqFc62 C/O31ri0D61wFZQjuJQ7xWOATxLVoHKJXrBEAzlF9UPyATaUXkNAdVYl7Ik+OvMMsnJr /6wU+ND7WVx4QGRWAPa+MWDOsIDCdlAjHMkas9sohMdpTixDjTRTZcfWkiuko3onlUrc lKFw== X-Gm-Message-State: AOAM5339A3DVhevHjzg9UX5wlCgiGqY2pjmWzk/NQSljKDc4dgCUDg4K yZRkkYxbNaemu2cggFLhv8Lfkt6+B2F50g== X-Google-Smtp-Source: ABdhPJyt7MXVeyQXDE8yQKnvlpj/EYD9WkEjPIgi2K/FCBxeAUgJCOFHp0tv3X+wtjoyKIxgbkz8Cg== X-Received: by 2002:a02:7f95:0:b0:314:2966:1d39 with SMTP id r143-20020a027f95000000b0031429661d39mr18318749jac.317.1646073187593; Mon, 28 Feb 2022 10:33:07 -0800 (PST) Received: from murgatroyd.Home (75-166-141-253.hlrn.qwest.net. [75.166.141.253]) by smtp.gmail.com with ESMTPSA id h9-20020a92c089000000b002b8b3ce939fsm6558845ile.9.2022.02.28.10.33.06 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 28 Feb 2022 10:33:07 -0800 (PST) From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/5] Handle non-ASCII identifiers in Ada Date: Mon, 28 Feb 2022 11:32:59 -0700 Message-Id: <20220228183304.1162089-1-tromey@adacore.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.8 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, 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 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Feb 2022 18:33:09 -0000 Ada supports non-ASCII identifiers, but gdb cannot access them. This series adds the missing support. The first few patches are simple refactorings. Probably only #3 requires any examination, the others are either trivial or Ada-specific. Patch #5 introduces a new setting and has documentation on the new feature. This one may come through a little strangely as differents tests have different encodings. Regression tested on x86-64 Fedora 34. Tom