Displaying 1 result from an estimated 1 matches for "guaranteedtoexecut".
Did you mean:
guaranteedtoexecute
2011 Jul 19
8
[LLVMdev] Reviving the new LLVM concurrency model
...nsforms/Scalar/LICM.cpp
===================================================================
--- lib/Transforms/Scalar/LICM.cpp (revision 135415)
+++ lib/Transforms/Scalar/LICM.cpp (working copy)
@@ -151,6 +151,11 @@
///
bool isSafeToExecuteUnconditionally(Instruction &I);
+ /// isGuaranteedToExecute - Check that the instruction is guaranteed to
+ /// execute.
+ ///
+ bool isGuaranteedToExecute(Instruction &I);
+
/// pointerInvalidatedByLoop - Return true if the body of this loop may
/// store into the memory location pointed to by V.
///
@@ -577,6 +582,10 @@
if...