From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/8596 Path: news.gmane.org!not-for-mail From: Alex Dowad Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH 1/3] Pull a couple common AWK functions for CFI scripts into separate file Date: Fri, 2 Oct 2015 12:02:01 +0200 Message-ID: <1443780123-6493-1-git-send-email-alexinbeijing@gmail.com> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1443780157 7666 80.91.229.3 (2 Oct 2015 10:02:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 2 Oct 2015 10:02:37 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-8607-gllmg-musl=m.gmane.org@lists.openwall.com Fri Oct 02 12:02:31 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1ZhxAb-0004at-5a for gllmg-musl@m.gmane.org; Fri, 02 Oct 2015 12:02:29 +0200 Original-Received: (qmail 30173 invoked by uid 550); 2 Oct 2015 10:02:25 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 30098 invoked from network); 2 Oct 2015 10:02:20 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id; bh=zHaaUiLVNtpNTLoa5TzzhUOr9xWKutypgGULo1X8ZL4=; b=F2G7b+4uVE1pU01mkWpNcQUSEhNRAx2yszZjc5IhDRpVvwoveWCLDptmYVGcXqpP/G 9s5OB6ZlvM7y/JfWPQ8SIu7xgYm+q4/QdGfFApkwHUbO6nCdpB6ZZaHzqFUq4ziEaxCt 8jipEZXhsnUtLAiLV1SzJI7p7E1w1rpklbJWUvxX7fNlDZZCf4w0qt8GsK3y8o+Qe8hB a/9X5nzztSB9ogwH4bpuQlQb181f4XT/st0FP83zT6UP24GH4Il2coUDEiZtvWbPUbTB jwfud2ReLDqaaeDIL3u+bJGDepP8Cw6Eg0eyHGfWlsKIEfkvLn0kJ9a/9IMFfgwGVWkp ERBg== X-Received: by 10.180.92.230 with SMTP id cp6mr3144188wib.80.1443780129044; Fri, 02 Oct 2015 03:02:09 -0700 (PDT) X-Mailer: git-send-email 2.0.0.GIT Xref: news.gmane.org gmane.linux.lib.musl.general:8596 Archived-At: There is a lot which could be common between i386 and x86_64, but none of it will be useful for any other arch. These should be useful for all archs, however. --- Makefile | 2 +- tools/add-cfi.i386.awk | 27 --------------------------- tools/common.awk | 26 ++++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 28 deletions(-) create mode 100644 tools/common.awk diff --git a/Makefile b/Makefile index 5a6a43b..761482d 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ $(foreach s,$(wildcard src/*/$(ARCH)*/*.s),$(eval $(call mkasmdep,$(s)))) # Choose invocation of assembler to be used # $(1) is input file, $(2) is output file, $(3) is assembler flags ifeq ($(ADD_CFI),yes) - AS_CMD = LC_ALL=C awk -f tools/add-cfi.$(ARCH).awk $< | $(CC) -x assembler -c -o $@ - + AS_CMD = LC_ALL=C awk -f tools/common.awk -f tools/add-cfi.$(ARCH).awk $< | $(CC) -x assembler -c -o $@ - else AS_CMD = $(CC) -c -o $@ $< endif diff --git a/tools/add-cfi.i386.awk b/tools/add-cfi.i386.awk index 4a4a3b6..b8bdd7f 100644 --- a/tools/add-cfi.i386.awk +++ b/tools/add-cfi.i386.awk @@ -22,33 +22,6 @@ BEGIN { called = "" } -function hex2int(str, i) { - str = tolower(str) - - for (i = 1; i <= 16; i++) { - char = substr("0123456789abcdef", i, 1) - lookup[char] = i-1 - } - - result = 0 - for (i = 1; i <= length(str); i++) { - result = result * 16 - char = substr(str, i, 1) - result = result + lookup[char] - } - return result -} - -function parse_const(str) { - sign = sub(/^-/, "", str) - hex = sub(/^0x/, "", str) - if (hex) - n = hex2int(str) - else - n = str+0 - return sign ? -n : n -} - function get_const1() { # for instructions with 2 operands, get 1st operand (assuming it is constant) match($0, /-?(0x[0-9a-fA-F]+|[0-9]+),/) diff --git a/tools/common.awk b/tools/common.awk new file mode 100644 index 0000000..04482d4 --- /dev/null +++ b/tools/common.awk @@ -0,0 +1,26 @@ +function hex2int(str, i) { + str = tolower(str) + + for (i = 1; i <= 16; i++) { + char = substr("0123456789abcdef", i, 1) + lookup[char] = i-1 + } + + result = 0 + for (i = 1; i <= length(str); i++) { + result = result * 16 + char = substr(str, i, 1) + result = result + lookup[char] + } + return result +} + +function parse_const(str) { + sign = sub(/^-/, "", str) + hex = sub(/^0x/, "", str) + if (hex) + n = hex2int(str) + else + n = str+0 + return sign ? -n : n +} -- 2.0.0.GIT