Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:FD

154   static CGBitFieldInfo MakeInfo(class CodeGenTypes &Types, const FieldDecl *FD,
161 static CGBitFieldInfo MakeInfo(CodeGenTypes &Types, const FieldDecl *FD,
246 /// field FD.
247 unsigned getLLVMFieldNo(const FieldDecl *FD) const {
248 assert(!FD->isBitField() && "Invalid call for bit-field decl!");
249 assert(FieldInfo.count(FD) && "Invalid field for record!");
250 return FieldInfo.lookup(FD);
265 /// \brief Return the BitFieldInfo that corresponds to the field FD.
266 const CGBitFieldInfo &getBitFieldInfo(const FieldDecl *FD) const {
267 assert(FD->isBitField() && "Invalid call for non bit-field decl!");
269 it = BitFields.find(FD);