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/lib/Transforms/IPO/
MergeFunctions.cpp 559 bool insert(ComparableFunction &NewF);
809 bool MergeFunctions::insert(ComparableFunction &NewF) {
810 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
812 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
820 NewF.getFunc()->mayBeOverridden());
823 << NewF.getFunc()->getName() << '\n');
825 Function *DeleteF = NewF.getFunc();
826 NewF.release();
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 179 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
182 Function::arg_iterator DestI = NewF->arg_begin();
191 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
192 return NewF;
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 412 Function *NewF = ToNotOptimize->getFunction(MisCompFunctions[i].first);
414 assert(NewF && "Function not found??");
415 MiscompiledFunctions.push_back(NewF);
594 Function *NewF = ProgClone->getFunction(MisCompFunctions[i].first);
595 assert(NewF && "Function not found??");
596 MiscompiledFunctions.push_back(NewF);
    [all...]

Completed in 316 milliseconds