reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-diff/DifferenceEngine.cpp
  249     if (L->getOpcode() != R->getOpcode()) {
  254     if (isa<CmpInst>(L)) {
  255       if (cast<CmpInst>(L)->getPredicate()
  260     } else if (isa<CallInst>(L)) {
  261       return diffCallSites(CallSite(L), CallSite(R), Complain);
  262     } else if (isa<PHINode>(L)) {
  266       if (L->getType() != R->getType()) {
  267         if (!L->getType()->isPointerTy() || !R->getType()->isPointerTy()) {
  275     } else if (isa<InvokeInst>(L)) {
  276       InvokeInst *LI = cast<InvokeInst>(L);
  287     } else if (isa<BranchInst>(L)) {
  288       BranchInst *LI = cast<BranchInst>(L);
  305     } else if (isa<IndirectBrInst>(L)) {
  306       IndirectBrInst *LI = cast<IndirectBrInst>(L);
  325     } else if (isa<SwitchInst>(L)) {
  326       SwitchInst *LI = cast<SwitchInst>(L);
  361     } else if (isa<UnreachableInst>(L)) {
  365     if (L->getNumOperands() != R->getNumOperands()) {
  370     for (unsigned I = 0, E = L->getNumOperands(); I != E; ++I) {
  371       Value *LO = L->getOperand(I), *RO = R->getOperand(I);