HomeSort by relevance Sort by last modified time
    Searched full:__except (Results 1 - 25 of 187) sorted by null

1 2 3 4 5 6 7 8

  /external/llvm/test/CodeGen/X86/
seh-exception-code.ll 17 %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
win32-seh-catchpad.ll 14 %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.re
    [all...]
seh-catchpad.ll 12 ; } __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.dispatc
    [all...]
seh-except-finally.ll 16 ; } __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", comdat, align 1
61 %cs1 = catchswitch within none [label %__except] unwind to caller
63 __except: ; preds = %catch.dispatch
65 %call = call i32 @puts(i8* getelementptr inbounds ([9 x i8], [9 x i8]* @"\01??_C@_08MLCMLGHM@__except?$AA@", i32 0, i32 0)) [ "funclet"(token %catchpad) ]
68 __try.cont: ; preds = %__except, %invoke.cont2
win32-seh-catchpad-realign.ll 18 %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
seh-catch-all-win32.ll 25 %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{{$}}
seh-stack-realign.ll 26 %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/
exceptions-seh.cpp 9 } __except(_exception_code() == 0xC0000094) {
21 } __except(1) {
23 _exception_code(); // expected-error {{'_exception_code' only allowed in __except block or filter expression}}
24 _exception_info(); // expected-error {{'_exception_info' only allowed in __except filter expression}}
32 } __except(1) {
34 _exception_code(); // expected-error {{'_exception_code' only allowed in __except block or filter expression}}
35 _exception_info(); // expected-error {{'_exception_info' only allowed in __except filter expression}}
60 } __except(1) {
67 } __except(1) {
80 } __except(1)
    [all...]
__try.cpp 42 __except(EXCEPTION_EXECUTE_HANDLER) function
64 } __except(true) { function
scope-check.cpp 454 } __except(0) {
459 } __except(0) { // expected-note {{jump bypasses initialization of __except block}}
487 } __except(0) {
493 } __except(0) {
526 } __except(0) { // expected-note {{jump bypasses initialization of __except block}}
534 } __except(0) {
562 } __except(0) { // expected-note {{jump bypasses initialization of __except bloc}
    [all...]
  /external/clang/test/Parser/
ms-seh.c 10 } // expected-error {{expected '__except' or '__finally' block}}
16 } __except(1) a; // expected-error {{expected '{'}} expected-warning {{expression result unused}}
  /external/clang/test/Sema/
__try.c 50 } // expected-error{{expected '__except' or '__finally' block}}
53 __except ( FilterExpression() ) { // expected-warning{{implicit declaration of function '__except' is invalid in C99}} \
67 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
76 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}} function
84 __except ( FilterExpression(GetExceptionCode()) ) {
91 __except( FilterExpression(__exception_code()) ) {
98 __except( FilterExceptionInformation(__exception_info()) ) {
105 __except(FilterExceptionInformation( GetExceptionInformation() ) ) {
114 __except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integral value (…)
287 } __except(undeclared_identifier) { \/\/ expected-error {{use of undeclared identifier 'undeclared_identifier'}} expected-error {{expected expression}} function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sehmap.h 12 #define except __except
rpc.h 91 their __try/__except/__finally feature, or we need to do at least for x64
94 #define RpcExcept(expr) } __except(expr) {
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_seh.cc 32 } __except(EXCEPTION_EXECUTE_HANDLER) { function
33 fprintf(stderr, "__except: %p\n", &local);
seh.cc 39 } __except(EXCEPTION_EXECUTE_HANDLER) { function
40 fprintf(stderr, "__except: %p\n", &local);
  /external/clang/test/CodeGen/
exceptions-seh-leave.c 6 // __leave with __except
15 } __except (1) {
35 } __except (1) {
141 } __except (1) {
184 } __except (1) {
186 __leave; // Refers to the outer __try, not the __except we're in!
192 } __except (1) {
237 } __except (1) {
239 __leave; // Refers to the outer __try, not the __except!
  /external/libcxx/src/support/runtime/
exception_pointer_msvc.ipp 60 exception_ptr __copy_exception_ptr(void* __except, const void* __ptr) {
63 __ExceptionPtrCopyException(&__ret, __except, __ptr);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/support/runtime/
exception_pointer_msvc.ipp 68 exception_ptr __copy_exception_ptr(void* __except, const void* __ptr) {
71 __ExceptionPtrCopyException(&__ret, __except, __ptr);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
Threads.c 90 __except (EXCEPTION_EXECUTE_HANDLER) { return 1; } function
  /external/lzma/C/
Threads.c 90 __except (EXCEPTION_EXECUTE_HANDLER) { return 1; } function
  /external/clang/test/CodeGenCXX/
exceptions-seh-filter-captures.cpp 13 } __except(basic_filter(p1, l1, s1)) {
43 } __except(basic_filter(l1)) {
66 } __except(basic_filter(l2)) {
exceptions-seh.cpp 52 } __except(1) {
83 } __except(1) {
108 } __except(_exception_code() == 424242) {
  /external/libopus/celt/arm/
armcpu.c 66 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
76 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
85 __except(GetExceptionCode()==EXCEPTION_ILLEGAL_INSTRUCTION){
  /external/llvm/test/Instrumentation/AddressSanitizer/
localescape.ll 32 br i1 %matches, label %__except, label %eh.resume
34 __except: ; preds = %lpad
38 __try.cont: ; preds = %entry, %__except

Completed in 1405 milliseconds

1 2 3 4 5 6 7 8