Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/AST/
H A DExpr.h2169 return UnaryOperatorBits.HasFPFeatures ? 1 : 0; in numTrailingObjects()
2173 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2178 assert(UnaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
2193 UnaryOperatorBits.Opc = UO_AddrOf; in UnaryOperator()
2194 UnaryOperatorBits.HasFPFeatures = HasFPFeatures; in UnaryOperator()
2206 return static_cast<Opcode>(UnaryOperatorBits.Opc); in getOpcode()
2208 void setOpcode(Opcode Opc) { UnaryOperatorBits.Opc = Opc; } in setOpcode()
2223 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow()
2224 void setCanOverflow(bool C) { UnaryOperatorBits.CanOverflow = C; } in setCanOverflow()
2321 if (UnaryOperatorBits.HasFPFeatures) in getFPFeaturesInEffect()
[all …]
H A DStmt.h1031 UnaryOperatorBitfields UnaryOperatorBits; in alignas() member
/llvm-project-15.0.7/clang/lib/AST/
H A DExpr.cpp4592 UnaryOperatorBits.Opc = opc; in UnaryOperator()
4593 UnaryOperatorBits.CanOverflow = CanOverflow; in UnaryOperator()
4594 UnaryOperatorBits.Loc = l; in UnaryOperator()
4595 UnaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in UnaryOperator()