Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineInstr.h581 enum QueryType {
619 bool isPseudo(QueryType Type = IgnoreBundle) const {
623 bool isReturn(QueryType Type = AnyInBundle) const {
633 bool isCall(QueryType Type = AnyInBundle) const {
640 bool isBarrier(QueryType Type = AnyInBundle) const {
657 bool isBranch(QueryType Type = AnyInBundle) const {
694 bool isCompare(QueryType Type = IgnoreBundle) const {
706 bool isMoveReg(QueryType Type = IgnoreBundle) const {
716 bool isSelect(QueryType Type = IgnoreBundle) const {
807 bool mayLoad(QueryType Type = AnyInBundle) const {
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DLinkage.h85 using QueryType = variable
88 llvm::SmallDenseMap<QueryType, LinkageInfo, 8> CachedLinkageInfo;
90 static QueryType makeCacheKey(const NamedDecl *ND, LVComputationKind Kind) { in makeCacheKey()
91 return QueryType(ND, Kind.toBits()); in makeCacheKey()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMachineInstr.cpp557 bool MachineInstr::hasPropertyInBundle(uint64_t Mask, QueryType Type) const { in hasPropertyInBundle()