| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| H A D | qual1.C | 7 typedef const char *(func_type)(); typedef 12 func_type *Function; 14 const func_type* function(void) { return Function; } // ERROR - constifying in function() 15 volatile func_type* functionv(void); // ERROR - qualifier
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| H A D | ptrmem1.C | 6 typedef void func_type (int num); typedef 7 my_class (int num, func_type* proc); 11 func_type *_proc; 14 my_class::my_class (int num, func_type* proc) : _num(num), _proc(proc) in my_class()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bugs/ |
| H A D | 900519_05.C | 9 typedef void (func_type) (int, int); typedef 10 typedef func_type& func_ref_type; 16 func_type& global_func_ref1 = function;
|
| H A D | 900208_03.C | 11 typedef void (func_type) (); typedef 15 new func_type; // ERROR - missed by both cfront 2.0 and g++ 1.36.1 in global_function_0() local
|
| H A D | 900402_01.C | 9 typedef void (func_type) (); typedef 12 func_type f:32; // ERROR - bitified with function type
|
| H A D | 900208_04.C | 13 typedef void (func_type) (); typedef 15 void global_function_1 (func_type *p) in global_function_1()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| H A D | rfg20.C | 3 typedef void func_type (); typedef 4 func_type *fp;
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBFunction.cpp | 101 Type *func_type = m_opaque_ptr->GetType(); in GetDescription() local 102 if (func_type) in GetDescription() 103 s.Printf(", type = %s", func_type->GetName().AsCString()); in GetDescription()
|
| H A D | SBType.cpp | 300 CompilerType func_type(m_opaque_sp->GetCompilerType(true)); in GetFunctionArgumentTypes() local 301 size_t count = func_type.GetNumberOfFunctionArguments(); in GetFunctionArgumentTypes() 303 sb_type_list.Append(SBType(func_type.GetFunctionArgumentAtIndex(i))); in GetFunctionArgumentTypes()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/arm/ |
| H A D | arm.c | 901 if (ARM_FUNC_TYPE (cfun->machine->func_type) == ARM_FT_UNKNOWN) in arm_current_func_type() 902 cfun->machine->func_type = arm_compute_func_type (); in arm_current_func_type() 904 return cfun->machine->func_type; in arm_current_func_type() 914 unsigned int func_type; local 921 func_type = arm_current_func_type (); 925 if (func_type & (ARM_FT_VOLATILE | ARM_FT_NAKED)) 929 if (IS_INTERRUPT (func_type) && frame_pointer_needed) 936 || ARM_FUNC_TYPE (func_type) == ARM_FT_EXCEPTION_HANDLER 7162 unsigned long func_type = arm_current_func_type (); in arm_compute_save_reg0_reg12_mask() local 7166 if (IS_INTERRUPT (func_type)) in arm_compute_save_reg0_reg12_mask() [all …]
|
| H A D | arm.h | 1017 (! IS_INTERRUPT (cfun->machine->func_type) || \ 1447 unsigned long func_type; member
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| H A D | ptype.c | 232 typedef int (*func_type) (int (*) (int, float), float); typedef 241 func_type v_func_type;
|
| /openbsd-src/gnu/gcc/gcc/config/arm/ |
| H A D | arm.c | 1453 if (ARM_FUNC_TYPE (cfun->machine->func_type) == ARM_FT_UNKNOWN) in arm_current_func_type() 1454 cfun->machine->func_type = arm_compute_func_type (); in arm_current_func_type() 1456 return cfun->machine->func_type; in arm_current_func_type() 1467 unsigned int func_type; in use_return_insn() local 1476 func_type = arm_current_func_type (); in use_return_insn() 1480 if (func_type & (ARM_FT_VOLATILE | ARM_FT_NAKED)) in use_return_insn() 1484 if (IS_INTERRUPT (func_type) && frame_pointer_needed) in use_return_insn() 9268 unsigned long func_type = arm_current_func_type (); in arm_compute_save_reg0_reg12_mask() local 9272 if (IS_INTERRUPT (func_type)) in arm_compute_save_reg0_reg12_mask() 9281 if (ARM_FUNC_TYPE (func_type) == ARM_FT_FIQ) in arm_compute_save_reg0_reg12_mask() [all …]
|
| H A D | arm.h | 953 (! IS_INTERRUPT (cfun->machine->func_type) || \ 1408 unsigned long func_type; member
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | SymbolContext.cpp | 209 Type *func_type = function->GetType(); in GetDescription() local 210 if (func_type) { in GetDescription() 212 func_type->GetDescription(s, level, false, target); in GetDescription() 333 Type *func_type = function->GetType(); in Dump() local 334 if (func_type) { in Dump() 336 func_type->Dump(s, false); in Dump()
|
| H A D | Block.cpp | 346 Type *func_type = function->GetType(); in AddRange() local 348 const Declaration &func_decl = func_type->GetDeclaration(); in AddRange()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/ |
| H A D | stabsread.c | 1653 struct type *func_type in read_type() local 1686 TYPE_FIELDS (func_type) in read_type() 1687 = (struct field *) TYPE_ALLOC (func_type, in read_type() 1689 memset (TYPE_FIELDS (func_type), 0, num_args * sizeof (struct field)); in read_type() 1698 TYPE_FIELD_TYPE (func_type, i) = t->type; in read_type() 1700 TYPE_NFIELDS (func_type) = num_args; in read_type() 1701 TYPE_FLAGS (func_type) |= TYPE_FLAG_PROTOTYPED; in read_type() 1703 type = func_type; in read_type()
|
| H A D | ada-lang.c | 2848 struct type *func_type = SYMBOL_TYPE (func); in ada_args_match() local 2851 && TYPE_CODE (func_type) == TYPE_CODE_ENUM) in ada_args_match() 2853 else if (func_type == NULL || TYPE_CODE (func_type) != TYPE_CODE_FUNC) in ada_args_match() 2856 if (TYPE_NFIELDS (func_type) != n_actuals) in ada_args_match() 2865 struct type *ftype = ada_check_typedef (TYPE_FIELD_TYPE (func_type, i)); in ada_args_match() 2881 return_match (struct type *func_type, struct type *context_type) in return_match() argument 2885 if (func_type == NULL) in return_match() 2888 if (TYPE_CODE (func_type) == TYPE_CODE_FUNC) in return_match() 2889 return_type = base_type (TYPE_TARGET_TYPE (func_type)); in return_match() 2891 return_type = base_type (func_type); in return_match()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/ |
| H A D | Function.h | 441 Type *func_type, const AddressRange &range);
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 915 Type *func_type = nullptr; in ParseSubroutine() local 918 func_type = dwarf->ResolveTypeUID(attrs.type.Reference(), true); in ParseSubroutine() 920 if (func_type) in ParseSubroutine() 921 return_clang_type = func_type->GetForwardCompilerType(); in ParseSubroutine() 2432 Type *func_type = dwarf->GetDIEToType().lookup(die.GetDIE()); in ParseFunctionFromDWARF() local 2434 assert(func_type == nullptr || func_type != DIE_IS_BEING_PARSED); in ParseFunctionFromDWARF() 2440 func_user_id, func_name, func_type, in ParseFunctionFromDWARF()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.cpp | 300 lldb_private::Type *func_type = ResolveTypeUID(pdb_func.getSymIndexId()); in ParseCompileUnitFunctionForPDBFunc() local 301 if (!func_type) in ParseCompileUnitFunctionForPDBFunc() 310 func_type_uid, mangled, func_type, func_range); in ParseCompileUnitFunctionForPDBFunc()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 496 TypeSP func_type = GetOrCreateType(proc.FunctionType); in CreateFunction() local 497 if (!func_type) in CreateFunction() 504 func_type.get(), func_range); in CreateFunction()
|
| H A D | PdbAstBuilder.cpp | 1042 const clang::FunctionProtoType *func_type = in GetOrCreateFunctionDecl() local 1052 func_type->getNumParams(), storage, false, parent); in GetOrCreateFunctionDecl()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | dwarfout.c | 3369 prototyped_attribute (func_type) in prototyped_attribute() argument 3370 tree func_type; in prototyped_attribute() 3373 && (TYPE_ARG_TYPES (func_type) != NULL))
|
| H A D | dwarf2out.c | 9989 add_prototyped_attribute (die, func_type) in add_prototyped_attribute() argument 9991 tree func_type; 9994 && TYPE_ARG_TYPES (func_type) != NULL)
|