Searched refs:Safe (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/bugpoint/
H A DMiscompilation.cpp694 std::unique_ptr<Module> Safe, std::string &Error) {
706 BD, std::move(Optimized), std::move(Safe), Error, Broken);
763 Module *Safe) {
770 // First, if the main function is in the Safe module, we must add a stub to
773 if (Function *oldMain = Safe->getFunction("main"))
796 BasicBlock *BB = BasicBlock::Create(Safe->getContext(), "entry", newMain);
800 ReturnInst::Create(Safe->getContext(), call, BB);
803 // The second nasty issue we must deal with in the JIT is that the Safe
808 // Add the resolver to the Safe module.
811 Safe
693 TestOptimizer(BugDriver &BD, std::unique_ptr<Module> Test, std::unique_ptr<Module> Safe, std::string &Error) argument
761 CleanupAndPrepareModules(BugDriver &BD, std::unique_ptr<Module> &Test, Module *Safe) argument
925 TestCodeGenerator(BugDriver &BD, std::unique_ptr<Module> Test, std::unique_ptr<Module> Safe, std::string &Error) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp304 // Safe to transform, don't even bother trying to "promote" it.
391 /// (Safe). Marking safe usually means adding ToMark to Safe. However, if there
392 /// is already a prefix of Indices in Safe, Indices are implicitely marked safe
394 /// removed from Safe (since they are implicitely safe because of Indices now).
396 std::set<ArgPromotion::IndicesVector> &Safe) {
398 Low = Safe.upper_bound(ToMark);
399 // Guard against the case where Safe is empty
400 if (Low != Safe.begin())
405 if (Low != Safe
395 MarkIndicesSafe(const ArgPromotion::IndicesVector &ToMark, std::set<ArgPromotion::IndicesVector> &Safe) argument
[all...]
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DMachineLICM.cpp502 bool Safe = true; local
512 Safe = false;
516 if (Safe)
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DSafeStack.cpp1 //===-- SafeStack.cpp - Safe Stack Insertion ------------------------------===//
222 bool Safe = AllocaRange.contains(AccessRange); local
233 << " " << (Safe ? "safe" : "unsafe") << "\n");
235 return Safe;
733 // Safe stack object that stores the current unsafe stack top. It is updated
754 "Safe Stack instrumentation pass", false, false)
756 "Safe Stack instrumentation pass", false, false)

Completed in 65 milliseconds