Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Function

19 #include "llvm/IR/Function.h"
41 bool InsertUnwindResumeCalls(Function &Fn);
52 virtual bool runOnFunction(Function &Fn);
109 /// into calls to the appropriate _Unwind_Resume function.
110 bool DwarfEHPrepare::InsertUnwindResumeCalls(Function &Fn) {
113 for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) {
124 // Find the rewind function if we didn't already.
144 // Call the _Unwind_Resume function.
171 // Call the function.
180 bool DwarfEHPrepare::runOnFunction(Function &Fn) {