#include "symtab.h"#include "irbdata.h"

Go to the source code of this file.
Classes | |
| class | WN |
| class | STMT_WN_BASE |
| class | STMT_WN |
Defines | |
| #define | MAX_FIELD_ID 0x3ffe |
| #define | UNKNOWN_FIELD_ID 0x3fff |
| #define | WN_num_dim(x) (WN_kid_count(x)>>1) |
| #define | WN_asm_clobbers(x) (WN_kid0(x)) |
| #define | WN_asm_constraints(x) (WN_kid1(x)) |
| #define | WN_CAST_WN_TO_STMT_WN(x) ((STMT_WN *)( (STMT_WN_BASE *)x - 1)) |
| #define | WN_has_sym(x) (OPERATOR_has_sym(WN_operator(x))) |
| #define | WN_parm_flag(x) WN_call_flag(x) |
| #define | WN_region_is_EH(x) (WN_region_kind(x) & REGION_KIND_EH) |
| #define | WN_label_loop_info(x) (WN_kid_count(x)>0 ? WN_kid((x),0) : NULL) |
| #define | WN_set_label_loop_info(x, li) (WN_kid0(x) = (li)) |
| #define | WN_PRAGMA_COMPILER_GENERATED 0x01 |
| #define | WN_PRAGMA_OMP 0x02 |
| #define | WN_pragma_compiler_generated(x) ((WN_pragma_flags(x))&WN_PRAGMA_COMPILER_GENERATED) |
| #define | WN_set_pragma_compiler_generated(x) ((WN_pragma_flags(x))|=WN_PRAGMA_COMPILER_GENERATED) |
| #define | WN_pragma_omp(x) ((WN_pragma_flags(x)) & WN_PRAGMA_OMP) |
| #define | WN_set_pragma_omp(x) ((WN_pragma_flags(x)) |= WN_PRAGMA_OMP) |
| #define | WN_reset_pragma_omp(x) ((WN_pragma_flags(x)) &= ~(WN_PRAGMA_OMP)) |
| #define | WN_entry_name(x) WN_st_idx(x) |
| #define | WN_formal(x, i) WN_kid((x),i) |
| #define | WN_num_formals(x) (WN_kid_count(x)-3) |
| #define | WN_func_pragmas(x) WN_kid((x),WN_kid_count(x)-3) |
| #define | WN_func_varrefs(x) WN_kid((x),WN_kid_count(x)-2) |
| #define | WN_func_body(x) WN_kid((x),WN_kid_count(x)-1) |
| #define | WN_entry_first(x) WN_first(WN_func_body(x)) |
| #define | WN_entry_last(x) WN_last(WN_func_body(x)) |
| #define | WN_actual(x, i) WN_kid((x),i) |
| #define | WN_index(x) WN_kid((x),0) |
| #define | WN_start(x) WN_kid((x),1) |
| #define | WN_end(x) WN_kid((x),2) |
| #define | WN_step(x) WN_kid((x),3) |
| #define | WN_do_body(x) WN_kid((x),4) |
| #define | WN_do_loop_info(x) (WN_kid_count(x)>5 ? WN_kid((x),5) : NULL) |
| #define | WN_set_do_loop_info(x, li) (WN_kid((x),5) = (li)) |
| #define | WN_while_test(x) WN_kid((x),0) |
| #define | WN_while_body(x) WN_kid((x),1) |
| #define | WN_if_test(x) WN_kid((x),0) |
| #define | WN_then(x) WN_kid((x),1) |
| #define | WN_else(x) WN_kid((x),2) |
| #define | WN_else_is_empty(x) (WN_first(WN_else(x)) == NULL) |
| #define | WN_region_exits(x) WN_kid((x),0) |
| #define | WN_region_pragmas(x) WN_kid((x),1) |
| #define | WN_region_body(x) WN_kid((x),2) |
| #define | WN_array_index(x, i) WN_kid((x),WN_num_dim(x)+i+1) |
| #define | WN_array_dim(x, i) WN_kid((x),i+1) |
| #define | WN_array_base(x) WN_kid((x),0) |
| #define | WN_loop_induction(x) (WN_kid_count(x)>0 ? WN_kid((x),0) : NULL) |
| #define | WN_set_loop_induction(x, ind) (WN_kid((x),0) = (ind)) |
| #define | WN_loop_trip(x) (WN_kid_count(x)>1 ? WN_kid((x),1) : NULL) |
| #define | WN_set_loop_trip(x, trip) (WN_kid((x),1) = (trip)) |
| #define | WN_switch_test(x) WN_kid((x),0) |
| #define | WN_switch_table(x) WN_kid((x),1) |
| #define | WN_switch_default(x) WN_kid((x),2) |
| #define | max(a, b) ((a > b) ? a : b) |
| #define | WN_operator_is(x, y) (WN_operator(x)==(y)) |
| #define | WN_class(x) (ST_class(WN_st(x))) |
| #define | WN_sclass(x) (ST_sclass(WN_st(x))) |
| #define | WN_type(x) (ST_type(WN_st(x))) |
| #define | WN_has_map_id(x) (WN_map_id(x)!= -1) |
| #define | WN_block_empty(x) (WN_first(x) == NULL) |
| #define | WN_block_nonempty(x) (WN_first(x) != NULL) |
| #define | WN_IF_IS_GUARD 0x1 |
| #define | WN_Is_If_Guard(x) (WN_if_flag(x) & WN_IF_IS_GUARD) |
| #define | WN_Set_If_Guard(x) (WN_if_flag(x) |= WN_IF_IS_GUARD) |
| #define | WN_Reset_If_Guard(x) (WN_if_flag(x) &= ~(WN_IF_IS_GUARD)) |
| #define | WN_IF_IS_MPVERSION 0x2 |
| #define | WN_Is_If_MpVersion(x) (WN_if_flag(x) & WN_IF_IS_MPVERSION) |
| #define | WN_Set_If_MpVersion(x) (WN_if_flag(x) |= WN_IF_IS_MPVERSION) |
| #define | WN_Reset_If_MpVersion(x) (WN_if_flag(x) &= ~(WN_IF_IS_MPVERSION)) |
| #define | WN_LABEL_BREAK 0x1 |
| #define | WN_Label_Is_Break(x) (WN_label_flag(x) & WN_LABEL_BREAK) |
| #define | WN_Set_Label_Is_Break(x) (WN_label_flag(x) |= WN_LABEL_BREAK) |
| #define | WN_Reset_Label_Is_Break(x) (WN_label_flag(x) &= ~(WN_LABEL_BREAK)) |
| #define | WN_LOOP_INNERMOST 0x1 |
| #define | WN_LOOP_WINDDOWN_REG 0x2 |
| #define | WN_LOOP_WINDDOWN_CACHE 0x4 |
| #define | WN_LOOP_UNIMPORTANT_MISC 0x8 |
| #define | WN_LOOP_NZ_TRIP 0x10 |
| #define | WN_LOOP_SYMB_TRIP 0x20 |
| #define | WN_Loop_Innermost(x) (WN_loop_flag(x) & WN_LOOP_INNERMOST) |
| #define | WN_Set_Loop_Innermost(x) (WN_loop_flag(x) |= WN_LOOP_INNERMOST) |
| #define | WN_Reset_Loop_Innermost(x) (WN_loop_flag(x) &= ~WN_LOOP_INNERMOST) |
| #define | WN_Loop_Winddown_Reg(x) (WN_loop_flag(x) & WN_LOOP_WINDDOWN_REG) |
| #define | WN_Set_Loop_Winddown_Reg(x) (WN_loop_flag(x) |= WN_LOOP_WINDDOWN_REG) |
| #define | WN_Reset_Loop_Winddown_Reg(x) (WN_loop_flag(x) &= ~WN_LOOP_WINDDOWN_REG) |
| #define | WN_Loop_Winddown_Cache(x) (WN_loop_flag(x) & WN_LOOP_WINDDOWN_CACHE) |
| #define | WN_Set_Loop_Winddown_Cache(x) (WN_loop_flag(x) |= WN_LOOP_WINDDOWN_CACHE) |
| #define | WN_Reset_Loop_Winddown_Cache(x) (WN_loop_flag(x) &= ~WN_LOOP_WINDDOWN_CACHE) |
| #define | WN_Loop_Unimportant_Misc(x) (WN_loop_flag(x) & WN_LOOP_UNIMPORTANT_MISC) |
| #define | WN_Set_Loop_Unimportant_Misc(x) (WN_loop_flag(x) |= WN_LOOP_UNIMPORTANT_MISC) |
| #define | WN_Reset_Loop_Unimportant_Misc(x) (WN_loop_flag(x) &= ~WN_LOOP_UNIMPORTANT_MISC) |
| #define | WN_Loop_Unimportant(x) |
| #define | WN_Loop_Nz_Trip(x) (WN_loop_flag(x) & WN_LOOP_NZ_TRIP) |
| #define | WN_Set_Loop_Nz_Trip(x) (WN_loop_flag(x) |= WN_LOOP_NZ_TRIP) |
| #define | WN_Reset_Loop_Nz_Trip(x) (WN_loop_flag(x) &= ~WN_LOOP_NZ_TRIP) |
| #define | WN_Loop_Symb_Trip(x) (WN_loop_flag(x) & WN_LOOP_SYMB_TRIP) |
| #define | WN_Set_Loop_Symb_Trip(x) (WN_loop_flag(x) |= WN_LOOP_SYMB_TRIP) |
| #define | WN_Reset_Loop_Symb_Trip(x) (WN_loop_flag(x) &= ~WN_LOOP_SYMB_TRIP) |
| #define | WN_LABEL_HANDLER_BEGIN 0x2 |
| #define | WN_Label_Is_Handler_Begin(x) |
| #define | WN_Set_Label_Is_Handler_Begin(x) |
| #define | WN_Reset_Label_Is_Handler_Begin(x) |
| #define | WN_Set_IO_Library(x, y) (WN_io_flag(x) = (y)) |
| #define | WN_IO_Library(x) ((IOLIB) WN_io_flag(x)) |
| #define | WN_PARM_BY_REFERENCE 0x01 |
| #define | WN_PARM_BY_VALUE 0x02 |
| #define | WN_PARM_IN WN_PARM_BY_VALUE |
| #define | WN_PARM_OUT 0x04 |
| #define | WN_PARM_DUMMY 0x08 |
| #define | WN_PARM_READ_ONLY 0x10 |
| #define | WN_PARM_PASSED_NOT_SAVED 0x20 |
| #define | WN_PARM_NOT_EXPOSED_USE 0x40 |
| #define | WN_PARM_IS_KILLED 0x80 |
| #define | WN_PARM_PASS_ADDRESS 0x0100 |
| #define | WN_PARM_PASS_ADDRESS_FROM_DV 0x0200 |
| #define | WN_PARM_PASS_DV 0x0400 |
| #define | WN_PARM_PASS_DV_COPY 0x0800 |
| #define | WN_PARM_COPY_IN 0x2000 |
| #define | WN_PARM_COPY_IN_COPY_OUT 0x4000 |
| #define | WN_PARM_MAKE_DV 0x8000 |
| #define | WN_PARM_COPY_IN_MAKE_DV 0x010000 |
| #define | WN_PARM_MAKE_NEW_DV 0x020000 |
| #define | WN_PARM_PASS_SECTION_ADDRESS 0x040000 |
| #define | WN_PARM_CHECK_CONTIG_FLAG 0x080000 |
| #define | WN_Parm_By_Reference(x) (WN_parm_flag(x) & WN_PARM_BY_REFERENCE) |
| #define | WN_Set_Parm_By_Reference(x) (WN_parm_flag(x) |= WN_PARM_BY_REFERENCE) |
| #define | WN_Clear_Parm_By_Reference(x) (WN_parm_flag(x) &= ~WN_PARM_BY_REFERENCE) |
| #define | WN_Parm_By_Value(x) (WN_parm_flag(x) & WN_PARM_BY_VALUE) |
| #define | WN_Set_Parm_By_Value(x) (WN_parm_flag(x) |= WN_PARM_BY_VALUE) |
| #define | WN_Clear_Parm_By_Value(x) (WN_parm_flag(x) &= ~WN_PARM_BY_VALUE) |
| #define | WN_Parm_In(x) (WN_parm_flag(x) & WN_PARM_IN) |
| #define | WN_Set_Parm_In(x) (WN_parm_flag(x) |= WN_PARM_IN) |
| #define | WN_Parm_Out(x) (WN_parm_flag(x) & WN_PARM_OUT) |
| #define | WN_Set_Parm_Out(x) (WN_parm_flag(x) |= WN_PARM_OUT) |
| #define | WN_Parm_Dummy(x) (WN_parm_flag(x) & WN_PARM_DUMMY) |
| #define | WN_Set_Parm_Dummy(x) (WN_parm_flag(x) |= WN_PARM_DUMMY) |
| #define | WN_Parm_Read_Only(x) (WN_parm_flag(x) & WN_PARM_READ_ONLY) |
| #define | WN_Set_Parm_Read_Only(x) (WN_parm_flag(x) |= WN_PARM_READ_ONLY) |
| #define | WN_Parm_Passed_Not_Saved(x) (WN_parm_flag(x) & WN_PARM_PASSED_NOT_SAVED) |
| #define | WN_Set_Parm_Passed_Not_Saved(x) (WN_parm_flag(x) |= WN_PARM_PASSED_NOT_SAVED) |
| #define | WN_Set_Parm_Not_Exposed_Use(x) (WN_parm_flag(x) |= WN_PARM_NOT_EXPOSED_USE) |
| #define | WN_Parm_Not_Exposed_Use(x) (WN_parm_flag(x) & WN_PARM_NOT_EXPOSED_USE) |
| #define | WN_Set_Parm_Is_Killed(x) (WN_parm_flag(x) |= WN_PARM_IS_KILLED) |
| #define | WN_Parm_Is_Killed(x) (WN_parm_flag(x) & WN_PARM_IS_KILLED) |
| #define | WN_Parm_Pass_Address(x) (WN_parm_flag(x) & WN_PARM_PASS_ADDRESS) |
| #define | WN_Set_Parm_Pass_Address(x) (WN_parm_flag(x) |= WN_PARM_PASS_ADDRESS) |
| #define | WN_Parm_Pass_Address_From_Dv(x) (WN_parm_flag(x) & WN_PARM_PASS_ADDRESS_FROM_DV) |
| #define | WN_Set_Parm_Pass_Address_From_Dv(x) (WN_parm_flag(x) |= WN_PARM_PASS_ADDRESS_FROM_DV) |
| #define | WN_Parm_Pass_Dv(x) (WN_parm_flag(x) & WN_PARM_PASS_DV) |
| #define | WN_Set_Parm_Pass_Dv(x) (WN_parm_flag(x) |= WN_PARM_PASS_DV) |
| #define | WN_Parm_Pass_Dv_Copy(x) (WN_parm_flag(x) & WN_PARM_PASS_DV_COPY) |
| #define | WN_Set_Parm_Pass_Dv_Copy(x) (WN_parm_flag(x) |= WN_PARM_PASS_DV_COPY) |
| #define | WN_Parm_Copy_In(x) (WN_parm_flag(x) & WN_PARM_COPY_IN) |
| #define | WN_Set_Parm_Copy_In(x) (WN_parm_flag(x) |= WN_PARM_COPY_IN) |
| #define | WN_Parm_Copy_In_Copy_out(x) (WN_parm_flag(x) & WN_PARM_BY_REFERENCE) |
| #define | WN_Set_Parm_Copy_In_Copy_out(x) (WN_parm_flag(x) |= WN_PARM_COPY_IN_COPY_OUT) |
| #define | WN_Parm_Make_Dv(x) (WN_parm_flag(x) & WN_PARM_MAKE_DV) |
| #define | WN_Set_Parm_Make_Dv(x) (WN_parm_flag(x) |= WN_PARM_MAKE_DV) |
| #define | WN_Parm_Copy_In_Make_Dv(x) (WN_parm_flag(x) & WN_PARM_COPY_IN_MAKE_DV) |
| #define | WN_Set_Parm_Copy_In_Make_Dv(x) (WN_parm_flag(x) |= WN_PARM_COPY_IN_MAKE_DV) |
| #define | WN_Parm_Make_New_Dv(x) (WN_parm_flag(x) & WN_PARM_MAKE_NEW_DV) |
| #define | WN_Set_Parm_Make_New_Dv(x) (WN_parm_flag(x) |= WN_PARM_MAKE_NEW_DV) |
| #define | WN_Parm_Pass_Section_Address(x) (WN_parm_flag(x) & WN_PARM_PASS_SECTION_ADDRESS) |
| #define | WN_Set_Parm_Pass_Section_Address(x) (WN_parm_flag(x) |= WN_PARM_PASS_SECTION_ADDRESS) |
| #define | WN_Parm_Check_Contig_Flag(x) (WN_parm_flag(x) & WN_PARM_CHECK_CONTIG_FLAG) |
| #define | WN_Set_Parm_Check_Contig_Flag(x) (WN_parm_flag(x) |= WN_PARM_CHECK_CONTIG_FLAG) |
| #define | WN_EQ_IS_LOGICAL 0x01 |
| #define | WN_Eq_Is_Logical(x) (WN_eq_logical_flag(x) & WN_EQ_IS_LOGICAL) |
| #define | WN_Set_Eq_Is_Logical(x) (WN_eq_logical_flag(x) |= WN_EQ_IS_LOGICAL) |
| #define | WN_Reset_Eq_Is_Logical(x) (WN_eq_logical_flag(x) &= WN_EQ_IS_LOGICAL) |
| #define | WN_CALL_NEVER_RETURN 0x01 |
| #define | WN_CALL_NON_DATA_MOD 0x02 |
| #define | WN_CALL_NON_PARM_MOD 0x04 |
| #define | WN_CALL_PARM_MOD 0x08 |
| #define | WN_CALL_NON_DATA_REF 0x10 |
| #define | WN_CALL_NON_PARM_REF 0x20 |
| #define | WN_CALL_PARM_REF 0x40 |
| #define | WN_CALL_INLINE 0x80 |
| #define | WN_CALL_DONT_INLINE 0x100 |
| #define | WN_CALL_DOES_MEM_ALLOC 0x200 |
| #define | WN_CALL_DOES_MEM_FREE 0x400 |
| #define | WN_CALL_FORTRAN_POINTER_RULE 0x800 |
| #define | WN_CALL_REPLACE_BY_JUMP 0x1000 |
| #define | WN_CALL_CONSERVATIVE |
| #define | WN_Call_Never_Return(x) (WN_call_flag(x) & WN_CALL_NEVER_RETURN) |
| #define | WN_Set_Call_Never_Return(x) (WN_call_flag(x) |= WN_CALL_NEVER_RETURN) |
| #define | WN_Reset_Call_Never_Return(x) (WN_call_flag(x) &= ~WN_CALL_NEVER_RETURN) |
| #define | WN_Call_Non_Data_Mod(x) (WN_call_flag(x) & WN_CALL_NON_DATA_MOD) |
| #define | WN_Set_Call_Non_Data_Mod(x) (WN_call_flag(x) |= WN_CALL_NON_DATA_MOD) |
| #define | WN_Reset_Call_Non_Data_Mod(x) (WN_call_flag(x) &= ~WN_CALL_NON_DATA_MOD) |
| #define | WN_Call_Non_Data_Ref(x) (WN_call_flag(x) & WN_CALL_NON_DATA_REF) |
| #define | WN_Set_Call_Non_Data_Ref(x) (WN_call_flag(x) |= WN_CALL_NON_DATA_REF) |
| #define | WN_Reset_Call_Non_Data_Ref(x) (WN_call_flag(x) &= ~WN_CALL_NON_DATA_REF) |
| #define | WN_Call_Non_Parm_Mod(x) (WN_call_flag(x) & WN_CALL_NON_PARM_MOD) |
| #define | WN_Set_Call_Non_Parm_Mod(x) (WN_call_flag(x) |= WN_CALL_NON_PARM_MOD) |
| #define | WN_Reset_Call_Non_Parm_Mod(x) (WN_call_flag(x) &= ~WN_CALL_NON_PARM_MOD) |
| #define | WN_Call_Non_Parm_Ref(x) (WN_call_flag(x) & WN_CALL_NON_PARM_REF) |
| #define | WN_Set_Call_Non_Parm_Ref(x) (WN_call_flag(x) |= WN_CALL_NON_PARM_REF) |
| #define | WN_Reset_Call_Non_Parm_Ref(x) (WN_call_flag(x) &= ~WN_CALL_NON_PARM_REF) |
| #define | WN_Call_Parm_Mod(x) (WN_call_flag(x) & WN_CALL_PARM_MOD) |
| #define | WN_Set_Call_Parm_Mod(x) (WN_call_flag(x) |= WN_CALL_PARM_MOD) |
| #define | WN_Reset_Call_Parm_Mod(x) (WN_call_flag(x) &= ~WN_CALL_PARM_MOD) |
| #define | WN_Call_Parm_Ref(x) (WN_call_flag(x) & WN_CALL_PARM_REF) |
| #define | WN_Set_Call_Parm_Ref(x) (WN_call_flag(x) |= WN_CALL_PARM_REF) |
| #define | WN_Reset_Call_Parm_Ref(x) (WN_call_flag(x) &= ~WN_CALL_PARM_REF) |
| #define | WN_Call_Inline(x) (WN_call_flag(x) & WN_CALL_INLINE) |
| #define | WN_Set_Call_Inline(x) (WN_call_flag(x) |= WN_CALL_INLINE) |
| #define | WN_Reset_Call_Inline(x) (WN_call_flag(x) &= ~WN_CALL_INLINE) |
| #define | WN_Call_Dont_Inline(x) (WN_call_flag(x) & WN_CALL_DONT_INLINE) |
| #define | WN_Set_Call_Dont_Inline(x) (WN_call_flag(x) |= WN_CALL_DONT_INLINE) |
| #define | WN_Reset_Call_Dont_Inline(x) (WN_call_flag(x) &= ~WN_CALL_DONT_INLINE) |
| #define | WN_Call_Does_Mem_Alloc(x) (WN_call_flag(x) & WN_CALL_DOES_MEM_ALLOC) |
| #define | WN_Set_Call_Does_Mem_Alloc(x) (WN_call_flag(x) |= WN_CALL_DOES_MEM_ALLOC) |
| #define | WN_Reset_Call_Does_Mem_Alloc(x) (WN_call_flag(x) &= ~WN_CALL_DOES_MEM_ALLOC) |
| #define | WN_Call_Does_Mem_Free(x) (WN_call_flag(x) & WN_CALL_DOES_MEM_FREE) |
| #define | WN_Set_Call_Does_Mem_Free(x) (WN_call_flag(x) |= WN_CALL_DOES_MEM_FREE) |
| #define | WN_Reset_Call_Does_Mem_Free(x) (WN_call_flag(x) &= ~WN_CALL_DOES_MEM_FREE) |
| #define | WN_Call_Fortran_Pointer_Rule(x) (WN_call_flag(x) & WN_CALL_FORTRAN_POINTER_RULE) |
| #define | WN_Set_Call_Fortran_Pointer_Rule(x) (WN_call_flag(x) |= WN_CALL_FORTRAN_POINTER_RULE) |
| #define | WN_Reset_Call_Fortran_Pointer_Rule(x) (WN_call_flag(x) &= ~WN_CALL_FORTRAN_POINTER_RULE) |
| #define | WN_Call_Replace_By_Jump(x) (WN_call_flag(x) & WN_CALL_REPLACE_BY_JUMP) |
| #define | WN_Set_Call_Replace_By_Jump(x) (WN_call_flag(x) |= WN_CALL_REPLACE_BY_JUMP) |
| #define | WN_Reset_Call_Replace_By_Jump(x) (WN_call_flag(x) &= ~WN_CALL_REPLACE_BY_JUMP) |
| #define | WN_Set_Call_Default_Flags(x) (WN_call_flag(x) |= WN_CALL_CONSERVATIVE) |
| #define | WN_Call_No_Side_Effect(x) ((WN_call_flag(x) & (WN_CALL_NON_DATA_MOD | WN_CALL_NON_PARM_MOD | WN_CALL_PARM_MOD)) == 0) |
| #define | WN_Call_Pure(x) ((WN_call_flag(x) & (WN_CALL_NON_DATA_MOD | WN_CALL_NON_PARM_MOD | WN_CALL_PARM_MOD | WN_CALL_NON_DATA_REF | WN_CALL_NON_PARM_REF)) == 0) |
| #define | WN_ASM_VOLATILE 0x0001 |
| #define | WN_ASM_CLOBBERS_MEM 0x0002 |
| #define | WN_ASM_CLOBBERS_CC 0x0004 |
| #define | WN_Asm_Volatile(x) (WN_asm_flag(x) & WN_ASM_VOLATILE) |
| #define | WN_Set_Asm_Volatile(x) (WN_asm_flag(x) |= WN_ASM_VOLATILE) |
| #define | WN_Reset_Asm_Volatile(x) (WN_asm_flag(x) &= ~WN_ASM_VOLATILE) |
| #define | WN_Asm_Clobbers_Mem(x) (WN_asm_flag(x) & WN_ASM_CLOBBERS_MEM) |
| #define | WN_Set_Asm_Clobbers_Mem(x) (WN_asm_flag(x) |= WN_ASM_CLOBBERS_MEM) |
| #define | WN_Reset_Asm_Clobbers_Mem(x) (WN_asm_flag(x) &= ~WN_ASM_CLOBBERS_MEM) |
| #define | WN_Asm_Clobbers_Cc(x) (WN_asm_flag(x) & WN_ASM_CLOBBERS_CC) |
| #define | WN_Set_Asm_Clobbers_Cc(x) (WN_asm_flag(x) |= WN_ASM_CLOBBERS_CC) |
| #define | WN_Reset_Asm_Clobbers_Cc(x) (WN_asm_flag(x) &= ~WN_ASM_CLOBBERS_CC) |
| #define | PF_GET_READ(flag) (((~(flag)) >> 24) & 0x1) |
| #define | PF_GET_WRITE(flag) (((flag) >> 24) & 0x1) |
| #define | PF_GET_STRIDE_1L(flag) ((flag) & 0xff) |
| #define | PF_GET_STRIDE_2L(flag) (((flag) >> 8) & 0xff) |
| #define | PF_GET_CONFIDENCE(flag) (((flag) >> 28) & 0xf) |
| #define | PF_GET_MANUAL(flag) (((flag) >> 25) & 0x1) |
| #define | PF_SET_READ(flag) flag &= 0xfeffffff |
| #define | PF_SET_WRITE(flag) flag |= 0x01000000 |
| #define | PF_SET_STRIDE_1L(flag, x) flag = (((flag)&0xffffff00) | ((x)&0xff)) |
| #define | PF_SET_STRIDE_2L(flag, x) flag = (((flag)&0xffff00ff) | ((x)&0xff)<<8) |
| #define | PF_SET_CONFIDENCE(flag, x) flag = (((flag)&0x0fffffff) | ((x)&0xf)<<28) |
| #define | PF_SET_MANUAL(flag) flag |= 0x02000000 |
| #define | PF_UNSET_MANUAL(flag) flag &= 0xfdffffff |
| #define | WN_pf_read(wn) (((~(WN_prefetch_flag(wn))) >> 24) & 0x1) |
| #define | WN_pf_write(wn) (((WN_prefetch_flag(wn)) >> 24) & 0x1) |
| #define | WN_pf_stride_1L(wn) ((WN_prefetch_flag(wn)) & 0xff) |
| #define | WN_pf_stride_2L(wn) (((WN_prefetch_flag(wn)) >> 8) & 0xff) |
| #define | WN_pf_confidence(wn) (((WN_prefetch_flag(wn)) >> 28) & 0xf) |
| #define | WN_pf_manual(wn) (((WN_prefetch_flag(wn)) >> 25) & 0x1) |
| #define | WN_pf_set_read(wn) WN_prefetch_flag(wn) &= 0xfeffffff |
| #define | WN_pf_set_write(wn) WN_prefetch_flag(wn) |= 0x01000000 |
| #define | WN_pf_set_stride_1L(wn, x) WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0xffffff00) | ((x)&0xff)) |
| #define | WN_pf_set_stride_2L(wn, x) WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0xffff00ff) | ((x)&0xff)<<8) |
| #define | WN_pf_set_confidence(wn, x) WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0x0fffffff) | ((x)&0xf)<<28) |
| #define | WN_pf_set_manual(wn) WN_prefetch_flag(wn) |= 0x02000000 |
| #define | WN_pf_unset_manual(wn) WN_prefetch_flag(wn) &= 0xfdffffff |
Typedefs | |
| typedef INT32 | WN_OFFSET |
| typedef INT64 | WN_ESIZE |
| typedef INT32 | WN_MAP_ID |
Enumerations | |
| enum | REGION_KIND { REGION_KIND_PRAGMA = 0x0, REGION_KIND_FUNC_ENTRY = 0x1, REGION_KIND_LOOP = 0x2, REGION_KIND_OLIMIT = 0x3, REGION_KIND_MP = 0x4, REGION_KIND_RPI = 0x5, REGION_KIND_COLD = 0x6, REGION_KIND_SWP = 0x7, REGION_KIND_EH = 0x8, REGION_KIND_TRY = 0x8, REGION_KIND_CLEANUP = 0x9, REGION_KIND_EXC_SPEC = 0xa, REGION_KIND_MASK = 0xb, REGION_KIND_GUARD = 0xc, REGION_KIND_NULL_CLEANUP = 0xd } |
Functions | |
| WN_OFFSET | WN_load_offset (const WN *wn) |
| WN_OFFSET & | WN_load_offset (WN *wn) |
| WN_OFFSET | WN_lda_offset (const WN *wn) |
| WN_OFFSET & | WN_lda_offset (WN *wn) |
| WN_OFFSET | WN_store_offset (const WN *wn) |
| WN_OFFSET & | WN_store_offset (WN *wn) |
| WN_OFFSET | WN_idname_offset (const WN *wn) |
| WN_OFFSET & | WN_idname_offset (WN *wn) |
| WN_OFFSET | WN_offset (const WN *wn) |
| WN_OFFSET & | WN_offset (WN *wn) |
| INT32 | WN_num_entries (const WN *wn) |
| INT32 & | WN_num_entries (WN *wn) |
| INT16 | WN_cvtl_bits (const WN *wn) |
| INT16 & | WN_cvtl_bits (WN *wn) |
| INT32 | WN_label_number (const WN *wn) |
| INT32 & | WN_label_number (WN *wn) |
| UINT32 | WN_call_flag (const WN *wn) |
| UINT32 & | WN_call_flag (WN *wn) |
| UINT32 | WN_eq_logical_flag (const WN *wn) |
| UINT32 & | WN_eq_logical_flag (WN *wn) |
| UINT32 | WN_if_flag (const WN *wn) |
| UINT32 & | WN_if_flag (WN *wn) |
| UINT32 | WN_io_flag (const WN *wn) |
| UINT32 & | WN_io_flag (WN *wn) |
| UINT32 | WN_asm_flag (const WN *wn) |
| UINT32 & | WN_asm_flag (WN *wn) |
| UINT32 | WN_label_level (const WN *wn) |
| UINT32 & | WN_label_level (WN *wn) |
| mUINT16 | WN_loop_trip_est (const WN *wn) |
| mUINT16 & | WN_loop_trip_est (WN *wn) |
| mUINT16 | WN_loop_depth (const WN *wn) |
| mUINT16 & | WN_loop_depth (WN *wn) |
| mUINT16 | WN_pragma_flags (const WN *wn) |
| mUINT16 & | WN_pragma_flags (WN *wn) |
| mUINT16 | WN_pragma (const WN *wn) |
| mUINT16 & | WN_pragma (WN *wn) |
| char * | WN_pragma_asm_constraint (const WN *wn) |
| PREG_NUM | WN_pragma_asm_copyout_preg (const WN *wn) |
| void | WN_set_pragma_asm_copyout_preg (WN *wn, PREG_NUM r) |
| UINT32 | WN_pragma_asm_opnd_num (const WN *wn) |
| void | WN_set_pragma_asm_opnd_num (WN *wn, UINT32 i) |
| REGION_KIND | WN_region_kind (const WN *wn) |
| void | WN_set_region_kind (WN *wn, REGION_KIND k) |
| mUINT32 | WN_region_id (const WN *wn) |
| void | WN_set_region_id (WN *wn, mUINT32 i) |
| ST_IDX | WN_st_idx (const WN *wn) |
| ST_IDX & | WN_st_idx (WN *wn) |
| INTRINSIC | WN_intrinsic (const WN *wn) |
| INTRINSIC & | WN_intrinsic (WN *wn) |
| IOSTATEMENT | WN_io_statement (const WN *wn) |
| IOSTATEMENT & | WN_io_statement (WN *wn) |
| IOITEM | WN_io_item (const WN *wn) |
| IOITEM & | WN_io_item (WN *wn) |
| UINT32 | WN_prefetch_flag (const WN *wn) |
| UINT32 & | WN_prefetch_flag (WN *wn) |
| UINT32 | WN_loop_flag (const WN *wn) |
| UINT32 & | WN_loop_flag (WN *wn) |
| INT32 | WN_last_label (const WN *wn) |
| INT32 & | WN_last_label (WN *wn) |
| INITO_IDX | WN_ereg_supp (const WN *wn) |
| INITO_IDX & | WN_ereg_supp (WN *wn) |
| WN_ESIZE | WN_element_size (const WN *wn) |
| WN_ESIZE & | WN_element_size (WN *wn) |
| OPERATOR | WN_operator (const WN *wn) |
| void | WN_set_operator (WN *wn, OPERATOR opr) |
| TYPE_ID | WN_rtype (const WN *wn) |
| void | WN_set_rtype (WN *wn, TYPE_ID ty) |
| INT | WN_kid_count (const WN *wn) |
| void | WN_set_kid_count (WN *wn, UINT n) |
| UINT | WN_field_id (const WN *wn) |
| void | WN_set_field_id (WN *wn, UINT n) |
| UINT | WN_bit_offset (const WN *wn) |
| UINT | WN_bit_size (const WN *wn) |
| void | WN_set_bit_offset_size (WN *wn, UINT ofst, UINT siz) |
| TYPE_ID | WN_desc (const WN *wn) |
| void | WN_set_desc (WN *wn, TYPE_ID ty) |
| INT32 | WN_map_id (const WN *wn) |
| INT32 & | WN_map_id (WN *wn) |
| WN * | WN_kid (const WN *wn, const int i) |
| WN *& | WN_kid (WN *wn, const int i) |
| WN * | WN_kid0 (const WN *wn) |
| WN *& | WN_kid0 (WN *wn) |
| WN * | WN_kid1 (const WN *wn) |
| WN *& | WN_kid1 (WN *wn) |
| WN * | WN_kid2 (const WN *wn) |
| WN *& | WN_kid2 (WN *wn) |
| WN * | WN_kid3 (const WN *wn) |
| WN *& | WN_kid3 (WN *wn) |
| INT64 | WN_const_val (const WN *wn) |
| INT64 & | WN_const_val (WN *wn) |
| UINT32 | WN_label_flag (const WN *wn) |
| UINT32 & | WN_label_flag (WN *wn) |
| WN * | WN_first (const WN *wn) |
| WN *& | WN_first (WN *wn) |
| WN * | WN_last (const WN *wn) |
| WN *& | WN_last (WN *wn) |
| UINT32 | WN_asm_num_inputs (const WN *wn) |
| UINT32 & | WN_asm_num_inputs (WN *wn) |
| UINT32 | WN_asm_opnd_num (const WN *wn) |
| UINT32 & | WN_asm_opnd_num (WN *wn) |
| UINT32 | WN_asm_num_clobbers (const WN *wn) |
| UINT32 & | WN_asm_num_clobbers (WN *wn) |
| INT64 | WN_pragma_arg64 (const WN *wn) |
| INT64 & | WN_pragma_arg64 (WN *wn) |
| INT32 | WN_pragma_arg1 (const WN *wn) |
| INT32 & | WN_pragma_arg1 (WN *wn) |
| INT32 | WN_pragma_arg2 (const WN *wn) |
| INT32 & | WN_pragma_arg2 (WN *wn) |
| mINT8 | WN_pragma_distr_type (const WN *wn) |
| mINT8 & | WN_pragma_distr_type (WN *wn) |
| mINT8 | WN_pragma_index (const WN *wn) |
| mINT8 & | WN_pragma_index (WN *wn) |
| INT32 | WN_pragma_preg (const WN *wn) |
| INT32 & | WN_pragma_preg (WN *wn) |
| void | WN_Copy_u1u2 (WN *dst, const WN *src) |
| void | WN_Copy_u3 (WN *dst, const WN *src) |
| OPCODE | WN_opcode (const WN *wn) |
| void | WN_set_opcode (WN *wn, OPCODE opc) |
| WN * | WN_prev (const WN *wn) |
| WN *& | WN_prev (WN *wn) |
| WN * | WN_next (const WN *wn) |
| WN *& | WN_next (WN *wn) |
| mUINT64 | WN_linenum (const WN *wn) |
| mUINT64 & | WN_linenum (WN *wn) |
| WN * | WN_prev_free (const STMT_WN *stmt_wn) |
| WN *& | WN_prev_free (STMT_WN *stmt_wn) |
| WN & | WN_real_fields (STMT_WN *stmt_wn) |
| ST * | WN_st (const WN *x) |
| char * | WN_asm_string (const WN *wn) |
| char * | WN_asm_input_constraint (const WN *wn) |
| TCON & | WN_val (const WN *x) |
| TYPE_ID | WN_val_type (const WN *x) |
| TY_IDX | WN_ty (const WN *wn) |
| void | WN_set_ty (WN *wn, TY_IDX ty) |
| TY_IDX | WN_load_addr_ty (const WN *wn) |
| void | WN_set_load_addr_ty (WN *wn, TY_IDX ty) |
| UINT32 | WN_flag (const WN *wn) |
| void | WN_set_flag (WN *wn, UINT32 flag) |
| void * | WN_StartAddress (WN *wn) |
| INT32 | WN_Size (WN *wn) |
| void | WN_Set_Linenum (WN *wn, INT64 ln) |
| INT64 | WN_Get_Linenum (const WN *wn) |
| BOOL | WN_Is_Volatile_Mem (const WN *wn) |
| mINT16 | WN_num_actuals (const WN *wn) |
| #define max | ( | a, | |||
| b | ) | ((a > b) ? a : b) |
Definition at line 1042 of file wn_core.h.
Referenced by IPO_CLONE::Copy_Node(), cwh_stab_altentry_TY(), grow_edge(), grow_vertex(), ISA_Create_Lit_Class(), narcar_(), nargum_(), nartab_(), nchara_(), nretca_(), ntabca_(), ntabch_(), rretvr_(), tabarg_(), WN_Create(), WN_MAP_Add_Free_List(), WN_Size(), and WN_Size_and_StartAddress().
| #define MAX_FIELD_ID 0x3ffe |
Intermediate Language Tree Nodes --------------------------------
Description:
This is the basic data structure that all phases of the compiler use to represent programs. It is used to represent expressions, leaves, statments (the side-effecting roots of expression trees commonly called "stats" in other compilers), and also units of hierarchical control flow such as do loops and if statements.
Reserved prefix:
WN for tree nodes
Exported types:
A tree node. Every tree node contains the following fields:
OPCODE opcode
What kind of tree node is this? All information common to nodes of a particular kind is derived from this. For example, we could tell we were looking at a 32 bit multiply by looking at its opcode. Because multiplies are known to have two operands, we know that this node has two operands.
mINT16 kid_count
For every node except OPR_BLOCK, this gives the number of kids of the node. For OPR_BLOCK, the value of this field is undefined. This field is zero for leaf nodes.
Depending on the type of the opcode field, one or more of the following fields is present:
For non-leaf expressions excluding OPR_BLOCK:
WN *kid(i)
Refers to the 'i'th kid
WN *kid0
Refers to the '0'th kid
WN *kid1
Refers to the first kid
WN *kid2
Refers to the second kid
WN *kid3
Refers to the third kid
For OPR_BLOCK:
WN *first
First element of the list of WNs or NULL if the list is empty
WN *last
Last element of the list of WNs or NULL if the list is empty
For all statements:
WN *next If a staement is a child of a OPR_BLOCK, this points to the next statement under the OPR_BLOCK. Otherwise, this is NULL.
WN *prev If a staement is a child of a OPR_BLOCK, this points to the previous statement under the OPR_BLOCK. Otherwise, this is NULL.
For all loads
WN_OFFSET load_offset
A constant offset. offset can also be used (instead of load_offset), but it might be less efficient.
For OPR_LDA
WN_OFFSET lda_offset
A constant offset. offset can also be used (instead of lda_offset), but it might be less efficient.
For all stores
WN_OFFSET store_offset
A constant offset. offset can also be used (instead of store_offset), but it might be less efficient.
For OPR_IDNAME
WN_OFFSET idname_offset
A constant offset. offset can also be used (instead of idname_offset), but it might be less efficient.
For OPR_LABEL, OPR_TRUEBR, OPR_FALSEBR, OPR_GOTO
INT32 label_number
For OPR_LABEL, OPC_PREFETCH, OPC_PREFETCHX OPR_INTRINSIC_CALL and OPR_INTRINSIC_OP
UINT32 flag
For OPR_INTRINSIC_CALL, OPR_INTRINSIC_OP, OPR_IO and OPR_IO_ITEM
INTRINSIC intrinsic
For OPR_INTCONST, OPR_PRAGMA
INT64 const_val
A constant offset.
For OPR_ILOAD, OPR_MLOAD, OPR_ILOADX, OPR_LDID, OPR_ICALL, OPR_ISTORE,OPR_MSTORE,OPR_ISTOREX,OPR_STID,OPR_TAS, OPR_IO_ITEM
struct ty *WN_ty(const WN *wn)
The high level type. This is a function To set the type enter WN_set_ty(WN *wn, TY *ty)
FOR OPR_ILOAD, OPR_ILOADX
struct ty *WN_load_addr_ty
For OPR_CVTL
INT16 cvtl_bits
The number of bits.
For OPR_LDID, OPR_LDA, OPR_IDNAME, OPR_STID, OPR_GOTO, OPR_ALTENOPRY, OPR_LABEL, OPR_FUNC_ENOPRY, OPR_CALL, OPR_CONST, OPR_PICCALL:
ST st
A symbol table index. For the load and store operators, this is the symbol being loaded or stored. For OPR_GOTO this is the name of the label if the label is user defined and null otherwise. For OPR_FUNC_ENTRY and OPR_CALL this is the name of the function. For OPR_CONST, this points to the value of the literal.
For OPR_COMP_GOTO:
INT32 num_entries
How many entries in the computed goto table. A region created after structured control flow is lowered will also need a branch table to keep track of all the possible exits.
For OPR_ARRAY
INT32 num_dim
How many dimensions are in this array.
WN_ESIZE element_size
How big (in bytes) is each element
For OPR_FUNC_ENTRY:
WN *next_func, *prev_func
The next and previous function in a list of functions
In addition to the above, synonyms are provided for the field names of various types of tree nodes. These provide convenient and self documenting names. Please add to this list as appropriate:
For OPR_FUNC_ENTRY:
ST entry_name The name of the entry
WN *formal(i) The 'i'-th formal parameter
INT16 num_formals The number of formal parameters
WN *func_pragmas List of pragmas for the function
WN *func_varrefs List of uplevel var refs for the function
WN *func_body The OPR_BLOCK that represents all the code in the body
WN *entry_first,entry_last The first and last statement in the OPR_BLOCK that represents all the code in the body. This is aliased to indirect through func_body
For OPR_[I]CALL:
WN *actual(i) The 'i'-th actual parameter
INT16 num_actuals The number of actual parameters
For OPR_DO_LOOP:
WN *index WN *start WN *end WN *step WN *do_body
For OPR_DO_WHILE:
For OPR_WHILE_DO:
For OPR_IF
For OPR_REGION:
WN *region_body UINT32 flag Regions use the call_flag to track compilation level info
For OPR_ARRAY
WN *array_index(i) The i'th indexing dimension (i starts at 0)
WN *array_dim(i) The i'th dimension size (i starts at 0)
WN *array_base The base of the array.
WN_OFFSET
This is a signed integer type used in the offset fields of various WNs mentioned above plus in OPC_PRAGMA.
Exported functions:
INT32 WN_Size( WN *wn )
Return the size in bytes of this wn structure
void *WN_StartAddress(WN *wn)
Return the starting address of wn This is not necessarily &wn as we grow wns backwards to minimize size
WN_Is_If_Guard(WN *if_wn) is the if statement a one-trip guard for a do loop WN_Set_If_Guard(WN *if_wn) the if statement is a one-trip guard for a do loop WN_Reset_If_Guard(WN *if_wn) the if statement is not a one-trip guard for a do loop
WN_Label_Is_Break(x) is the label the label for a break from a case statement WN_Set_Label_Is_Break(x) the label is the label for a break from a case statement WN_Reset_Label_Is_Break(x) the label is not the label for a break from a case statement
WN_Is_Volatile_Mem(const WN *wn) Is <wn> a reference to a volatile memory location?
Definition at line 376 of file wn_core.h.
Referenced by WN_set_field_id().
| #define PF_GET_CONFIDENCE | ( | flag | ) | (((flag) >> 28) & 0xf) |
Definition at line 1605 of file wn_core.h.
Referenced by WN2C_prefetch(), and WN2F_prefetch().
| #define PF_GET_READ | ( | flag | ) | (((~(flag)) >> 24) & 0x1) |
Definition at line 1601 of file wn_core.h.
Referenced by Append_Prefetch_Attributes(), W2CF_TRANSLATOR::Prefetch_Attributes_To_String(), WN2C_prefetch(), and WN2F_prefetch().
| #define PF_GET_STRIDE_1L | ( | flag | ) | ((flag) & 0xff) |
Definition at line 1603 of file wn_core.h.
Referenced by Append_Prefetch_Attributes(), W2CF_TRANSLATOR::Prefetch_Attributes_To_String(), WN2C_prefetch(), and WN2F_prefetch().
| #define PF_GET_STRIDE_2L | ( | flag | ) | (((flag) >> 8) & 0xff) |
Definition at line 1604 of file wn_core.h.
Referenced by Append_Prefetch_Attributes(), W2CF_TRANSLATOR::Prefetch_Attributes_To_String(), WN2C_prefetch(), and WN2F_prefetch().
| #define PF_SET_CONFIDENCE | ( | flag, | |||
| x | ) | flag = (((flag)&0x0fffffff) | ((x)&0xf)<<28) |
| #define PF_SET_STRIDE_1L | ( | flag, | |||
| x | ) | flag = (((flag)&0xffffff00) | ((x)&0xff)) |
| #define PF_SET_STRIDE_2L | ( | flag, | |||
| x | ) | flag = (((flag)&0xffff00ff) | ((x)&0xff)<<8) |
| #define UNKNOWN_FIELD_ID 0x3fff |
Definition at line 377 of file wn_core.h.
Referenced by WN_set_field_id().
| #define WN_actual | ( | x, | |||
| i | ) | WN_kid((x),i) |
Definition at line 998 of file wn_core.h.
Referenced by Calc_Actual_Area(), DRA_Mangle_Call_Site(), DRA_Preprocess_Call_Site(), and Set_addr_saved_stmt().
| #define WN_array_base | ( | x | ) | WN_kid((x),0) |
Definition at line 1024 of file wn_core.h.
Referenced by Array_Element_Then_Struct(), Get_Type_From_ArrayOp(), Rewrite_Pragmas_On_Structs(), and Weird_Array_Element().
| #define WN_array_dim | ( | x, | |||
| i | ) | WN_kid((x),i+1) |
Definition at line 1023 of file wn_core.h.
Referenced by cwh_addr_adjust_array(), cwh_addr_insert_bounds_check(), get_base_and_offset(), WN2C_Normalize_Idx_To_Onedim(), and WN2F_Normalize_Idx_To_Onedim().
| #define WN_array_index | ( | x, | |||
| i | ) | WN_kid((x),WN_num_dim(x)+i+1) |
Definition at line 1022 of file wn_core.h.
Referenced by get_base_and_offset(), WN2C_array(), WN2C_Normalize_Idx_To_Onedim(), WN2F_array(), WN2F_Array_Slots(), WN2F_arrsection(), WN2F_Arrsection_Slots(), WN2F_Get_Substring_Info(), and WN2F_Normalize_Idx_To_Onedim().
| #define WN_Asm_Clobbers_Cc | ( | x | ) | (WN_asm_flag(x) & WN_ASM_CLOBBERS_CC) |
Definition at line 1545 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Asm_Clobbers_Mem | ( | x | ) | (WN_asm_flag(x) & WN_ASM_CLOBBERS_MEM) |
Definition at line 1542 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Asm_Volatile | ( | x | ) | (WN_asm_flag(x) & WN_ASM_VOLATILE) |
Definition at line 1539 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_CALL_CONSERVATIVE |
| #define WN_Call_Does_Mem_Alloc | ( | x | ) | (WN_call_flag(x) & WN_CALL_DOES_MEM_ALLOC) |
| #define WN_Call_Does_Mem_Free | ( | x | ) | (WN_call_flag(x) & WN_CALL_DOES_MEM_FREE) |
| #define WN_Call_Dont_Inline | ( | x | ) | (WN_call_flag(x) & WN_CALL_DONT_INLINE) |
Definition at line 1511 of file wn_core.h.
Referenced by WN2C_Callsite_Directives(), and WN2F_Callsite_Directives().
| #define WN_Call_Fortran_Pointer_Rule | ( | x | ) | (WN_call_flag(x) & WN_CALL_FORTRAN_POINTER_RULE) |
| #define WN_Call_Inline | ( | x | ) | (WN_call_flag(x) & WN_CALL_INLINE) |
Definition at line 1508 of file wn_core.h.
Referenced by WN2C_Callsite_Directives(), and WN2F_Callsite_Directives().
| #define WN_Call_Never_Return | ( | x | ) | (WN_call_flag(x) & WN_CALL_NEVER_RETURN) |
| #define WN_Call_No_Side_Effect | ( | x | ) | ((WN_call_flag(x) & (WN_CALL_NON_DATA_MOD | WN_CALL_NON_PARM_MOD | WN_CALL_PARM_MOD)) == 0) |
| #define WN_Call_Non_Data_Mod | ( | x | ) | (WN_call_flag(x) & WN_CALL_NON_DATA_MOD) |
| #define WN_Call_Non_Data_Ref | ( | x | ) | (WN_call_flag(x) & WN_CALL_NON_DATA_REF) |
| #define WN_Call_Non_Parm_Mod | ( | x | ) | (WN_call_flag(x) & WN_CALL_NON_PARM_MOD) |
| #define WN_Call_Non_Parm_Ref | ( | x | ) | (WN_call_flag(x) & WN_CALL_NON_PARM_REF) |
| #define WN_Call_Parm_Mod | ( | x | ) | (WN_call_flag(x) & WN_CALL_PARM_MOD) |
| #define WN_Call_Parm_Ref | ( | x | ) | (WN_call_flag(x) & WN_CALL_PARM_REF) |
| #define WN_Call_Pure | ( | x | ) | ((WN_call_flag(x) & (WN_CALL_NON_DATA_MOD | WN_CALL_NON_PARM_MOD | WN_CALL_PARM_MOD | WN_CALL_NON_DATA_REF | WN_CALL_NON_PARM_REF)) == 0) |
| #define WN_Call_Replace_By_Jump | ( | x | ) | (WN_call_flag(x) & WN_CALL_REPLACE_BY_JUMP) |
| #define WN_CAST_WN_TO_STMT_WN | ( | x | ) | ((STMT_WN *)( (STMT_WN_BASE *)x - 1)) |
Definition at line 929 of file wn_core.h.
Referenced by WN_linenum(), WN_next(), WN_prev(), and WN_StartAddress().
| #define WN_class | ( | x | ) | (ST_class(WN_st(x))) |
Definition at line 1080 of file wn_core.h.
Referenced by WN_Can_Be_Speculative().
| #define WN_Clear_Parm_By_Reference | ( | x | ) | (WN_parm_flag(x) &= ~WN_PARM_BY_REFERENCE) |
| #define WN_Clear_Parm_By_Value | ( | x | ) | (WN_parm_flag(x) &= ~WN_PARM_BY_VALUE) |
| #define WN_do_body | ( | x | ) | WN_kid((x),4) |
Definition at line 1005 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Loop_Srcpos_Range(), Append_Nest_Clauses(), WB_BROWSER::Deps_Loop(), draw_stmt(), ir_put_stmt(), WB_BROWSER::Loops_Walk(), W2CF_TRANSLATOR::Nest_Clauses_To_String(), RAIL::Process_block(), WN2C_do_loop(), WN2F_do_loop(), WN_CreateDO(), WN_TREE_put_stmt(), and ANL_LOOP_CONSTRUCT::Write().
| #define WN_do_loop_info | ( | x | ) | (WN_kid_count(x)>5 ? WN_kid((x),5) : NULL) |
Definition at line 1006 of file wn_core.h.
Referenced by ir_put_stmt(), WN2C_do_loop(), WN2F_do_loop(), and WN_TREE_put_stmt().
| #define WN_else | ( | x | ) | WN_kid((x),2) |
Definition at line 1015 of file wn_core.h.
Referenced by draw_stmt(), ir_put_stmt(), WB_BROWSER::Loops_Walk(), RAIL::Process_block(), WN2C_if(), WN2F_if(), WN_CreateIf(), and WN_TREE_put_stmt().
| #define WN_else_is_empty | ( | x | ) | (WN_first(WN_else(x)) == NULL) |
Definition at line 1016 of file wn_core.h.
Referenced by WB_BROWSER::Loops_Walk(), WN2C_if(), and WN2F_if().
| #define WN_end | ( | x | ) | WN_kid((x),2) |
Definition at line 1003 of file wn_core.h.
Referenced by cwh_io_analyse_io_item(), cwh_io_split_io_items(), draw_stmt(), fei_implied_do(), ir_put_stmt(), WN2C_do_loop(), WN2F_do_loop(), WN2F_implied_do(), WN_CreateDO(), WN_LOOP_UpperBound(), WN_TREE_put_stmt(), and WN_Upper_Bound_Standardize().
| #define WN_entry_first | ( | x | ) | WN_first(WN_func_body(x)) |
Definition at line 996 of file wn_core.h.
Referenced by Get_Preamble_End().
| #define WN_entry_name | ( | x | ) | WN_st_idx(x) |
Definition at line 990 of file wn_core.h.
Referenced by Append_CallSite(), ANL_FUNC_ENTRY::Emit_Original_Construct(), fei_gen_func_entry(), PUinfo_init_pu(), WN2C_call(), WN2C_func_entry(), WN2F_Entry_Point(), WN2F_interface_blk(), WN2F_return(), WN2F_translate_purple_main(), and WN_CreateEntry().
| #define WN_Eq_Is_Logical | ( | x | ) | (WN_eq_logical_flag(x) & WN_EQ_IS_LOGICAL) |
| #define WN_formal | ( | x, | |||
| i | ) | WN_kid((x),i) |
Definition at line 991 of file wn_core.h.
Referenced by Allocate_All_Formals(), Calc_Formal_Area(), DRA_EC_Array_Portion_Parms(), DRA_Mangle_Entry(), DRA_Preprocess_Entry(), Formal_Position(), WN2C_func_entry(), WN2C_translate_purple_main(), WN2F_Entry_Point(), WN2F_Get_Named_Param(), WN2F_interface_blk(), and WN2F_translate_purple_main().
| #define WN_func_body | ( | x | ) | WN_kid((x),WN_kid_count(x)-1) |
Definition at line 995 of file wn_core.h.
Referenced by Allocate_All_Formals(), Backend_Processing(), Calc_Formal_Area(), DRA_Add_Clone(), DRA_EC_Array_Portion_Parms(), DRA_Insert_Pragmas(), DRA_Read_Pragmas(), ANL_FUNC_ENTRY::Emit_Original_Construct(), Fill_Align_Symbol(), Find_Insertion_Point(), Insert_Call(), WB_BROWSER::Loops_Walk(), MemCtr_Add_Local(), RAIL::Process_func_entry(), W2CF_TRANSLATOR::Stid_Lhs_To_String(), W2CF_TRANSLATOR::Transformed_Symname_To_String(), W2C_Outfile_Translate_Pu(), W2C_Translate_Purple_Main(), W2F_Outfile_Translate_Pu(), W2F_Translate_Purple_Main(), WN2C_func_entry(), WN2F_func_entry(), and WN_CreateEntry().
| #define WN_func_pragmas | ( | x | ) | WN_kid((x),WN_kid_count(x)-3) |
Definition at line 993 of file wn_core.h.
Referenced by WN2F_func_entry(), and WN_CreateEntry().
| #define WN_func_varrefs | ( | x | ) | WN_kid((x),WN_kid_count(x)-2) |
Definition at line 994 of file wn_core.h.
Referenced by WN_CreateEntry().
| #define WN_has_sym | ( | x | ) | (OPERATOR_has_sym(WN_operator(x))) |
Definition at line 952 of file wn_core.h.
Referenced by TY_Of_Parameter(), W2F_Outfile_Translate_Pu(), WN2F_call(), WN2F_process_pragma(), and WN_st().
| #define WN_if_test | ( | x | ) | WN_kid((x),0) |
Definition at line 1013 of file wn_core.h.
Referenced by draw_stmt(), ir_put_stmt(), WB_BROWSER::Loops_Walk(), WN2C_if(), WN2F_if(), WN_CreateIf(), and WN_TREE_put_stmt().
| #define WN_index | ( | x | ) | WN_kid((x),0) |
Definition at line 1001 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Write_Loop_Header(), Append_Nest_Clauses(), cwh_io_analyse_io_item(), cwh_io_create_dope_from_item(), cwh_io_split_io_items(), draw_stmt(), fei_implied_do(), ir_put_stmt(), W2CF_TRANSLATOR::Nest_Clauses_To_String(), Whirl_Symbol_Type(), WN2F_do_loop(), WN2F_implied_do(), WN_CreateDO(), WN_LOOP_InductionVariable(), WN_TREE_put_stmt(), WN_Upper_Bound_Standardize(), and ANL_LOOP_CONSTRUCT::Write().
| #define WN_IO_Library | ( | x | ) | ((IOLIB) WN_io_flag(x)) |
Definition at line 1376 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Is_If_Guard | ( | x | ) | (WN_if_flag(x) & WN_IF_IS_GUARD) |
| #define WN_Is_If_MpVersion | ( | x | ) | (WN_if_flag(x) & WN_IF_IS_MPVERSION) |
| #define WN_Label_Is_Break | ( | x | ) | (WN_label_flag(x) & WN_LABEL_BREAK) |
| #define WN_Label_Is_Handler_Begin | ( | x | ) |
(WN_label_flag(x) & \ WN_LABEL_HANDLER_BEGIN)
| #define WN_label_loop_info | ( | x | ) | (WN_kid_count(x)>0 ? WN_kid((x),0) : NULL) |
Definition at line 974 of file wn_core.h.
Referenced by ir_put_stmt(), and WN_TREE_put_stmt().
| #define WN_loop_induction | ( | x | ) | (WN_kid_count(x)>0 ? WN_kid((x),0) : NULL) |
Definition at line 1027 of file wn_core.h.
Referenced by ir_put_stmt(), and WN_TREE_put_stmt().
| #define WN_Loop_Innermost | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_INNERMOST) |
| #define WN_Loop_Nz_Trip | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_NZ_TRIP) |
| #define WN_Loop_Symb_Trip | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_SYMB_TRIP) |
| #define WN_loop_trip | ( | x | ) | (WN_kid_count(x)>1 ? WN_kid((x),1) : NULL) |
Definition at line 1030 of file wn_core.h.
Referenced by ir_put_stmt(), and WN_TREE_put_stmt().
| #define WN_Loop_Unimportant | ( | x | ) |
| #define WN_Loop_Unimportant_Misc | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_UNIMPORTANT_MISC) |
| #define WN_Loop_Winddown_Cache | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_WINDDOWN_CACHE) |
| #define WN_Loop_Winddown_Reg | ( | x | ) | (WN_loop_flag(x) & WN_LOOP_WINDDOWN_REG) |
| #define WN_num_dim | ( | x | ) | (WN_kid_count(x)>>1) |
Definition at line 882 of file wn_core.h.
Referenced by cwh_addr_adjust_array(), cwh_addr_insert_bounds_check(), cwh_dope_from_expression(), get_base_and_offset(), ir_put_wn(), WN2C_array(), WN2C_Normalize_Idx_To_Onedim(), WN2F_array(), WN2F_array_bounds(), WN2F_Array_Slots(), WN2F_arrsection(), WN2F_arrsection_bounds(), WN2F_Arrsection_Slots(), WN2F_Normalize_Idx_To_Onedim(), WN_Create_Generic(), and WN_Equiv().
| #define WN_num_formals | ( | x | ) | (WN_kid_count(x)-3) |
Definition at line 992 of file wn_core.h.
Referenced by Allocate_All_Formals(), Calc_Formal_Area(), DRA_EC_Array_Portion_Parms(), DRA_Mangle_All(), DRA_New_Clone_Sig(), Formal_Position(), WN2C_func_entry(), WN2C_translate_purple_main(), WN2F_Entry_Point(), WN2F_Get_Named_Param(), and WN2F_translate_purple_main().
| #define WN_operator_is | ( | x, | |||
| y | ) | (WN_operator(x)==(y)) |
Definition at line 1077 of file wn_core.h.
Referenced by cwh_io_analyse_index_expr(), cwh_stk_get_num_inquire_items(), cwh_stk_pop_iostmt(), Substitute_1_For_Impdo_Index_Val(), WN_CreateIstorex(), WN_CreatePrefetchx(), WN_RotateIntconst(), and WN_Tas().
| #define WN_Parm_By_Reference | ( | x | ) | (WN_parm_flag(x) & WN_PARM_BY_REFERENCE) |
Definition at line 1410 of file wn_core.h.
Referenced by Find_addr_recur().
| #define WN_PARM_BY_REFERENCE 0x01 |
Definition at line 1378 of file wn_core.h.
Referenced by cwh_intrin_wrap_ref_parm(), DRA_EC_Array_Portion_Parms(), Gen_Free_Cart(), Insert_Alloca(), ir_put_wn(), MemCtr_Add_Common(), MemCtr_Add_Global(), and MemCtr_Add_Local().
| #define WN_Parm_By_Value | ( | x | ) | (WN_parm_flag(x) & WN_PARM_BY_VALUE) |
Definition at line 1413 of file wn_core.h.
Referenced by WN2F_call().
| #define WN_PARM_BY_VALUE 0x02 |
Definition at line 1379 of file wn_core.h.
Referenced by cwh_do_tranformational(), cwh_intrin_wrap_value_parm(), DRA_EC_Array_Portion_Parms(), Gen_Call_Array(), Gen_Malloc_Cart(), ir_put_wn(), MemCtr_Add_Common(), MemCtr_Add_Global(), MemCtr_Add_Local(), simple_intrinsic(), WN_Convert_Shared_To_Local(), WN_Create_PtrEq_Test(), WN_Create_Shared_Load(), WN_Create_Shared_Ptr_Arithmetic(), WN_Create_Shared_Ptr_Diff(), WN_Create_Shared_Store(), WN_Create_StoP_Cvt(), and WN_SetNull_Sptr().
| #define WN_Parm_Check_Contig_Flag | ( | x | ) | (WN_parm_flag(x) & WN_PARM_CHECK_CONTIG_FLAG) |
| #define WN_PARM_CHECK_CONTIG_FLAG 0x080000 |
Definition at line 1407 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Copy_In | ( | x | ) | (WN_parm_flag(x) & WN_PARM_COPY_IN) |
Definition at line 1439 of file wn_core.h.
Referenced by WN2F_parm().
| #define WN_PARM_COPY_IN 0x2000 |
Definition at line 1401 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Copy_In_Copy_out | ( | x | ) | (WN_parm_flag(x) & WN_PARM_BY_REFERENCE) |
| #define WN_PARM_COPY_IN_COPY_OUT 0x4000 |
Definition at line 1402 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Copy_In_Make_Dv | ( | x | ) | (WN_parm_flag(x) & WN_PARM_COPY_IN_MAKE_DV) |
| #define WN_PARM_COPY_IN_MAKE_DV 0x010000 |
Definition at line 1404 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Dummy | ( | x | ) | (WN_parm_flag(x) & WN_PARM_DUMMY) |
Definition at line 1420 of file wn_core.h.
Referenced by WN_num_actuals().
| #define WN_PARM_DUMMY 0x08 |
Definition at line 1382 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_In | ( | x | ) | (WN_parm_flag(x) & WN_PARM_IN) |
Definition at line 1416 of file wn_core.h.
Referenced by ANL_VARLIST::_Get_Lda_Access_Status().
| #define WN_Parm_Is_Killed | ( | x | ) | (WN_parm_flag(x) & WN_PARM_IS_KILLED) |
| #define WN_PARM_IS_KILLED 0x80 |
Definition at line 1390 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Make_Dv | ( | x | ) | (WN_parm_flag(x) & WN_PARM_MAKE_DV) |
| #define WN_PARM_MAKE_DV 0x8000 |
Definition at line 1403 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Make_New_Dv | ( | x | ) | (WN_parm_flag(x) & WN_PARM_MAKE_NEW_DV) |
| #define WN_PARM_MAKE_NEW_DV 0x020000 |
Definition at line 1405 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Not_Exposed_Use | ( | x | ) | (WN_parm_flag(x) & WN_PARM_NOT_EXPOSED_USE) |
| #define WN_PARM_NOT_EXPOSED_USE 0x40 |
Definition at line 1389 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Out | ( | x | ) | (WN_parm_flag(x) & WN_PARM_OUT) |
Definition at line 1418 of file wn_core.h.
Referenced by ANL_VARLIST::_Get_Lda_Access_Status().
| #define WN_PARM_OUT 0x04 |
Definition at line 1381 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Pass_Address | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASS_ADDRESS) |
| #define WN_PARM_PASS_ADDRESS 0x0100 |
Definition at line 1397 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Pass_Address_From_Dv | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASS_ADDRESS_FROM_DV) |
| #define WN_PARM_PASS_ADDRESS_FROM_DV 0x0200 |
Definition at line 1398 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Pass_Dv | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASS_DV) |
| #define WN_PARM_PASS_DV 0x0400 |
Definition at line 1399 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Pass_Dv_Copy | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASS_DV_COPY) |
| #define WN_PARM_PASS_DV_COPY 0x0800 |
Definition at line 1400 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Pass_Section_Address | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASS_SECTION_ADDRESS) |
| #define WN_PARM_PASS_SECTION_ADDRESS 0x040000 |
Definition at line 1406 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Passed_Not_Saved | ( | x | ) | (WN_parm_flag(x) & WN_PARM_PASSED_NOT_SAVED) |
Definition at line 1424 of file wn_core.h.
Referenced by Set_addr_saved_stmt().
| #define WN_PARM_PASSED_NOT_SAVED 0x20 |
Definition at line 1386 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_Parm_Read_Only | ( | x | ) | (WN_parm_flag(x) & WN_PARM_READ_ONLY) |
| #define WN_PARM_READ_ONLY 0x10 |
Definition at line 1384 of file wn_core.h.
Referenced by ir_put_wn().
| #define WN_pf_set_confidence | ( | wn, | |||
| x | ) | WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0x0fffffff) | ((x)&0xf)<<28) |
Definition at line 1627 of file wn_core.h.
Referenced by fei_prefetch_ref().
Definition at line 1628 of file wn_core.h.
Referenced by fei_prefetch_ref().
Definition at line 1623 of file wn_core.h.
Referenced by fei_prefetch_ref().
| #define WN_pf_set_stride_1L | ( | wn, | |||
| x | ) | WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0xffffff00) | ((x)&0xff)) |
Definition at line 1625 of file wn_core.h.
Referenced by fei_prefetch_ref().
| #define WN_pf_set_stride_2L | ( | wn, | |||
| x | ) | WN_prefetch_flag(wn) = (((WN_prefetch_flag(wn))&0xffff00ff) | ((x)&0xff)<<8) |
Definition at line 1626 of file wn_core.h.
Referenced by fei_prefetch_ref().
Definition at line 1624 of file wn_core.h.
Referenced by fei_prefetch_ref().
| #define WN_pragma_compiler_generated | ( | x | ) | ((WN_pragma_flags(x))&WN_PRAGMA_COMPILER_GENERATED) |
Definition at line 983 of file wn_core.h.
Referenced by W2CF_TRANSLATOR::_Skip_Ignored_Clauses(), ANL_REGION_CONSTRUCT::_userEndParallel(), ANL_LOOP_CONSTRUCT::_Write_Loop_Directive(), W2CF_TRANSLATOR::ClauseList_To_String(), ANL_FUNC_ENTRY::Get_Pragma_Srcpos_Range(), Rewrite_Pragmas_On_Structs(), WN2C_is_omp(), and WN2F_is_omp().
| #define WN_pragma_omp | ( | x | ) | ((WN_pragma_flags(x)) & WN_PRAGMA_OMP) |
Definition at line 985 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Write_Loop_Directive(), ANL_PRAGMA_CONSTRUCT::_Write_Pragma_Directives(), ANL_PRAGMA_CONSTRUCT::ANL_PRAGMA_CONSTRUCT(), ANL_REGION_CONSTRUCT::ANL_REGION_CONSTRUCT(), cwh_mp_region(), WN2C_is_omp(), and WN2F_is_omp().
| #define WN_region_body | ( | x | ) | WN_kid((x),2) |
Definition at line 1020 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Loop_Srcpos_Range(), Append_Nest_Clauses(), DRA_Read_Pragmas_In_Block(), ANL_FUNC_ENTRY::Emit_Nested_Original_Constructs(), Find_Alloca(), Get_Implicit_Locals(), Is_Grandparent_Region(), Is_Valid_Doacross(), W2CF_TRANSLATOR::Nest_Clauses_To_String(), RAIL::Process_block(), Rewrite_Pragmas_On_Structs(), WN2C_process_pragma(), WN2C_region(), WN2F_process_pragma(), WN_CreateRegion(), and ANL_REGION_CONSTRUCT::Write().
| #define WN_region_exits | ( | x | ) | WN_kid((x),0) |
Definition at line 1018 of file wn_core.h.
Referenced by WN_CreateRegion().
| #define WN_region_is_EH | ( | x | ) | (WN_region_kind(x) & REGION_KIND_EH) |
Definition at line 973 of file wn_core.h.
Referenced by IPO_CLONE::Clone_Tree().
| #define WN_region_pragmas | ( | x | ) | WN_kid((x),1) |
Definition at line 1019 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Loop_Srcpos_Range(), ANL_REGION_CONSTRUCT::_Region_Srcpos_Range(), ANL_REGION_CONSTRUCT::_userEndParallel(), ANL_LOOP_CONSTRUCT::_Write_Loop_Directive(), ANL_REGION_CONSTRUCT::_Write_Region_Directive(), Accumulate_Expr_PUinfo(), Accumulate_Stmt_PUinfo(), Add_Pragma_To_MP_Regions(), ANL_LOOP_CONSTRUCT::ANL_LOOP_CONSTRUCT(), ANL_REGION_CONSTRUCT::ANL_REGION_CONSTRUCT(), Append_Nest_Clauses(), cwh_block_set_region_pragmas(), cwh_directive_pragma_to_region(), Get_Enclosing_Parallel_Region(), ANL_REGION_CONSTRUCT::Is_ProMpf_Region_Construct(), W2CF_TRANSLATOR::Nest_Clauses_To_String(), Prompf_Id_Type(), Rewrite_Pragmas_On_Structs(), WN2C_func_entry(), WN2C_Is_Loop_Region(), WN2C_Is_Parallel_Region(), WN2C_region(), WN2F_Is_Loop_Region(), WN2F_Is_Parallel_Region(), and WN_CreateRegion().
| #define WN_Reset_Asm_Clobbers_Cc | ( | x | ) | (WN_asm_flag(x) &= ~WN_ASM_CLOBBERS_CC) |
| #define WN_Reset_Asm_Clobbers_Mem | ( | x | ) | (WN_asm_flag(x) &= ~WN_ASM_CLOBBERS_MEM) |
| #define WN_Reset_Asm_Volatile | ( | x | ) | (WN_asm_flag(x) &= ~WN_ASM_VOLATILE) |
| #define WN_Reset_Call_Does_Mem_Alloc | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_DOES_MEM_ALLOC) |
| #define WN_Reset_Call_Does_Mem_Free | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_DOES_MEM_FREE) |
| #define WN_Reset_Call_Dont_Inline | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_DONT_INLINE) |
| #define WN_Reset_Call_Fortran_Pointer_Rule | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_FORTRAN_POINTER_RULE) |
| #define WN_Reset_Call_Inline | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_INLINE) |
| #define WN_Reset_Call_Never_Return | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_NEVER_RETURN) |
| #define WN_Reset_Call_Non_Data_Mod | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_NON_DATA_MOD) |
| #define WN_Reset_Call_Non_Data_Ref | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_NON_DATA_REF) |
| #define WN_Reset_Call_Non_Parm_Mod | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_NON_PARM_MOD) |
| #define WN_Reset_Call_Non_Parm_Ref | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_NON_PARM_REF) |
| #define WN_Reset_Call_Parm_Mod | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_PARM_MOD) |
| #define WN_Reset_Call_Parm_Ref | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_PARM_REF) |
| #define WN_Reset_Call_Replace_By_Jump | ( | x | ) | (WN_call_flag(x) &= ~WN_CALL_REPLACE_BY_JUMP) |
| #define WN_Reset_Eq_Is_Logical | ( | x | ) | (WN_eq_logical_flag(x) &= WN_EQ_IS_LOGICAL) |
| #define WN_Reset_If_Guard | ( | x | ) | (WN_if_flag(x) &= ~(WN_IF_IS_GUARD)) |
Definition at line 1298 of file wn_core.h.
Referenced by WN_CreateIf().
| #define WN_Reset_If_MpVersion | ( | x | ) | (WN_if_flag(x) &= ~(WN_IF_IS_MPVERSION)) |
| #define WN_Reset_Label_Is_Break | ( | x | ) | (WN_label_flag(x) &= ~(WN_LABEL_BREAK)) |
| #define WN_Reset_Label_Is_Handler_Begin | ( | x | ) |
(WN_label_flag(x) &= \ ~(WN_LABEL_HANDLER_BEGIN))
| #define WN_Reset_Loop_Innermost | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_INNERMOST) |
| #define WN_Reset_Loop_Nz_Trip | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_NZ_TRIP) |
| #define WN_Reset_Loop_Symb_Trip | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_SYMB_TRIP) |
| #define WN_Reset_Loop_Unimportant_Misc | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_UNIMPORTANT_MISC) |
| #define WN_Reset_Loop_Winddown_Cache | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_WINDDOWN_CACHE) |
| #define WN_Reset_Loop_Winddown_Reg | ( | x | ) | (WN_loop_flag(x) &= ~WN_LOOP_WINDDOWN_REG) |
| #define WN_reset_pragma_omp | ( | x | ) | ((WN_pragma_flags(x)) &= ~(WN_PRAGMA_OMP)) |
| #define WN_sclass | ( | x | ) | (ST_sclass(WN_st(x))) |
Definition at line 1081 of file wn_core.h.
Referenced by TY_Of_Parameter().
| #define WN_Set_Asm_Clobbers_Cc | ( | x | ) | (WN_asm_flag(x) |= WN_ASM_CLOBBERS_CC) |
| #define WN_Set_Asm_Clobbers_Mem | ( | x | ) | (WN_asm_flag(x) |= WN_ASM_CLOBBERS_MEM) |
| #define WN_Set_Asm_Volatile | ( | x | ) | (WN_asm_flag(x) |= WN_ASM_VOLATILE) |
| #define WN_Set_Call_Default_Flags | ( | x | ) | (WN_call_flag(x) |= WN_CALL_CONSERVATIVE) |
Definition at line 1529 of file wn_core.h.
Referenced by cwh_intrin_call(), cwh_stmt_call_helper(), and fei_stop().
| #define WN_Set_Call_Does_Mem_Alloc | ( | x | ) | (WN_call_flag(x) |= WN_CALL_DOES_MEM_ALLOC) |
Definition at line 1515 of file wn_core.h.
Referenced by cwh_inline_allocate(), and fei_malloc().
| #define WN_Set_Call_Does_Mem_Free | ( | x | ) | (WN_call_flag(x) |= WN_CALL_DOES_MEM_FREE) |
Definition at line 1518 of file wn_core.h.
Referenced by fei_allocate(), and fei_mfree().
| #define WN_Set_Call_Dont_Inline | ( | x | ) | (WN_call_flag(x) |= WN_CALL_DONT_INLINE) |
Definition at line 1512 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Call_Fortran_Pointer_Rule | ( | x | ) | (WN_call_flag(x) |= WN_CALL_FORTRAN_POINTER_RULE) |
Definition at line 1521 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Call_Inline | ( | x | ) | (WN_call_flag(x) |= WN_CALL_INLINE) |
Definition at line 1509 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Call_Never_Return | ( | x | ) | (WN_call_flag(x) |= WN_CALL_NEVER_RETURN) |
Definition at line 1488 of file wn_core.h.
Referenced by cwh_stmt_call_helper(), and fei_stop().
| #define WN_Set_Call_Non_Data_Mod | ( | x | ) | (WN_call_flag(x) |= WN_CALL_NON_DATA_MOD) |
Definition at line 1491 of file wn_core.h.
Referenced by cwh_inline_allocate().
| #define WN_Set_Call_Non_Data_Ref | ( | x | ) | (WN_call_flag(x) |= WN_CALL_NON_DATA_REF) |
| #define WN_Set_Call_Non_Parm_Mod | ( | x | ) | (WN_call_flag(x) |= WN_CALL_NON_PARM_MOD) |
| #define WN_Set_Call_Non_Parm_Ref | ( | x | ) | (WN_call_flag(x) |= WN_CALL_NON_PARM_REF) |
| #define WN_Set_Call_Parm_Mod | ( | x | ) | (WN_call_flag(x) |= WN_CALL_PARM_MOD) |
Definition at line 1503 of file wn_core.h.
Referenced by cwh_inline_allocate(), and fei_allocate().
| #define WN_Set_Call_Parm_Ref | ( | x | ) | (WN_call_flag(x) |= WN_CALL_PARM_REF) |
Definition at line 1506 of file wn_core.h.
Referenced by cwh_inline_allocate(), fei_allocate(), and Set_Call_Side_Effects().
| #define WN_Set_Call_Replace_By_Jump | ( | x | ) | (WN_call_flag(x) |= WN_CALL_REPLACE_BY_JUMP) |
| #define WN_set_do_loop_info | ( | x, | |||
| li | ) | (WN_kid((x),5) = (li)) |
Definition at line 1008 of file wn_core.h.
Referenced by WN_CreateDO().
| #define WN_Set_Eq_Is_Logical | ( | x | ) | (WN_eq_logical_flag(x) |= WN_EQ_IS_LOGICAL) |
Definition at line 1456 of file wn_core.h.
Referenced by fei_leqv(), and fei_lxor().
| #define WN_Set_If_Guard | ( | x | ) | (WN_if_flag(x) |= WN_IF_IS_GUARD) |
| #define WN_Set_If_MpVersion | ( | x | ) | (WN_if_flag(x) |= WN_IF_IS_MPVERSION) |
| #define WN_Set_IO_Library | ( | x, | |||
| y | ) | (WN_io_flag(x) = (y)) |
Definition at line 1375 of file wn_core.h.
Referenced by WN_CreateIo().
| #define WN_Set_Label_Is_Break | ( | x | ) | (WN_label_flag(x) |= WN_LABEL_BREAK) |
| #define WN_Set_Label_Is_Handler_Begin | ( | x | ) |
(WN_label_flag(x) |= \ WN_LABEL_HANDLER_BEGIN)
| #define WN_set_label_loop_info | ( | x, | |||
| li | ) | (WN_kid0(x) = (li)) |
Definition at line 976 of file wn_core.h.
Referenced by WN_CreateLabel().
| #define WN_set_loop_induction | ( | x, | |||
| ind | ) | (WN_kid((x),0) = (ind)) |
Definition at line 1029 of file wn_core.h.
Referenced by WN_CreateLoopInfo().
| #define WN_Set_Loop_Innermost | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_INNERMOST) |
| #define WN_Set_Loop_Nz_Trip | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_NZ_TRIP) |
| #define WN_Set_Loop_Symb_Trip | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_SYMB_TRIP) |
| #define WN_set_loop_trip | ( | x, | |||
| trip | ) | (WN_kid((x),1) = (trip)) |
Definition at line 1032 of file wn_core.h.
Referenced by WN_CreateLoopInfo().
| #define WN_Set_Loop_Unimportant_Misc | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_UNIMPORTANT_MISC) |
| #define WN_Set_Loop_Winddown_Cache | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_WINDDOWN_CACHE) |
| #define WN_Set_Loop_Winddown_Reg | ( | x | ) | (WN_loop_flag(x) |= WN_LOOP_WINDDOWN_REG) |
| #define WN_Set_Parm_By_Reference | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_BY_REFERENCE) |
| #define WN_Set_Parm_By_Value | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_BY_VALUE) |
| #define WN_Set_Parm_Check_Contig_Flag | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_CHECK_CONTIG_FLAG) |
Definition at line 1452 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Copy_In | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_COPY_IN) |
Definition at line 1440 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Copy_In_Copy_out | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_COPY_IN_COPY_OUT) |
Definition at line 1442 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Copy_In_Make_Dv | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_COPY_IN_MAKE_DV) |
Definition at line 1446 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Dummy | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_DUMMY) |
Definition at line 1421 of file wn_core.h.
Referenced by fei_allocate().
| #define WN_Set_Parm_In | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_IN) |
| #define WN_Set_Parm_Is_Killed | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_IS_KILLED) |
| #define WN_Set_Parm_Make_Dv | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_MAKE_DV) |
Definition at line 1444 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Make_New_Dv | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_MAKE_NEW_DV) |
Definition at line 1448 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Not_Exposed_Use | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_NOT_EXPOSED_USE) |
| #define WN_Set_Parm_Out | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_OUT) |
| #define WN_Set_Parm_Pass_Address | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASS_ADDRESS) |
Definition at line 1432 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Pass_Address_From_Dv | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASS_ADDRESS_FROM_DV) |
Definition at line 1434 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Pass_Dv | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASS_DV) |
Definition at line 1436 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Pass_Dv_Copy | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASS_DV_COPY) |
Definition at line 1438 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Pass_Section_Address | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASS_SECTION_ADDRESS) |
Definition at line 1450 of file wn_core.h.
Referenced by cwh_stmt_call_helper().
| #define WN_Set_Parm_Passed_Not_Saved | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_PASSED_NOT_SAVED) |
| #define WN_Set_Parm_Read_Only | ( | x | ) | (WN_parm_flag(x) |= WN_PARM_READ_ONLY) |
| #define WN_set_pragma_compiler_generated | ( | x | ) | ((WN_pragma_flags(x))|=WN_PRAGMA_COMPILER_GENERATED) |
Definition at line 984 of file wn_core.h.
Referenced by Add_Pragma_To_MP_Regions(), and DRA_Insert_Pragmas().
| #define WN_set_pragma_omp | ( | x | ) | ((WN_pragma_flags(x)) |= WN_PRAGMA_OMP) |
Definition at line 986 of file wn_core.h.
Referenced by cwh_directive_add_pragma_to_loop(), cwh_directive_pop_and_nowait(), cwh_mp_region(), cwh_stmt_add_pragma(), cwh_stmt_add_xpragma(), fei_barrier_open_mp(), fei_critical_open_mp(), fei_endcritical_open_mp(), fei_endordered_open_mp(), fei_flush_open_mp(), fei_ordered_open_mp(), and fei_task_var().
| #define WN_start | ( | x | ) | WN_kid((x),1) |
Definition at line 1002 of file wn_core.h.
Referenced by cwh_io_analyse_io_item(), cwh_io_split_io_items(), draw_stmt(), fei_implied_do(), ir_put_stmt(), WN2C_do_loop(), WN2F_do_loop(), WN2F_implied_do(), WN_CreateDO(), WN_LOOP_LowerBound(), and WN_TREE_put_stmt().
| #define WN_step | ( | x | ) | WN_kid((x),3) |
Definition at line 1004 of file wn_core.h.
Referenced by cwh_io_analyse_io_item(), cwh_io_split_io_items(), draw_stmt(), fei_implied_do(), ir_put_stmt(), WN2C_do_loop(), WN2F_do_loop(), WN2F_implied_do(), WN_CreateDO(), WN_LOOP_Increment(), and WN_TREE_put_stmt().
| #define WN_switch_default | ( | x | ) | WN_kid((x),2) |
Definition at line 1037 of file wn_core.h.
Referenced by WN2C_switch(), and WN_CreateSwitch().
| #define WN_switch_table | ( | x | ) | WN_kid((x),1) |
Definition at line 1036 of file wn_core.h.
Referenced by WN2C_switch(), and WN_CreateSwitch().
| #define WN_switch_test | ( | x | ) | WN_kid((x),0) |
Definition at line 1035 of file wn_core.h.
Referenced by WN2C_switch(), and WN_CreateSwitch().
| #define WN_then | ( | x | ) | WN_kid((x),1) |
Definition at line 1014 of file wn_core.h.
Referenced by DRA_EC_Array_Portion_Parms(), draw_stmt(), ir_put_stmt(), WB_BROWSER::Loops_Walk(), RAIL::Process_block(), WN2C_if(), WN2F_if(), WN_CreateIf(), and WN_TREE_put_stmt().
| #define WN_type | ( | x | ) | (ST_type(WN_st(x))) |
Definition at line 1082 of file wn_core.h.
Referenced by TY_Of_Expr().
| #define WN_while_body | ( | x | ) | WN_kid((x),1) |
Definition at line 1011 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Loop_Srcpos_Range(), WB_BROWSER::Deps_Loop(), WB_BROWSER::Loops_Walk(), RAIL::Process_block(), W2CF_TRANSLATOR::Whileloop_Looks_Like_Forloop(), WN2C_do_while(), WN2C_while_do(), WN2F_do_while(), WN2F_while_do(), WN_CreateDoWhile(), WN_CreateWhileDo(), and ANL_LOOP_CONSTRUCT::Write().
| #define WN_while_test | ( | x | ) | WN_kid((x),0) |
Definition at line 1010 of file wn_core.h.
Referenced by ANL_LOOP_CONSTRUCT::_Write_Loop_Header(), W2CF_TRANSLATOR::Whileloop_Looks_Like_Forloop(), WN2C_do_while(), WN2C_while_do(), WN2F_do_while(), WN2F_while_do(), WN_CreateDoWhile(), and WN_CreateWhileDo().
| enum REGION_KIND |
| char* WN_asm_input_constraint | ( | const WN * | wn | ) | [inline] |
Definition at line 969 of file wn_core.h.
References ST_name(), and WN_st().
Referenced by ir_put_wn().

