|
| 1 | +; Copyright 2015 The Rust Project Developers. See the COPYRIGHT |
| 2 | +; file at the top-level directory of this distribution and at |
| 3 | +; http://rust-lang.org/COPYRIGHT. |
| 4 | +; |
| 5 | +; Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +; http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +; <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +; option. This file may not be copied, modified, or distributed |
| 9 | +; except according to those terms. |
| 10 | + |
| 11 | +; For more comments about what's going on here see rust_try_msvc_64.ll. The only |
| 12 | +; difference between that and this file is the personality function used as it's |
| 13 | +; different for 32-bit MSVC than it is for 64-bit. |
| 14 | + |
| 15 | +define i8* @rust_try(void (i8*)* %f, i8* %env) |
| 16 | + personality i8* bitcast (i32 (...)* @_except_handler3 to i8*) |
| 17 | +{ |
| 18 | + invoke void %f(i8* %env) |
| 19 | + to label %normal |
| 20 | + unwind label %catch |
| 21 | + |
| 22 | +normal: |
| 23 | + ret i8* null |
| 24 | +catch: |
| 25 | + %vals = landingpad { i8*, i32 } |
| 26 | + catch i8* bitcast (i32 (i8*, i8*)* @__rust_try_filter to i8*) |
| 27 | + %ehptr = extractvalue { i8*, i32 } %vals, 0 |
| 28 | + %sel = extractvalue { i8*, i32 } %vals, 1 |
| 29 | + %filter_sel = call i32 @llvm.eh.typeid.for(i8* bitcast (i32 (i8*, i8*)* @__rust_try_filter to i8*)) |
| 30 | + %is_filter = icmp eq i32 %sel, %filter_sel |
| 31 | + br i1 %is_filter, label %catch-return, label %catch-resume |
| 32 | + |
| 33 | +catch-return: |
| 34 | + ret i8* %ehptr |
| 35 | + |
| 36 | +catch-resume: |
| 37 | + resume { i8*, i32 } %vals |
| 38 | +} |
| 39 | + |
| 40 | +declare i32 @_except_handler3(...) |
| 41 | +declare i32 @__rust_try_filter(i8*, i8*) |
| 42 | +declare i32 @llvm.eh.typeid.for(i8*) readnone nounwind |
0 commit comments