X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firop.c;h=a04437d25b5e757fc6d6926dcb08d31becf6cb2a;hb=ea931ee5adfa947b301765044e228d27fed408cd;hp=14654a47621fbcb269ad877e5ed80b838d768c85;hpb=c7f92b19d9eb6777c6d98f35e7e8b0c08faeffc9;p=libfirm diff --git a/ir/ir/irop.c b/ir/ir/irop.c index 14654a476..a04437d25 100644 --- a/ir/ir/irop.c +++ b/ir/ir/irop.c @@ -95,6 +95,7 @@ ir_op *op_Mux; ir_op *get_op_Mux (void) { return op_Mux; } ir_op *op_CopyB; ir_op *get_op_CopyB (void) { return op_CopyB; } ir_op *op_Bound; ir_op *get_op_Bound (void) { return op_Bound; } +ir_op *op_Keep; ir_op *get_op_Keep (void) { return op_Keep; } /* * Copies all attributes stored in the old node to the new node. @@ -218,7 +219,7 @@ init_op(void) op_SymConst = new_ir_op(iro_SymConst, "SymConst", op_pin_state_floats, c, oparity_zero, -1, sizeof(symconst_attr), NULL); op_Sel = new_ir_op(iro_Sel, "Sel", op_pin_state_floats, L, oparity_any, -1, sizeof(sel_attr), NULL); - op_InstOf = new_ir_op(iro_InstOf, "InstOf", op_pin_state_floats, L, oparity_any, -1, sizeof(sel_attr), NULL); + op_InstOf = new_ir_op(iro_InstOf, "InstOf", op_pin_state_floats, L|F|H, oparity_unary, -1, sizeof(io_attr), NULL); op_Call = new_ir_op(iro_Call, "Call", op_pin_state_mem_pinned, L|F, oparity_variable, -1, sizeof(call_attr), NULL); op_Add = new_ir_op(iro_Add, "Add", op_pin_state_floats, C, oparity_binary, 0, 0, NULL); @@ -268,6 +269,8 @@ init_op(void) op_CopyB = new_ir_op(iro_CopyB, "CopyB", op_pin_state_mem_pinned, L|F|H, oparity_trinary, -1, sizeof(copyb_attr), NULL); op_Bound = new_ir_op(iro_Bound, "Bound", op_pin_state_mem_pinned, L|F|H, oparity_trinary, -1, sizeof(bound_attr), NULL); + op_Keep = new_ir_op(iro_Keep, "Keep", op_pin_state_pinned, N, oparity_variable, -1, 0, NULL); + #undef H #undef Y #undef F @@ -342,6 +345,8 @@ void finish_op(void) { free_ir_op (op_Mux ); op_Mux = NULL; free_ir_op (op_CopyB ); op_CopyB = NULL; free_ir_op (op_Bound ); op_Bound = NULL; + + free_ir_op (op_Keep ); op_Keep = NULL; } /* Returns the string for the opcode. */