Home
last modified time | relevance | path

Searched refs:ComputeTable (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp3112 auto ComputeTable = [&](bool First, bool Second) -> std::optional<bool> { in foldICmpBinOpWithConstantViaTruthTable() local
3126 if (auto Res = ComputeTable(First, Second)) in foldICmpBinOpWithConstantViaTruthTable()
3156 auto ComputeTable = [&](bool Op0Val, bool Op1Val) { in foldICmpAddConstant() local
3165 Table[0] = ComputeTable(false, false); in foldICmpAddConstant()
3166 Table[1] = ComputeTable(false, true); in foldICmpAddConstant()
3167 Table[2] = ComputeTable(true, false); in foldICmpAddConstant()
3168 Table[3] = ComputeTable(true, true); in foldICmpAddConstant()