| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan_minimal/ |
| ubsan_minimal_handlers.cc | 93 #define HANDLER(name, msg) \ 97 HANDLER(type_mismatch, "type-mismatch") 98 HANDLER(add_overflow, "add-overflow") 99 HANDLER(sub_overflow, "sub-overflow") 100 HANDLER(mul_overflow, "mul-overflow") 101 HANDLER(negate_overflow, "negate-overflow") 102 HANDLER(divrem_overflow, "divrem-overflow") 103 HANDLER(shift_out_of_bounds, "shift-out-of-bounds") 104 HANDLER(out_of_bounds, "out-of-bounds") 107 HANDLER(vla_bound_not_positive, "vla-bound-not-positive" [all...] |
| /src/external/gpl3/gcc/dist/gcc/cp/ |
| cp-tree.def | 274 /* A HANDLER wraps a catch handler for the HANDLER_TYPE. If this is 275 CATCH_ALL_TYPE, then the handler catches all types. The declaration of 278 DEFTREECODE (HANDLER, "handler", tcc_statement, 2)
|
| dump.cc | 252 case HANDLER:
|
| cp-objcp-common.cc | 648 MARK_TS_EXP (HANDLER);
|
| lex.cc | 346 CTOR_INITIALIZER, TRY_BLOCK, HANDLER,
|
| cxx-pretty-print.cc | 2033 try compound-statement handler-seq */ 2047 handler-seq: 2048 handler handler-seq(opt) 2050 handler: 2057 case HANDLER:
|
| coroutines.cc | 3923 case HANDLER: 3927 of a function-body outside of a handler. */ 4504 tree handler = begin_handler (); local 4505 finish_handler_parms (NULL_TREE, handler); /* catch (...) */ 4534 finish_handler (handler); 5354 tree handler = begin_handler (); local 5355 finish_handler_parms (NULL_TREE, handler); /* catch (...) */ 5422 finish_handler (handler);
|
| cp-gimplify.cc | 105 /* Genericize a HANDLER by converting to a CATCH_EXPR. */ 740 case HANDLER:
|
| semantics.cc | 1914 /* Finish a handler-sequence for a try-block, which may be given by 1924 /* Finish the handler-seq for a function-try-block, given by 1936 /* Begin a handler. Returns a HANDLER if appropriate. */ 1943 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE); 1953 /* Finish the handler-parameters for a handler, which may be given by 1954 HANDLER. DECL is the declaration for the catch parameter, or NULL 1958 finish_handler_parms (tree decl, tree handler) 1967 HANDLER_PARMS (handler) = decl [all...] |
| pt.cc | 18998 case HANDLER:
|
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| cp-tree.def | 284 /* A HANDLER wraps a catch handler for the HANDLER_TYPE. If this is 285 CATCH_ALL_TYPE, then the handler catches all types. The declaration of 288 DEFTREECODE (HANDLER, "handler", tcc_statement, 2)
|
| dump.cc | 252 case HANDLER:
|
| cp-objcp-common.cc | 526 MARK_TS_EXP (HANDLER);
|
| lex.cc | 305 CTOR_INITIALIZER, TRY_BLOCK, HANDLER,
|
| cxx-pretty-print.cc | 2009 try compound-statement handler-seq */ 2023 handler-seq: 2024 handler handler-seq(opt) 2026 handler: 2033 case HANDLER:
|
| cp-gimplify.cc | 72 /* Genericize a HANDLER by converting to a CATCH_EXPR. */ 605 case HANDLER:
|
| coroutines.cc | 3707 case HANDLER: 3711 of a function-body outside of a handler. */ 4267 tree handler = begin_handler (); local 4268 finish_handler_parms (NULL_TREE, handler); /* catch (...) */ 4297 finish_handler (handler); 5141 tree handler = begin_handler (); local 5142 finish_handler_parms (NULL_TREE, handler); /* catch (...) */ 5200 finish_handler (handler);
|
| semantics.cc | 1639 /* Finish a handler-sequence for a try-block, which may be given by 1649 /* Finish the handler-seq for a function-try-block, given by 1661 /* Begin a handler. Returns a HANDLER if appropriate. */ 1668 r = build_stmt (input_location, HANDLER, NULL_TREE, NULL_TREE); 1678 /* Finish the handler-parameters for a handler, which may be given by 1679 HANDLER. DECL is the declaration for the catch parameter, or NULL 1683 finish_handler_parms (tree decl, tree handler) 1692 HANDLER_PARMS (handler) = decl [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| tracectf.c | 104 ctf_save_write_metadata (struct trace_write_handler *handler, 109 ctf_save_write_metadata (struct trace_write_handler *handler, 115 if (vfprintf (handler->metadata_fd, format, args) < 0) 122 HANDLER. */ 125 ctf_save_write (struct trace_write_handler *handler, 128 if (fwrite (buf, size, 1, handler->datastream_fd) != 1) 132 handler->content_size += size; 138 HANDLER. */ 140 #define ctf_save_write_uint32(HANDLER, U32) \ 141 ctf_save_write (HANDLER, (gdb_byte *) &U32, 4 [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| tracectf.c | 104 ctf_save_write_metadata (struct trace_write_handler *handler, 109 ctf_save_write_metadata (struct trace_write_handler *handler, 115 if (vfprintf (handler->metadata_fd, format, args) < 0) 122 HANDLER. */ 125 ctf_save_write (struct trace_write_handler *handler, 128 if (fwrite (buf, size, 1, handler->datastream_fd) != 1) 132 handler->content_size += size; 138 HANDLER. */ 140 #define ctf_save_write_uint32(HANDLER, U32) \ 141 ctf_save_write (HANDLER, (gdb_byte *) &U32, 4 [all...] |
| /src/external/gpl3/gcc/dist/libgcc/ |
| unwind-arm-common.inc | 147 target frame. HANDLER is the PC to which control will be 152 void *handler __attribute__ ((__unused__))) 157 STAP_PROBE2 (libgcc, unwind, cfa, handler); 174 void *handler = __builtin_frob_return_addr ((void *) VRS_PC (TARGET)); \ 175 _Unwind_DebugHook (0, handler); \ 228 unsigned int handler; 236 handler = *(unsigned int *)(funcdesc); 237 first_handler_instruction = *(unsigned int *)(handler & ~1); 281 /* If we are unwinding a signal handler then perhaps we have 316 /* If we are unwinding a signal handler then perhaps we hav [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| unwind-arm-common.inc | 147 target frame. HANDLER is the PC to which control will be 152 void *handler __attribute__ ((__unused__))) 157 STAP_PROBE2 (libgcc, unwind, cfa, handler); 174 void *handler = __builtin_frob_return_addr ((void *) VRS_PC (TARGET)); \ 175 _Unwind_DebugHook (0, handler); \ 228 unsigned int handler; 236 handler = *(unsigned int *)(funcdesc); 237 first_handler_instruction = *(unsigned int *)(handler & ~1); 281 /* If we are unwinding a signal handler then perhaps we have 316 /* If we are unwinding a signal handler then perhaps we hav [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| Stmt.h | 3387 enum { TRY = 0, HANDLER = 1 }; 3392 Stmt *Handler); 3399 Stmt *Handler); 3404 SourceLocation getEndLoc() const { return Children[HANDLER]->getEndLoc(); } 3412 Stmt *getHandler() const { return Children[HANDLER]; }
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Stmt.cpp | 1226 Stmt *Handler) 1229 Children[HANDLER] = Handler; 1234 Stmt *Handler) { 1235 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler);
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReaderStmt.cpp | 2251 S->Children[SEHTryStmt::HANDLER] = Record.readSubStmt();
|