Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h3978 assert(BinaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
3983 assert(BinaryOperatorBits.HasFPFeatures); in getTrailingFPFeatures()
3996 BinaryOperatorBits.Opc = BO_Comma; in BinaryOperator()
3997 BinaryOperatorBits.ExcludedOverflowPattern = false; in BinaryOperator()
4008 SourceLocation getOperatorLoc() const { return BinaryOperatorBits.OpLoc; } in getOperatorLoc()
4009 void setOperatorLoc(SourceLocation L) { BinaryOperatorBits.OpLoc = L; } in setOperatorLoc()
4012 return static_cast<Opcode>(BinaryOperatorBits.Opc); in getOpcode()
4014 void setOpcode(Opcode Opc) { BinaryOperatorBits.Opc = Opc; } in setOpcode()
4150 void setHasStoredFPFeatures(bool B) { BinaryOperatorBits.HasFPFeatures = B; } in setHasStoredFPFeatures()
4151 bool hasStoredFPFeatures() const { return BinaryOperatorBits.HasFPFeatures; } in hasStoredFPFeatures()
[all …]
H A DStmt.h1347 BinaryOperatorBitfields BinaryOperatorBits;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp4855 BinaryOperatorBits.Opc = opc; in BinaryOperator()
4858 BinaryOperatorBits.OpLoc = opLoc; in BinaryOperator()
4859 BinaryOperatorBits.ExcludedOverflowPattern = false; in BinaryOperator()
4863 BinaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in BinaryOperator()
4874 BinaryOperatorBits.Opc = opc; in BinaryOperator()
4875 BinaryOperatorBits.ExcludedOverflowPattern = false; in BinaryOperator()
4878 BinaryOperatorBits.OpLoc = opLoc; in BinaryOperator()
4881 BinaryOperatorBits.HasFPFeatures = FPFeatures.requiresTrailingStorage(); in BinaryOperator()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3291 BitsUnpacker BinaryOperatorBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
3292 BinaryOperatorBits.advance(/*Size of opcode*/ 6); in ReadStmtFromStream()
3293 bool HasFPFeatures = BinaryOperatorBits.getNextBit(); in ReadStmtFromStream()
3299 BitsUnpacker BinaryOperatorBits(Record[ASTStmtReader::NumExprFields]); in ReadStmtFromStream() local
3300 BinaryOperatorBits.advance(/*Size of opcode*/ 6); in ReadStmtFromStream()
3301 bool HasFPFeatures = BinaryOperatorBits.getNextBit(); in ReadStmtFromStream()