Definition at line 782 of file wn_core.h.
References WN::asm_fields, and WN::u3.
Definition at line 781 of file wn_core.h.
References WN::asm_fields, and WN::u3.
Definition at line 778 of file wn_core.h.
References WN::asm_fields, and WN::u3.
Definition at line 777 of file wn_core.h.
References WN::asm_fields, and WN::u3.
Definition at line 779 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by ir_put_wn(), and WN_CreateAsm_Input().
| char* WN_asm_string | ( | const WN * | wn | ) | [inline] |
Definition at line 968 of file wn_core.h.
References ST_name(), and WN_st().
Referenced by ir_put_wn().

Definition at line 750 of file wn_core.h.
References WN::common, and WN::kid_count.
Referenced by ir_put_wn(), WN2C_compose_bits(), and WN2C_extract_bits().
Definition at line 751 of file wn_core.h.
References WN::common, and WN::kid_count.
Referenced by Actual_data_size(), ir_put_wn(), WN2C_compose_bits(), and WN2C_extract_bits().
Definition at line 689 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by ir_put_wn(), WN_flag(), and WN_set_flag().
Definition at line 770 of file wn_core.h.
References WN::const_val, and WN::u3.
Definition at line 769 of file wn_core.h.
References WN::const_val, and WN::u3.
Referenced by W2CF_TRANSLATOR::_Rev_Clause_Exprs_To_String(), Actual_data_size(), Append_Clause_Expressions(), cleanUpPUInfo(), cwh_addr_do_bounds_check(), cwh_addr_nonc_recast(), cwh_dope_initialize(), cwh_io_null_address(), cwh_io_split_io_items(), cwh_io_split_io_statement(), cwh_reorder(), cwh_stab_const_ST(), cwh_stk_is_byte_STR(), cwh_stmt_insert_conformance_check(), cwh_stmt_select_case_char(), cwh_types_array_temp_TY(), cwh_types_mk_character_TY(), Exp_To_Linex_Array(), F90_Get_Dim(), fei_addr_con(), fei_allocate(), fei_array_dimen(), fei_assert(), fei_blocking_size(), fei_co_array_dimen(), fei_control_list(), fei_doloop(), fei_fcd(), fei_fission(), fei_fuse(), fei_new_select_case(), fei_prefetch_ref(), fei_redistribute(), fei_unroll(), WN_Verifier::Field_id_valid(), get_base_and_offset(), ir_put_wn(), Is_Constant_Tree(), TCON_from_stack(), WB_BROWSER::This_Node(), WN2C_address_add(), WN2C_infix_op(), WN2C_intconst(), WN2C_is_pointer_diff(), WN2C_switch(), WN2F_array(), WN2F_arrsection(), WN2F_casegoto(), WN2F_eq(), WN2F_Expr_Plus_Literal(), LOC_INFO::WN2F_Find_And_Mark_Nested_Address(), WN2F_Get_DoLoop_Bound(), WN2F_Get_Next_LoopBoundOp(), WN2F_Initiate_OneInt(), WN2F_Initiate_ZeroInt(), WN2F_intconst(), WN2F_Intr_Funcall(), WN2F_intrinsic_call(), WN2F_io_unit(), WN2F_ios_cr(), WN2F_ne(), WN2F_src_triplet(), WN2F_String_Argument(), WN2F_Substring(), WN2F_Sum_Offsets(), WN2F_triplet(), WN_Can_Be_Speculative(), WN_Create_Generic(), WN_CreateCasegoto(), WN_CreateIntconst(), WN_CreateIstore(), WN_CreatePStid(), WN_CreatePstore(), WN_CreateStid(), WN_Equiv(), WN_Get_PtrAdd_Intconst(), WN_object_size(), WN_RotateIntconst(), WN_Solve_For(), and WN_Tree_Type().
Definition at line 798 of file wn_core.h.
References WN::u1u2.
Referenced by IPO_CLONE::Copy_Node(), and WN_CopyNode().
Definition at line 799 of file wn_core.h.
References WN::u3.
Referenced by IPO_CLONE::Copy_Node(), and WN_CopyNode().
Definition at line 685 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by Actual_data_size(), ir_put_wn(), WN_Create_Generic(), WN_CreateCvtl(), WN_CreateIstore(), WN_CreatePStid(), WN_CreatePstore(), WN_CreateStid(), WN_Cvtl_Ty(), WN_Equiv(), WN_SimpCreateCvtl(), WN_Simplify_Rebuild_Expr_Tree(), and WN_Simplify_Tree().
Definition at line 753 of file wn_core.h.
References WN::common, and WN::desc.
Referenced by Actual_data_size(), WN_Verifier::Field_id_valid(), Fill_Align_Symbol(), Rewrite_Structs_In_MPRegion(), Whirl2Src_Translate_Istore_Str(), WN_Create_Shared_Load(), WN_Create_Shared_Store(), WN_object_size(), and WN_Upper_Bound_Standardize().
Definition at line 740 of file wn_core.h.
References WN::element_size, and WN::u1u2.
Definition at line 739 of file wn_core.h.
References WN::element_size, and WN::u1u2.
Referenced by cwh_addr_adjust_array(), cwh_addr_array(), cwh_addr_array1(), cwh_addr_nonc_recast(), cwh_addr_substr_util(), cwh_addr_temp_section(), cwh_dope_from_expression(), cwh_io_conv_array_to_dope(), cwh_io_conv_arrsection_to_dope(), fei_nseq_subscr(), get_base_and_offset(), ir_put_wn(), WN2C_array(), WN2F_array(), WN2F_array_bounds(), WN2F_arrsection(), WN2F_arrsection_bounds(), WN_Create_Generic(), WN_Equiv(), and WN_Tree_Type().
Definition at line 737 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by IPO_CLONE::Clone_Tree(), IPO_CLONE::Fix_INITO(), ir_put_wn(), Update_EHRegion_Inito_Used(), WN_CopyNode(), WN_CreateExcScopeBegin(), WN_CreateRegion(), and WN_Rename_Duplicate_Labels().
Definition at line 748 of file wn_core.h.
References WN::common, and WN::kid_count.
Referenced by WN_Verifier::Field_id_valid(), field_type(), ir_put_wn(), Spill_And_Take_Address(), WN2C_Append_Assignment(), WN2C_compgoto(), WN2C_istore(), WN2C_lda(), WN2C_ldid(), WN2C_mload(), WN2C_mstore(), WN2C_stid(), WN2C_switch(), WN2F_strctfld(), WN_CopyNode(), WN_Create_Shared_Load(), WN_Create_Shared_Store(), WN_get_tld_type(), WN_object_ty(), WN_Simplify_Rebuild_Expr_Tree(), WN_Simplify_Tree(), and WN_Tree_Type().
Definition at line 773 of file wn_core.h.
References WN::block, and WN::u3.
Referenced by ANL_LOOP_CONSTRUCT::_Loop_Srcpos_Range(), ANL_REGION_CONSTRUCT::_Region_Srcpos_Range(), ANL_REGION_CONSTRUCT::_userEndParallel(), ANL_LOOP_CONSTRUCT::_Write_Loop_Directive(), ANL_REGION_CONSTRUCT::_Write_Region_Directive(), PROMPF_LINES::Add_Lines(), Add_Pragma_To_MP_Regions(), WB_BROWSER::Address_Walk(), WB_BROWSER::Alias_Walk(), Allocate_All_Formals(), ANL_LOOP_CONSTRUCT::ANL_LOOP_CONSTRUCT(), ANL_REGION_CONSTRUCT::ANL_REGION_CONSTRUCT(), Append_Nest_Clauses(), Calc_Formal_Area(), PROMPF_INFO::Check_Traverse(), IPO_CLONE::Clone_Tree(), Collect_Goodies(), cwh_stmt_conformance_checks_walk(), WN_TREE_ITER< PRE_ORDER, WHIRL >::Delete(), DRA_Collect_Commons(), DRA_EC_Array_Portion_Parms(), DRA_Read_Pragmas_In_Block(), draw_stmt(), ANL_FUNC_ENTRY::Emit_Nested_Original_Constructs(), ANL_FUNC_ENTRY::Emit_Original_Construct(), F90_Size_Walk(), Find_Alloca(), Find_Insertion_Point(), WB_BROWSER::Find_Operator_Walk(), WB_BROWSER::Find_Walk(), fix_tree(), Get_Enclosing_Parallel_Region(), Get_Implicit_Locals(), GetStSet(), GetTmpVarTransInfo(), WN_TREE_ITER< PRE_ORDER, WHIRL >::Insert(), Insert_Call(), IPA_WN_DELETE_Tree(), ir_b_write_tree(), ir_put_stmt(), Is_Grandparent_Region(), ANL_REGION_CONSTRUCT::Is_ProMpf_Region_Construct(), Is_Valid_Doacross(), WB_BROWSER::Loops_Walk(), Max_Arg_Area_Bytes(), MemCtr_Add_Local(), W2CF_TRANSLATOR::Nest_Clauses_To_String(), Node_Count(), Parentize(), RAIL::Process_block(), Process_Fill_Align_Pragmas_Recursive(), process_wn(), Prompf_Assign_Ids_Traverse(), Prompf_Id_Type(), PROMPF_INFO::Prompf_Info_Traverse(), WN_Verifier::Proper_Block_Structure(), WN_TREE_ITER_base< WN * >::Push(), Recompute_addr_saved_stmt(), WB_BROWSER::Reduction_Walk(), References_Some_Label(), REGION_search_block(), Remove_Skips(), WN_TREE_ITER_base< WN * >::Replace(), Restore_Skips(), Rewrite_Pragmas_On_Structs(), Rewrite_Structs_In_MPRegion(), Set_addr_saved_stmt(), ST2F_func_header(), WB_BROWSER::Statements(), Tree_Equiv(), Update_EHRegion_Inito_Used(), Verify_addr_flags_stmt(), W2CF_Parentize(), WB_Parent_Search(), WN_TREE_ITER< POST_ORDER, WHIRL >::Wind(), WN2C_block(), WN2C_comma(), WN2C_compgoto(), WN2C_func_entry(), WN2C_if(), WN2C_Is_Loop_Region(), WN2C_Is_Parallel_Region(), WN2C_rcomma(), WN2C_region(), WN2C_switch(), WN2F_block(), WN2F_compgoto(), WN2F_func_entry(), WN2F_if(), WN2F_Is_Loop_Region(), WN2F_Is_Parallel_Region(), WN2F_switch(), WN_block_element(), WN_COPY_Tree(), WN_COPY_Tree_With_Map(), WN_CreateBlock(), WN_DELETE_FromBlock(), WN_DELETE_Tree(), WN_EXTRACT_FromBlock(), WN_EXTRACT_ItemsFromBlock(), WN_INSERT_BlockAfter(), WN_INSERT_BlockBefore(), WN_Simplify_Tree(), WN_Verifier::WN_traverse_tree(), WN_TREE_ITER< PRE_ORDER, WHIRL >::WN_TREE_next(), WN_TREE_put_stmt(), ANL_REGION_CONSTRUCT::Write(), and ANL_LOOP_CONSTRUCT::Write().
Definition at line 1162 of file wn_core.h.
References OPR_ASM_STMT, OPR_CALL, OPR_EQ, OPR_ICALL, OPR_IF, OPR_INTRINSIC_CALL, OPR_INTRINSIC_OP, OPR_IO, OPR_LOOP_INFO, OPR_NE, OPR_PARM, OPR_PICCALL, OPR_PREFETCH, OPR_PREFETCHX, OPR_REGION, WN_asm_flag(), WN_call_flag(), WN_eq_logical_flag(), WN_if_flag(), WN_io_flag(), WN_label_flag(), WN_loop_flag(), WN_operator(), and WN_prefetch_flag().
Referenced by ir_put_wn(), and WN_Equiv().

