Searched refs:NewF (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/IR/
H A DMetadata.cpp167 const Function *F = 0, *NewF = 0; local
171 NewF = assertLocalFunction(MD);
173 NewF = getFunctionForValue(V);
176 F = NewF;
178 assert((NewF == 0 || F == NewF) &&"inconsistent function-local metadata");
H A DModule.cpp157 Constant *NewF = getOrInsertFunction(Name, Ty); local
159 return NewF;
H A DConstants.cpp1388 Function *NewF = getFunction(); local
1392 NewF = cast<Function>(To->stripPointerCasts());
1399 getContext().pImpl->BlockAddresses[std::make_pair(NewF, NewBB)];
1408 setOperand(0, NewF);
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp409 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first); local
411 assert(NewF && "Function not found??");
412 MiscompiledFunctions.push_back(NewF);
447 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first); local
449 assert(NewF && "Function not found??");
450 MiscompiledFunctions.push_back(NewF);
629 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first); local
630 assert(NewF && "Function not found??");
631 MiscompiledFunctions.push_back(NewF);
/external/llvm/lib/Transforms/IPO/
H A DMergeFunctions.cpp567 bool insert(ComparableFunction &NewF);
823 bool MergeFunctions::insert(ComparableFunction &NewF) { argument
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/
H A DLoopStrengthReduce.cpp3648 Formula NewF = F; local
3649 NewF.BaseOffset = Offset;
3651 NewF))
3653 NewF.ScaledReg = SE.getAddExpr(NegImmS, NewF.ScaledReg);
3658 if (const SCEVConstant *C = dyn_cast<SCEVConstant>(NewF.ScaledReg))
3660 (NewF.BaseOffset < 0) &&
3662 .ule(abs64(NewF.BaseOffset)))
3666 (void)InsertFormula(LU, LUIdx, NewF);
3673 Formula NewF local
3893 Formula NewF = F; local
3908 Formula NewF = F; local
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp180 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName()); local
183 Function::arg_iterator DestI = NewF->arg_begin();
192 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
193 return NewF;

Completed in 281 milliseconds