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

  /external/llvm/lib/IR/
Module.cpp 157 Constant *NewF = getOrInsertFunction(Name, Ty);
159 return NewF;
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");
Constants.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...]
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 504 milliseconds