Searched refs:cmpValues (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/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() 534 if (int Res = cmpValues(L, R)) in cmpOperations() 548 cmpValues(GEPL->getPointerOperand(), GEPR->getPointerOperand())) in cmpOperations() 698 cmpValues(PNL->getIncomingBlock(i), PNR->getIncomingBlock(i))) in cmpOperations() 731 if (int Res = cmpValues(GEPL->getOperand(i), GEPR->getOperand(i))) in cmpGEPs() 764 int FunctionComparator::cmpValues(const Value *L, const Value *R) const { in cmpValues() function in FunctionComparator 822 if (int Res = cmpValues(OpL, OpR)) in cmpBasicBlocks() 880 if (cmpValues(&*ArgLI, &*ArgRI) != 0) in compareSignature() 908 if (int Res = cmpValues(BBL, BBR)) in compare()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
| H A D | FunctionComparator.h | 246 int cmpValues(const Value *L, const Value *R) const;
|
| /openbsd-src/gnu/llvm/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
|