Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmt.h2390 SwitchCase *FirstCase = nullptr; variable
2523 SwitchCase *getSwitchCaseList() { return FirstCase; } in getSwitchCaseList()
2524 const SwitchCase *getSwitchCaseList() const { return FirstCase; } in getSwitchCaseList()
2525 void setSwitchCaseList(SwitchCase *SC) { FirstCase = SC; } in setSwitchCaseList()
2542 SC->setNextSwitchCase(FirstCase); in addSwitchCase()
2543 FirstCase = SC; in addSwitchCase()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp308 auto FirstCase = *SI->case_begin(); in ConstantFoldTerminator() local
310 FirstCase.getCaseValue(), "cond"); in ConstantFoldTerminator()
314 FirstCase.getCaseSuccessor(), in ConstantFoldTerminator()
H A DSimplifyCFG.cpp5972 ConstantInt *FirstCase = ResultVector[0].second[0]; in foldSwitchToSelect() local
5982 Builder.CreateICmpEQ(Condition, FirstCase, "switch.selectcmp"); in foldSwitchToSelect()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmt.cpp1055 : Stmt(SwitchStmtClass), FirstCase(nullptr), LParenLoc(LParenLoc), in SwitchStmt()