Searched refs:cmpValues (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/Transforms/Utils/ |
| H A D | FunctionComparator.cpp | 374 if (int Res = cmpValues(LBA->getFunction(), RBA->getFunction())) in cmpConstants() 402 return cmpValues(LBA->getBasicBlock(), RBA->getBasicBlock()); in cmpConstants() 525 if (int Res = cmpValues(L, R)) in cmpOperations() 539 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand())) in cmpOperations() 689 cmpValues(PNL->getIncomingBlock(i), PNR->getIncomingBlock(i))) in cmpOperations() 722 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i))) in cmpGEPs() 755 int FunctionComparator::cmpValues(const Value *L, const Value *R) const { in cmpValues() function in FunctionComparator 813 if (int Res = cmpValues(OpL, OpR)) in cmpBasicBlocks() 871 if (cmpValues(&*ArgLI, &*ArgRI) != 0) in compareSignature() 899 if (int Res = cmpValues(BBL, BBR)) in compare()
|
| /llvm-project-15.0.7/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 246 int cmpValues(const Value *L, const Value *R) const;
|
| /llvm-project-15.0.7/llvm/unittests/Transforms/Utils/ |
| H A D | FunctionComparatorTest.cpp | 83 return cmpValues(L, R); in testCmpValues()
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | MergeFunctions.rst | 307 This is done by “``FunctionComparator::cmpValues(const Value*, const Value*)``” 322 arguments (see ``cmpValues`` method below). 374 cmpValues(const Value*, const Value*) 427 What we associate in cmpValues? 442 How to implement cmpValues? 522 Now when *cmpValues* returns 0, we can proceed the comparison procedure. 587 ``cmpValues`` method. 599 3.3. Compare operands themselves, use ``cmpValues`` method. Return result
|