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

  /external/llvm/lib/IR/
Value.cpp 303 void Value::replaceAllUsesWith(Value *New) {
304 assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
305 assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
DebugInfo.cpp 330 /// replaceAllUsesWith - Replace all uses of the MDNode used by this
332 void DIType::replaceAllUsesWith(DIDescriptor &D) {
337 // legitimate situations where they want to replaceAllUsesWith() on something
339 // this detail by allowing a value to be replaced with replaceAllUsesWith()
345 Node->replaceAllUsesWith(const_cast<Value*>(V));
350 /// replaceAllUsesWith - Replace all uses of the MDNode used by this
352 void DIType::replaceAllUsesWith(MDNode *D) {
357 // legitimate situations where they want to replaceAllUsesWith() on something
359 // this detail by allowing a value to be replaced with replaceAllUsesWith()
365 Node->replaceAllUsesWith(const_cast<Value*>(V))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp 899 LCS->replaceAllUsesWith(Old, Cmp);
    [all...]

Completed in 89 milliseconds