comparison gcc/ira-int.h @ 132:d34655255c78

update gcc-8.2
author mir3636
date Thu, 25 Oct 2018 10:21:07 +0900
parents 84e7813d76e9
children 1830386684a0
comparison
equal deleted inserted replaced
130:e108057fa461 132:d34655255c78
1 /* Integrated Register Allocator (IRA) intercommunication header file. 1 /* Integrated Register Allocator (IRA) intercommunication header file.
2 Copyright (C) 2006-2017 Free Software Foundation, Inc. 2 Copyright (C) 2006-2018 Free Software Foundation, Inc.
3 Contributed by Vladimir Makarov <vmakarov@redhat.com>. 3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
4 4
5 This file is part of GCC. 5 This file is part of GCC.
6 6
7 GCC is free software; you can redistribute it and/or modify it under 7 GCC is free software; you can redistribute it and/or modify it under
602 /* pseudo-registers assigned to the stack slot. */ 602 /* pseudo-registers assigned to the stack slot. */
603 bitmap_head spilled_regs; 603 bitmap_head spilled_regs;
604 /* RTL representation of the stack slot. */ 604 /* RTL representation of the stack slot. */
605 rtx mem; 605 rtx mem;
606 /* Size of the stack slot. */ 606 /* Size of the stack slot. */
607 unsigned int width; 607 poly_uint64_pod width;
608 }; 608 };
609 609
610 /* The number of elements in the following array. */ 610 /* The number of elements in the following array. */
611 extern int ira_spilled_reg_stack_slots_num; 611 extern int ira_spilled_reg_stack_slots_num;
612 612