Definition at line 1265 of file wn_core.h.
References OPCODE_has_next_prev(), WN_linenum(), and WN_opcode().
Referenced by cwh_stmt_insert_conformance_check(), DRA_Clone_Instantiate(), DRA_EC_Array_Portion_Parms(), DRA_Mangle_Call_Site(), DRA_New_Clone_Sig(), DRA_Read_Pragmas_In_Block(), Emit_To_PUinfo_Pragmas(), Fill_Align_Symbol(), Gen_Call_Array(), Gen_Free_Cart(), Gen_Malloc_Cart(), ir_put_stmt(), ir_put_wn(), New_DRA(), Put_Pragma_Start_With_Caveats(), WN2C_do_loop(), WN2C_do_while(), WN2C_func_entry(), WN2C_if(), WN2C_region(), WN2C_Translate_Comma_Sequence(), WN2C_translate_purple_main(), WN2C_Translate_Stmt_Sequence(), WN2C_while_do(), WN2F_agoto(), WN2F_call(), WN2F_compgoto(), WN2F_condbr(), WN2F_do_loop(), WN2F_do_while(), WN2F_func_entry(), WN2F_goto(), WN2F_if(), WN2F_intrinsic_call(), WN2F_label(), WN2F_OMP_or_PAR_Directive_Newline(), WN2F_pragma_list_end(), WN2F_process_pragma(), WN2F_return(), WN2F_return_val(), WN2F_translate_purple_main(), WN2F_unsupported(), WN2F_where(), WN2F_while_do(), WN_CreateRegion(), and WN_TREE_put_stmt().

