X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbearch.c;h=1433d020a5e718874d9697a8e11bf6095b8ef7f3;hb=bb91a72fcb14e8323993b5aec46bcb15d040d367;hp=a765e3a6122e5a897d13cbd13eb3dd3711cf3959;hpb=4c66ebcce62ceffb68a891142dd309429e03351a;p=libfirm diff --git a/ir/be/bearch.c b/ir/be/bearch.c index a765e3a61..1433d020a 100644 --- a/ir/be/bearch.c +++ b/ir/be/bearch.c @@ -91,6 +91,12 @@ int arch_get_allocatable_regs(const arch_env_t *env, const ir_node *irn, const arch_register_req_t *req = ops->get_irn_reg_req(ops, &local_req, irn, pos); switch(req->type) { + case arch_register_req_type_none: + bitset_clear_all(bs); + return 0; + + case arch_register_req_type_should_be_different: + case arch_register_req_type_should_be_same: case arch_register_req_type_normal: arch_register_class_put(req->cls, bs); return req->cls->n_regs; @@ -123,6 +129,8 @@ int arch_reg_is_allocatable(const arch_env_t *env, const ir_node *irn, arch_get_register_req(env, &req, irn, pos); switch(req.type) { case arch_register_req_type_normal: + case arch_register_req_type_should_be_different: + case arch_register_req_type_should_be_same: res = req.cls == reg->reg_class; break; case arch_register_req_type_limited: @@ -131,6 +139,7 @@ int arch_reg_is_allocatable(const arch_env_t *env, const ir_node *irn, req.data.limited(irn, pos, bs); res = bitset_is_set(bs, arch_register_get_index(reg)); } + break; default: res = 0; }