diff options
author | Martin Jambor <mjambor@suse.cz> | 2009-03-30 15:06:52 +0200 |
---|---|---|
committer | Martin Jambor <jamborm@gcc.gnu.org> | 2009-03-30 15:06:52 +0200 |
commit | 133f9369c382006e841e9b940e060cbb4911edcf (patch) | |
tree | a998017d535126ebe28c42696a5e141a4c23b459 /gcc/ipa-prop.h | |
parent | 77a08224eed85b4dc2baa566531ee21c8773302a (diff) | |
download | gcc-133f9369c382006e841e9b940e060cbb4911edcf.zip gcc-133f9369c382006e841e9b940e060cbb4911edcf.tar.gz gcc-133f9369c382006e841e9b940e060cbb4911edcf.tar.bz2 |
ipa-prop.h (jump_func_type): Rename IPA_UNKNOWN...
2009-03-30 Martin Jambor <mjambor@suse.cz>
* ipa-prop.h (jump_func_type): Rename IPA_UNKNOWN, IPA_CONST,
IPA_CONST_MEMBER_PTR, and IPA_PASS_THROUGH to IPA_JF_UNKNOWN,
IPA_JF_CONST, IPA_JF_CONST_MEMBER_PTR, and IPA_JF_PASS_THROUGH
respectively.
* tree-dfa.c (get_ref_base_and_extent): Return -1 maxsize if
seen_variable_array_ref while also traversing a union.
* tree-inline.c (optimize_inline_calls): Do not call
cgraph_node_remove_callees.
* cgraphbuild.c (remove_cgraph_callee_edges): New function.
(pass_remove_cgraph_callee_edges): New variable.
* passes.c (init_optimization_passes): Add
pass_remove_cgraph_callee_edges after early inlining and before all
late intraprocedural passes.
* omp-low.c (expand_omp_taskreg): Always set current_function_decl.
From-SVN: r145291
Diffstat (limited to 'gcc/ipa-prop.h')
-rw-r--r-- | gcc/ipa-prop.h | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gcc/ipa-prop.h b/gcc/ipa-prop.h index aca7bf8..5943a2a 100644 --- a/gcc/ipa-prop.h +++ b/gcc/ipa-prop.h @@ -25,21 +25,24 @@ along with GCC; see the file COPYING3. If not see #include "cgraph.h" /* The following definitions and interfaces are used by - interprocedural analyses. */ + interprocedural analyses or parameters. */ + +/* ipa-prop.c stuff (ipa-cp, indirect inlining): */ /* A jump function for a callsite represents the values passed as actual arguments of the callsite. There are three main types of values : Formal - the caller's formal parameter is passed as an actual argument. Constant - a constant is passed as an actual argument. Unknown - neither of the above. - Integer and real constants are represented as IPA_CONST. - Finally, IPA_CONST_MEMBER_PTR stands for C++ member pointers constants. */ + Integer and real constants are represented as IPA_JF_CONST. + Finally, IPA_JF_CONST_MEMBER_PTR stands for C++ member pointers + constants. */ enum jump_func_type { - IPA_UNKNOWN = 0, /* newly allocated and zeroed jump functions default */ - IPA_CONST, - IPA_CONST_MEMBER_PTR, - IPA_PASS_THROUGH + IPA_JF_UNKNOWN = 0, /* newly allocated and zeroed jump functions default */ + IPA_JF_CONST, + IPA_JF_CONST_MEMBER_PTR, + IPA_JF_PASS_THROUGH }; /* All formal parameters in the program have a lattice associated with it @@ -50,7 +53,7 @@ enum jump_func_type IPA_CONST_VALUE - simple scalar constant, Cval of formal f will have a constant value if all callsites to this function have the same constant value passed to f. - Integer and real constants are represented as IPA_CONST. */ + Integer and real constants are represented as IPA_CONST_VALUE. */ enum ipa_lattice_type { IPA_BOTTOM, |