Definition at line 679 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by Append_Nest_Clauses(), cwh_io_split_io_items(), WN2F_do_loop(), WN_CreateIdname(), and wn_loop_get_st_ofst().
Definition at line 725 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by Append_CallSite(), Calc_Actual_Area(), Collect_Goodies(), cwh_io_analyse_io_item(), cwh_io_create_dope_from_item(), cwh_stk_is_byte_STR(), cwh_stmt_conformance_checks_walk(), F90_Size_Walk(), fei_stop(), Gen_Free_Cart(), Gen_Malloc_Cart(), Insert_Alloca(), ir_put_wn(), MemCtr_Add_Local(), WN2C_call(), WN2C_intrinsic_op(), WN2F_call(), WN2F_Intr_Funcall(), WN2F_intrinsic_call(), WN2F_intrinsic_op(), WN2F_String_Argument(), WN_Convert_Shared_To_Local(), WN_Create_Generic(), WN_Create_Intrinsic(), WN_Create_PtrEq_Test(), WN_Create_Shared_Load(), WN_Create_Shared_Ptr_Arithmetic(), WN_Create_Shared_Ptr_Diff(), WN_Create_Shared_Store(), WN_Create_StoP_Cvt(), WN_Equiv(), WN_SetNull_Sptr(), WN_Simplify_Rebuild_Expr_Tree(), WN_Simplify_Tree(), WN_Solve_For(), and WN_Tree_Type().
Definition at line 729 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by ANL_VARLIST::_Get_Io_Item_Lda_Access_Status(), Count_WN_Node(), cwh_io_analyse_io_statement(), cwh_io_create_dopes(), cwh_io_ioitem(), cwh_io_split_io_items(), cwh_io_split_io_statement(), fei_IO_list(), WN2F_io(), WN2F_io_format(), WN2F_io_unit(), WN2F_ios_cr(), WN2F_ios_definefile(), WN_CreateIoItem0(), WN_CreateIoItem1(), WN_CreateIoItem2(), WN_CreateIoItem3(), and WN_CreateIoItemN().
| IOSTATEMENT& WN_io_statement | ( | WN * | wn | ) | [inline] |
| IOSTATEMENT WN_io_statement | ( | const WN * | wn | ) | [inline] |
Definition at line 727 of file wn_core.h.
References WN::u1u2, and WN::uu.
Referenced by ANL_VARLIST::_Get_Io_Item_Lda_Access_Status(), cwh_io_split_io_statement(), WN2F_ios_definefile(), and WN_CreateIo().
Definition at line 1276 of file wn_core.h.
References DevAssert, FALSE, OPCODE_has_1ty(), OPCODE_has_2ty(), OPCODE_operator(), OPR_ISTORE, OPR_MSTORE, OPR_PSTORE, TY_is_volatile(), TY_pointed(), Ty_Table, WN_load_addr_ty(), WN_opcode(), and WN_ty().
Referenced by simp_cvt(), and WN_Can_Be_Speculative().

