Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:FD

99                                  const FieldDecl *FD,
184 /// field FD.
185 unsigned getLLVMFieldNo(const FieldDecl *FD) const {
186 FD = FD->getCanonicalDecl();
187 assert(FieldInfo.count(FD) && "Invalid field for record!");
188 return FieldInfo.lookup(FD);
203 /// \brief Return the BitFieldInfo that corresponds to the field FD.
204 const CGBitFieldInfo &getBitFieldInfo(const FieldDecl *FD) const {
205 FD = FD->getCanonicalDecl();
206 assert(FD->isBitField() && "Invalid call for non-bit-field decl!");
208 it = BitFields.find(FD);