Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/tools/clang-diff/
H A DClangDiff.cpp267 diff::SyntaxTree &Tree, bool IsLeft, in printHtmlForNode() argument
273 if (IsLeft) { in printHtmlForNode()
306 Offset = printHtmlForNode(OS, Diff, Tree, IsLeft, Child, Offset); in printHtmlForNode()
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp5846 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerRotateWithReverseRotate() local
5847 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerRotateWithReverseRotate()
5863 bool IsLeft = MI.getOpcode() == TargetOpcode::G_ROTL; in lowerRotate() local
5868 unsigned RevRot = IsLeft ? TargetOpcode::G_ROTR : TargetOpcode::G_ROTL; in lowerRotate()
5874 unsigned FShOpc = IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerRotate()
5875 unsigned RevFsh = !IsLeft ? TargetOpcode::G_FSHL : TargetOpcode::G_FSHR; in lowerRotate()
5895 unsigned ShOpc = IsLeft ? TargetOpcode::G_SHL : TargetOpcode::G_LSHR; in lowerRotate()
5896 unsigned RevShiftOpc = IsLeft ? TargetOpcode::G_LSHR : TargetOpcode::G_SHL; in lowerRotate()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp7223 bool IsLeft = Node->getOpcode() == ISD::ROTL; in expandROT() local
7232 unsigned RevRot = IsLeft ? ISD::ROTR : ISD::ROTL; in expandROT()
7247 unsigned ShOpc = IsLeft ? ISD::SHL : ISD::SRL; in expandROT()
7248 unsigned HsOpc = IsLeft ? ISD::SRL : ISD::SHL; in expandROT()