Home | History | Annotate | Download | only in llvm-diff

Lines Matching refs:diff

178     bool Result = diff(L, R, true, true);
188 diff(Pair.first, Pair.second);
192 void diff(BasicBlock *L, BasicBlock *R) {
204 // If the instructions differ, start the more sophisticated diff
206 if (diff(LeftI, RightI, false, false)) {
248 bool diff(Instruction *L, Instruction *R, bool Complain, bool TryUnify) {
461 void diff(Function *L, Function *R) {
486 return !diff(L, R, false, false);
549 DiffLogBuilder Diff(Engine.getConsumer());
570 Diff.addMatch(L, R);
577 Diff.addLeft(&*LI);
583 Diff.addRight(&*RI);
635 void DifferenceEngine::diff(Function *L, Function *R) {
650 FunctionDifferenceEngine(*this).diff(L, R);
653 void DifferenceEngine::diff(Module *L, Module *R) {
675 diff(I->first, I->second);