Definition at line 758 of file wn_core.h.
References WN::kids, and WN::u3.
Referenced by PROMPF_LINES::Add_Lines(), WB_BROWSER::Address_Walk(), WB_BROWSER::Alias_Walk(), arrsection_to_array(), WN_Verifier::Call_children_are_PARM(), PROMPF_INFO::Check_Traverse(), cleanUpPUInfo(), IPO_CLONE::Clone_Tree(), Collect_Goodies(), collectst(), Count_WN_Node(), cwh_addr_add_bound(), cwh_addr_array(), cwh_addr_array1(), cwh_addr_f90_pointer_reference_ls(), cwh_addr_nonc_recast(), cwh_addr_WN_ST(), cwh_directive_barrier_insert(), cwh_dope_from_expression(), cwh_expr_extract_arrayexp(), cwh_inline_allocate(), cwh_io_analyse_arr(), cwh_io_analyse_index_expr(), cwh_io_analyse_io_item(), cwh_io_analyse_io_statement(), cwh_io_conv_array_to_dope(), cwh_io_conv_arrsection_to_dope(), cwh_io_create_dope_from_item(), cwh_io_create_dopes(), cwh_io_no_desc(), cwh_io_search_implied_do_index(), cwh_io_split_io_items(), cwh_io_split_io_statement(), cwh_stk_pop_iostmt(), cwh_stmt_call_helper(), cwh_stmt_conformance_checks_walk(), cwh_stmt_init_pu(), cwh_types_array_temp_TY(), cwh_types_WN_TY(), DRA_Collect_Commons(), DRA_EC_Array_Portion_Parms(), DRA_Insert_Pragmas(), DRA_Mangle_Call_Site(), DRA_New_Clone_Sig(), DRA_Preprocess_Call_Site(), draw_expr(), draw_stmt(), F90_Size_Walk(), F90_Wrap_ARREXP(), fei_allocate(), fei_array_construct(), fei_close(), fei_control_list(), fei_entry_pt(), fei_gen_func_entry(), fei_implied_do(), fei_inquire(), fei_interface(), fei_iolength(), fei_namelist(), fei_noio_implied_do(), fei_nullify(), fei_open(), fei_use(), Find_addr_recur(), Find_Insertion_Point(), WB_BROWSER::Find_Operator_Walk(), WB_BROWSER::Find_Walk(), fix_tree(), Gen_Call_Array(), Get_Implicit_Locals(), GetStSet(), IPA_WN_DELETE_Tree(), ir_b_write_tree(), ir_put_expr(), ir_put_stmt(), Is_Exp_Linexable(), Is_nested_call(), WB_BROWSER::Kids(), WB_BROWSER::Loops_Walk(), Max_Arg_Area_Bytes(), New_DRA(), Node_Count(), Parentize(), Process_Fill_Align_Pragmas_Recursive(), process_wn(), Prompf_Assign_Ids_Traverse(), PROMPF_INFO::Prompf_Info_Traverse(), Recompute_addr_saved_stmt(), WB_BROWSER::Reduction_Walk(), References_Some_Label(), WN_TREE_ITER_base< WN * >::Replace(), Rewrite_Pragmas_On_Structs(), Rewrite_Structs_In_MPRegion(), Set_addr_saved_expr(), Set_addr_saved_stmt(), ST2F_func_header(), Substitute_1_For_Impdo_Index_Val(), Tree_Equiv(), WN_TREE_ITER< PRE_ORDER, WHIRL >::Unwind(), Update_EHRegion_Inito_Used(), Verify_addr_flags_stmt(), Verify_addr_saved_expr(), W2CF_Parentize(), WB_Parent_Search(), WN2C_call(), WN2C_compgoto(), WN2C_dealloca(), WN2C_intrinsic_op(), WN2C_istorex(), WN2C_madd(), WN2C_mstore(), WN2C_msub(), WN2C_nmadd(), WN2C_nmsub(), WN2C_select(), WN2F_Append_IO_CtrlList(), WN2F_Append_IO_List(), WN2F_ar_construct(), WN2F_Binary_Substr_Op(), WN2F_bnor(), WN2F_call(), WN2F_compgoto(), WN2F_dealloca(), WN2F_Get_DoLoop_Bound(), WN2F_Get_Next_LoopBoundOp(), WN2F_implied_do(), WN2F_interface_blk(), WN2F_Intr_Funcall(), WN2F_intrinsic_call(), WN2F_io(), WN2F_io_format(), WN2F_io_list(), WN2F_ios_cr(), WN2F_ios_decode(), WN2F_ios_definefile(), WN2F_ios_encode(), WN2F_ios_inqlength(), WN2F_ios_print(), WN2F_ios_read(), WN2F_ios_rewrite(), WN2F_ios_write(), WN2F_lshr(), WN2F_madd(), WN2F_msub(), WN2F_namelist_stmt(), WN2F_nmadd(), WN2F_nmsub(), WN2F_noio_implied_do(), WN2F_nullify_stmt(), WN2F_recip(), WN2F_return(), WN2F_rsqrt(), WN_COPY_Tree(), WN_COPY_Tree_With_Map(), WN_Create_Intrinsic(), WN_CreateAssert(), WN_CreateCompgoto(), WN_CreateExp3(), WN_CreateIoItem3(), WN_CreateIstorex(), WN_CreateMstore(), WN_CreateXgoto(), WN_DELETE_Tree(), WN_Expr_Can_Be_Speculative(), WN_has_side_effects(), WN_num_actuals(), WN_SimpCreateExp3(), WN_Simplify_Rebuild_Expr_Tree(), WN_Simplify_Tree(), WN_Symbol_Count(), WN_Verifier::WN_traverse_tree(), WN_TREE_ITER< POST_ORDER, WHIRL >::WN_TREE_next(), WN_TREE_put_stmt(), WN_WALK_SCFNext(), WN_WALK_StmtNext(), and WN_WALK_TreeNext().
Definition at line 760 of file wn_core.h.
References WN::kids, and WN::u3.
Referenced by W2CF_TRANSLATOR::_Get_Expr_Pointed_Ty(), ANL_VARLIST::_Get_Lda_Access_Status(), W2CF_TRANSLATOR::_Is_Ptr_Expr(), W2CF_TRANSLATOR::_Rev_Clause_Exprs_To_String(), ANL_PRAGMA_ATTRIBUTE::_Write_Distribution(), W2CF_TRANSLATOR::A_Pragma_Expr_To_String(), Accumulate_Expr_PUinfo(), Actual_data_size(), Append_Array_Segment(), Append_Clause_Expressions(), Append_Distribution(), Append_Pragma_Clauses(), Append_Prefetch_Attributes(), Append_ReturnSite(), Array_Element_Then_Struct(), arrsection_to_array(), cleanUpPUInfo(), Collect_Goodies(), Count_WN_Node(), cwh_addr_do_bounds_check(), cwh_addr_f90_pointer_reference(), cwh_addr_f90_pointer_reference_ls(), cwh_addr_find_address(), cwh_addr_find_section(), cwh_addr_nonc_recast(), cwh_addr_nonc_util(), cwh_addr_src_triplet(), cwh_addr_triplet(), cwh_addr_ubound_from_triplet(), cwh_addr_WN_ST(), cwh_addr_zero_based(), cwh_dope_from_expression(), cwh_expr_extract_arrayexp(), cwh_expr_restore_arrayexp(), cwh_io_analyse_arr(), cwh_io_analyse_index_expr(), cwh_io_analyse_io_item(), cwh_io_conv_array_to_dope(), cwh_io_conv_arrsection_to_dope(), cwh_io_create_dope_from_item(), cwh_io_no_desc(), cwh_io_split_io_items(), cwh_io_split_io_statement(), cwh_mp_region(), cwh_stk_is_byte_STR(), cwh_stmt_add_parallel_pragmas(), cwh_stmt_add_xpragma(), cwh_stmt_call_helper(), cwh_types_copyin_pragma(), cwh_types_WN_TY(), WB_BROWSER::Dep_Symbol(), Does_Stmt_Store_From_Preg(), Exp_To_Linex_Array(), F90_Get_Dim(), F90_Size_Walk(), F90_Wrap_ARREXP(), fei_allocate(), fei_arg_addr(), fei_arith_goto(), fei_close(), fei_control_list(), fei_copyin_bound(), fei_descriptor(), fei_field_dot(), fei_inquire(), fei_iolength(), fei_new_select(), fei_open(), fei_redistribute(), fei_seq_subscr(), fei_stop(), fei_task_var(), fei_where(), Fill_Align_Symbol(), Find_addr_recur(), Find_Address_Base(), Find_Insertion_Point(), Find_Reduction_Symbol(), find_stmt(), Gen_Free_Cart(), Gen_Malloc_Cart(), get_base_and_offset(), Insert_Alloca(), ANL_VARLIST::Insert_Var_Refs(), Is_Constant_Tree(), Is_Exp_Linexable(), Is_nested_call(), Machine_Type(), MemCtr_Add_Common(), MemCtr_Add_Global(), MemCtr_Add_Local(), W2CF_TRANSLATOR::Prefetch_Attributes_To_String(), WN_TREE_ITER_base< WN * >::Push(), Recompute_addr_saved_stmt(), Rewrite_Pragmas_On_Structs(), Rewrite_Structs_In_MPRegion(), Set_addr_saved_stmt(), Strip_TAS(), TAS_To_TOP(), True_Bound(), Var_Loaded_From(), Verify_addr_flags_stmt(), Weird_Array_Element(), WN_TREE_ITER< POST_ORDER, WHIRL >::Wind(), WN2C_alloca(), WN2C_array(), WN2C_binaryop(), WN2C_bnor(), WN2C_call(), WN2C_comma(), WN2C_complex(), WN2C_cvt(), WN2C_cvtl(), WN2C_eval(), WN2C_extract_bits(), WN2C_Function_Call_Lhs(), WN2C_Function_Return_Value(), WN2C_iload(), WN2C_iloadx(), WN2C_imagpart(), WN2C_infix_op(), WN2C_is_pointer_diff(), WN2C_istore(), WN2C_istorex(), WN2C_lvalue_wn(), WN2C_madd(), WN2C_mload(), WN2C_mstore(), WN2C_msub(), WN2C_nmadd(), WN2C_nmsub(), WN2C_paren(), WN2C_parm(), WN2C_prefetch(), WN2C_process_pragma(), WN2C_rcomma(), WN2C_realpart(), WN2C_return_val(), WN2C_select(), WN2C_stid(), WN2C_tas(), WN2C_unaryop(), WN2F_agoto(), WN2F_alloca(), WN2F_array(), WN2F_Array_Slots(), WN2F_arrayexp(), WN2F_arrsection(), WN2F_ashr(), WN2F_binaryop(), WN2F_call(), WN2F_ceil(), WN2F_complex(), WN2F_cvt(), WN2F_cvtl(), WN2F_Denormalize_Array_Idx(), WN2F_eq(), WN2F_eval(), LOC_INFO::WN2F_Find_And_Mark_Nested_Address(), WN2F_Find_Base(), WN2F_floor(), WN2F_Function_Call_Lhs(), WN2F_Get_DoLoop_Bound(),