Searched refs:cmpNumbers (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 345 int cmpNumbers(uint64_t L, uint64_t R) const; 404 int FunctionComparator::cmpNumbers(uint64_t L, uint64_t R) const { in cmpNumbers() function in FunctionComparator 411 if (int Res = cmpNumbers(L.getBitWidth(), R.getBitWidth())) in cmpAPInts() 419 if (int Res = cmpNumbers((uint64_t)&L.getSemantics(), in cmpAPFloats() 427 if (int Res = cmpNumbers(L.size(), R.size())) in cmpStrings() 437 if (int Res = cmpNumbers(L.getNumSlots(), R.getNumSlots())) in cmpAttrs() 499 return cmpNumbers(TyLWidth, TyRWidth); in cmpConstants() 508 if (int Res = cmpNumbers(AddrSpaceL, AddrSpaceR)) in cmpConstants() 531 if (int Res = cmpNumbers(L->getValueID(), R->getValueID())) in cmpConstants() 551 if (int Res = cmpNumbers(NumElementsL, NumElementsR)) in cmpConstants() [all …]
|
/external/llvm/docs/ |
D | MergeFunctions.rst | 253 #. ``cmpNumbers(number1, number2)`` is method that returns -1 if left is less 257 The logic is the same as in ``cmpNumbers``, where ``true`` is 1, and 290 *cmpNumbers* or *cmpFlags* operations (e.g. 346 IDs comparison, treating them as a numbers (use ``cmpNumbers`` operation). 480 ``cmpNumbers(sn_mapL[Left], sn_mapR[Right]);`` 489 return cmpNumbers(LeftRes.first->second, RightRes.first->second); 561 *cmpNumbers*. If result is not 0, return it. 581 if (int Res = cmpNumbers(L->getValueID(), R->getValueID()))
|