Home
last modified time | relevance | path

Searched refs:__except (Results 1 – 25 of 56) sorted by relevance

123

/external/clang/test/Sema/
D__try.c53__except ( FilterExpression() ) { // expected-warning{{implicit declaration of function '__except'… in TEST()
67__except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-err… in TEST()
76 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}} in TEST()
84 __except ( FilterExpression(GetExceptionCode()) ) { in TEST()
91 __except( FilterExpression(__exception_code()) ) { in TEST()
98 __except( FilterExceptionInformation(__exception_info()) ) { in TEST()
105 __except(FilterExceptionInformation( GetExceptionInformation() ) ) { in TEST()
114__except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integr… in TEST()
124 __except ( FilterExpression(GetExceptionCode()) ) { in TEST()
146 __except( function_scope ? 1 : -1 ) {} in TEST()
[all …]
/external/llvm/test/CodeGen/X86/
Dwin32-seh-catchpad.ll14 %cs1 = catchswitch within none [label %__except.ret] unwind to caller
16 __except.ret: ; preds = %catch.dispatch
18 catchret from %0 to label %__except
20 __except: ; preds = %__except.ret
24 __try.cont: ; preds = %__except, %invoke.cont
42 ; __except
78 %cs1 = catchswitch within none [label %__except.ret] unwind label %catch.dispatch.11
80 __except.ret: ; preds = %catch.dispatch
84 __try.cont: ; preds = %entry, %__except.ret
89 %cs2 = catchswitch within none [label %__except.ret.7] unwind label %catch.dispatch.11
[all …]
Dseh-exception-code.ll17 %cs = catchswitch within none [label %__except] unwind to caller
19 __except: ; preds = %catch.dispatch
21 catchret from %pad to label %__except.1
23 __except.1: ; preds = %__except
28 __try.cont: ; preds = %entry, %__except.1
36 ; CHECK: # %__except
Dseh-catchpad.ll12 ; } __except (1) {
19 ; } __except (filt()) {
48 __except.2: ; preds = %__except
52 invoke.cont.3: ; preds = %__except.2
56 __except.9: ; preds = %__except.ret
60 __try.cont.12: ; preds = %invoke.cont.3, %entry, %__except.9
64 %cs1 = catchswitch within none [label %__except] unwind label %catch.dispatch.7
66 __except: ; preds = %catch.dispatch
68 catchret from %cp1 to label %__except.2
70 ehcleanup: ; preds = %__except.2
[all …]
Dseh-except-finally.ll16 ; } __except (filt()) {
17 ; puts("__except");
26 $"\01??_C@_08MLCMLGHM@__except?$AA@" = comdat any
29 @"\01??_C@_08MLCMLGHM@__except?$AA@" = linkonce_odr unnamed_addr constant [9 x i8] c"__except\00", …
61 %cs1 = catchswitch within none [label %__except] unwind to caller
63 __except: ; preds = %catch.dispatch
65 …s(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @"\01??_C@_08MLCMLGHM@__except?$AA@", i32 0, i32…
68 __try.cont: ; preds = %__except, %invoke.cont2
Dwin32-seh-catchpad-realign.ll18 %cs1 = catchswitch within none [label %__except.ret] unwind to caller
20 __except.ret: ; preds = %catch.dispatch
24 __try.cont: ; preds = %entry, %__except.ret
69 ; CHECK: LBB0_1: # %__except.ret
Dseh-catch-all-win32.ll25 %cs1 = catchswitch within none [label %__except] unwind to caller
27 __except: ; preds = %lpad
33 __try.cont: ; preds = %entry, %__except
58 ; __except block.
73 ; CHECK: LBB0_[[lpbb:[0-9]+]]: # %__except{{$}}
Dseh-stack-realign.ll26 %cs1 = catchswitch within none [label %__except] unwind to caller
28 __except: ; preds = %lpad
34 __try.cont: ; preds = %entry, %__except
63 ; CHECK: LBB0_[[lpbb:[0-9]+]]: # %__except
/external/clang/test/SemaCXX/
Dexceptions-seh.cpp9 } __except(_exception_code() == 0xC0000094) { in safe_div()
21 } __except(1) { in bad_builtin_scope()
32 } __except(1) { in bad_builtin_scope_template()
60 } __except(1) { in use_seh_after_cxx()
67 } __except(1) { in use_cxx_after_seh()
80 } __except(1) { in use_seh_in_lambda()
94 } __except(1) { in use_seh_in_block()
106 } __except(1) {
Dscope-check.cpp454 } __except(0) { in jump_into_except()
459 } __except(0) { // expected-note {{jump bypasses initialization of __except block}} in jump_into_except()
487 } __except(0) { in jump_out_of_except()
493 } __except(0) { in jump_out_of_except()
526 } __except(0) { // expected-note {{jump bypasses initialization of __except block}} in jump_try_except()
534 } __except(0) { in jump_try_except()
562 } __except(0) { // expected-note {{jump bypasses initialization of __except bloc}} in nested()
569 } __except(0) { in nested()
583 } __except(0) { in nested()
590 } __except(0) { in nested()
[all …]
D__try.cpp42 __except(EXCEPTION_EXECUTE_HANDLER) in main()
64 } __except(true) { in Except()
/external/clang/test/CodeGen/
Dexceptions-seh.c23 } __except (1) { in safe_div()
71 } __except(r = -1) { in filter_expr_capture()
109 } __except(_exception_code() == 123) { in nested_try()
112 } __except(_exception_code() == 456) { in nested_try()
210 } __except(1) { in except_return()
265 } __except(1) { in exception_code_in_except()
Dexceptions-seh-leave.c15 } __except (1) { in __leave_with___except_simple()
35 } __except (1) { in __leave_with___except()
141 } __except (1) { in nested___except___finally()
184 } __except (1) { in nested___except___except()
192 } __except (1) { in nested___except___except()
237 } __except (1) { in nested___finally___except()
/external/clang/test/CodeGenCXX/
Dexceptions-seh.cpp52 } __except(1) { in use_seh()
83 } __except(1) { in use_seh_in_lambda()
108 } __except(_exception_code() == 424242) { in use_seh_in_inline_func()
Dexceptions-seh-filter-captures.cpp13 } __except(basic_filter(p1, l1, s1)) { in test_freefunc()
43 } __except(basic_filter(l1)) { in test_method()
66 } __except(basic_filter(l2)) { in test_lambda()
/external/libopus/celt/arm/
Darmcpu.c66 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){ in opus_cpu_capabilities()
76 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){ in opus_cpu_capabilities()
85 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){ in opus_cpu_capabilities()
/external/llvm/test/Instrumentation/AddressSanitizer/
Dlocalescape.ll32 br i1 %matches, label %__except, label %eh.resume
34 __except: ; preds = %lpad
38 __try.cont: ; preds = %entry, %__except
/external/llvm/test/Instrumentation/SanitizerCoverage/
Dseh.ll34 br i1 %matches, label %__except, label %eh.resume
36 __except: ; preds = %lpad
40 __try.cont: ; preds = %entry, %__except
/external/libcxx/src/support/runtime/
Dexception_pointer_msvc.ipp60 exception_ptr __copy_exception_ptr(void* __except, const void* __ptr) {
63 __ExceptionPtrCopyException(&__ret, __except, __ptr);
/external/clang/test/Parser/
Dms-seh.c16 } __except(1) a; // expected-error {{expected '{'}} expected-warning {{expression result unused}} in g()
/external/compiler-rt/test/asan/TestCases/Windows/
Dseh.cc39 } __except(EXCEPTION_EXECUTE_HANDLER) { in ThrowAndCatch()
Ddll_seh.cc32 } __except(EXCEPTION_EXECUTE_HANDLER) { in ThrowAndCatch()
/external/libchrome/base/
Dlogging_unittest.cc230 } __except ( in TEST_F()
236 } __except ( in TEST_F()
242 } __except ( in TEST_F()
/external/mdnsresponder/mDNSWindows/mdnsNSP/
DmdnsNSP.c703 __except( EXCEPTION_EXECUTE_HANDLER ) in NSPLookupServiceNext()
717 __except( EXCEPTION_EXECUTE_HANDLER ) in NSPLookupServiceNext()
938 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryCreate()
951 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryCreate()
972 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryCreate()
985 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryCreate()
1089 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryRelease()
1102 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryRelease()
1218 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryRecordCallback4()
1308 __except( EXCEPTION_EXECUTE_HANDLER ) in QueryRecordCallback6()
/external/llvm/test/CodeGen/WinEH/
Dwineh-statenumbering.ll167 %0 = catchswitch within none [label %__except.ret] unwind to caller
169 __except.ret: ; preds = %catch.dispatch
173 if.end: ; preds = %if.then, %__except.ret, %entry

123