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

  /external/llvm/lib/VMCore/
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 158 Constant *NewF = getOrInsertFunction(Name, Ty);
160 return NewF;
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 561 bool insert(ComparableFunction &NewF);
811 bool MergeFunctions::insert(ComparableFunction &NewF) {
812 std::pair<FnSetType::iterator, bool> Result = FnSet.insert(NewF);
814 DEBUG(dbgs() << "Inserting as unique: " << NewF.getFunc()->getName() << '\n');
822 NewF.getFunc()->mayBeOverridden());
825 << NewF.getFunc()->getName() << '\n');
827 Function *DeleteF = NewF.getFunc();
828 NewF.release();
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 177 Function *NewF = Function::Create(FTy, F->getLinkage(), F->getName());
180 Function::arg_iterator DestI = NewF->arg_begin();
189 CloneFunctionInto(NewF, F, VMap, ModuleLevelChanges, Returns, "", CodeInfo);
190 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 100 milliseconds