HomeSort by relevance Sort by last modified time
    Searched refs:NewF (Results 1 - 7 of 7) sorted by null

  /external/llvm/lib/IR/
Metadata.cpp 167 const Function *F = 0, *NewF = 0;
171 NewF = assertLocalFunction(MD);
173 NewF = getFunctionForValue(V);
176 F = NewF;
178 assert((NewF == 0 || F == NewF) &&"inconsistent function-local metadata");
Module.cpp 157 Constant *NewF = getOrInsertFunction(Name, Ty);
159 return NewF;
Constants.cpp     [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 409 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first);
411 assert(NewF && "Function not found??");
412 MiscompiledFunctions.push_back(NewF);
447 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first);
449 assert(NewF && "Function not found??");
450 MiscompiledFunctions.push_back(NewF);
629 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
630 assert(NewF && "Function not found??");
631 MiscompiledFunctions.push_back(NewF);
    [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 567 bool insert(ComparableFunction &NewF);
823 bool MergeFunctions::insert(ComparableFunction &NewF) {
824 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
826 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
834 NewF.getFunc()->mayBeOverridden());
837 << NewF.getFunc()->getName() << '\n');
839 Function *DeleteF = NewF.getFunc();
840 NewF.release();
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 180 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
183 Function::arg_iterator DestI = NewF->arg_begin();
192 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
193 return NewF;

Completed in 233 milliseconds