From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luc Van Oostenryck Subject: [PATCH v4 32/63] llvm: add support for OP_SETVAL with floats Date: Tue, 21 Mar 2017 01:15:36 +0100 Message-ID: <20170321001607.75169-33-luc.vanoostenryck@gmail.com> References: <20170321001607.75169-1-luc.vanoostenryck@gmail.com> Return-path: Received: from mail-wm0-f68.google.com ([74.125.82.68]:34766 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755969AbdCUAQz (ORCPT ); Mon, 20 Mar 2017 20:16:55 -0400 Received: by mail-wm0-f68.google.com with SMTP id u132so263578wmg.1 for ; Mon, 20 Mar 2017 17:16:54 -0700 (PDT) In-Reply-To: <20170321001607.75169-1-luc.vanoostenryck@gmail.com> Sender: linux-sparse-owner@vger.kernel.org List-Id: linux-sparse@vger.kernel.org To: linux-sparse@vger.kernel.org Cc: Christopher Li , Dibyendu Majumdar , Jeff Garzik , Pekka Enberg , Luc Van Oostenryck Signed-off-by: Luc Van Oostenryck --- sparse-llvm.c | 19 ++++++++++++++++++- validation/backend/setval.c | 7 +++++++ 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 validation/backend/setval.c diff --git a/sparse-llvm.c b/sparse-llvm.c index 6cc01cdd9..29cb11ee3 100644 --- a/sparse-llvm.c +++ b/sparse-llvm.c @@ -866,6 +866,23 @@ static void output_op_cast(struct function *fn, struct instruction *insn, LLVMOp insn->target->priv = target; } +static void output_op_setval(struct function *fn, struct instruction *insn) +{ + struct expression *val = insn->val; + LLVMTypeRef dtype = symbol_type(insn->type); + LLVMValueRef target; + + switch (val->type) { + case EXPR_FVALUE: + target = LLVMConstReal(dtype, val->fvalue); + break; + default: + assert(0); + } + + insn->target->priv = target; +} + static void output_insn(struct function *fn, struct instruction *insn) { switch (insn->opcode) { @@ -882,7 +899,7 @@ static void output_insn(struct function *fn, struct instruction *insn) assert(0); break; case OP_SETVAL: - assert(0); + output_op_setval(fn, insn); break; case OP_SWITCH: output_op_switch(fn, insn); diff --git a/validation/backend/setval.c b/validation/backend/setval.c new file mode 100644 index 000000000..e3557571d --- /dev/null +++ b/validation/backend/setval.c @@ -0,0 +1,7 @@ +double setfval64(void) { return 1.23; } +float setfval32(void) { return 1.23F; } + +/* + * check-name: setval-float + * check-command: ./sparsec -Wno-decl -c $file -o tmp.o + */ -- 2.12.0