Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h2163 return UnaryOperatorBits.HasFPFeatures ? 1 : 0; in numTrailingObjects()
2167 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2172 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2187 UnaryOperatorBits.Opc = UO_AddrOf; in UnaryOperator()
2188 UnaryOperatorBits.HasFPFeatures = HasFPFeatures; in UnaryOperator()
2200 return static_cast<Opcode>(UnaryOperatorBits.Opc); in getOpcode()
2202 void setOpcode(Opcode Opc) { UnaryOperatorBits.Opc = Opc; } in setOpcode()
2217 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow()
2218 void setCanOverflow(bool C) { UnaryOperatorBits.CanOverflow = C; } in setCanOverflow()
2315 if (UnaryOperatorBits.HasFPFeatures) in getFPFeaturesInEffect()
[all …]
H A DStmt.h1222 UnaryOperatorBitfields UnaryOperatorBits; in alignas() member
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4761 UnaryOperatorBits.Opc = opc; in UnaryOperator()
4762 UnaryOperatorBits.CanOverflow = CanOverflow; in UnaryOperator()
4763 UnaryOperatorBits.Loc = l; in UnaryOperator()
4764 UnaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in UnaryOperator()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3042 BitsUnpacker UnaryOperatorBits(Record[ASTStmtReader::NumStmtFields]); in ReadStmtFromStream() local
3043 UnaryOperatorBits.advance(ASTStmtReader::NumExprBits); in ReadStmtFromStream()
3044 bool HasFPFeatures = UnaryOperatorBits.getNextBit(); in ReadStmtFromStream()