X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbearch.c;h=0989ab8f2c48ee019174d94f980e92ab61902b47;hb=0caf8d864fd6185090402563beaac03aaee73d4d;hp=17b529640ae148a735e379e8ce73456f9c678a2c;hpb=d96cf3cbdb3d7a08f9492aa70f97c02bb0c85e39;p=libfirm diff --git a/ir/be/bearch.c b/ir/be/bearch.c index 17b529640..0989ab8f2 100644 --- a/ir/be/bearch.c +++ b/ir/be/bearch.c @@ -1,20 +1,6 @@ /* - * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. - * * This file is part of libFirm. - * - * This file may be distributed and/or modified under the terms of the - * GNU General Public License version 2 as published by the Free Software - * Foundation and appearing in the file LICENSE.GPL included in the - * packaging of this file. - * - * Licensees holding valid libFirm Professional Edition licenses may use - * this file in accordance with the libFirm Commercial License. - * Agreement provided with the Software. - * - * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE - * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR - * PURPOSE. + * Copyright (C) 2012 University of Karlsruhe. */ /** @@ -48,13 +34,6 @@ arch_register_req_t const arch_no_requirement = { 0 }; -/* Initialize the architecture environment struct. */ -arch_env_t *arch_env_begin_codegeneration(const arch_isa_if_t *isa_if) -{ - arch_env_t *arch_env = isa_if->begin_codegeneration(); - return arch_env; -} - /** * Get the isa responsible for a node. * @param irn The node to get the responsible isa for. @@ -257,14 +236,14 @@ static void arch_dump_register_req(FILE *F, const arch_register_req_t *req, void arch_dump_reqs_and_registers(FILE *F, const ir_node *node) { - backend_info_t *info = be_get_info(node); + backend_info_t *const info = be_get_info(node); + int const n_ins = get_irn_arity(node); /* don't fail on invalid graphs */ - if (info == NULL || info->in_reqs == NULL || info->out_infos == NULL) { + if (!info || (!info->in_reqs && n_ins != 0) || !info->out_infos) { fprintf(F, "invalid register requirements!!!\n"); return; } - int n_ins = get_irn_arity(node); for (int i = 0; i < n_ins; ++i) { const arch_register_req_t *req = arch_get_irn_register_req_in(node, i); fprintf(F, "inreq #%d = ", i);