Searched refs:SpecialTypes (Results 1 – 3 of 3) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/ |
| HD | ASTWriter.cpp | 4595 RecordData SpecialTypes; in WriteASTCore() local 4596 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore() 4597 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore() 4598 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore() 4599 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore() 4600 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore() 4601 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore() 4602 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore() 4603 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore() 4722 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
|
| HD | ASTReader.cpp | 3233 if (SpecialTypes.empty()) { in ReadASTBlock() 3235 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock() 3239 if (SpecialTypes.size() != Record.size()) { in ReadASTBlock() 3246 if (!SpecialTypes[I]) in ReadASTBlock() 3247 SpecialTypes[I] = ID; in ReadASTBlock() 4825 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext() 4826 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext() 4831 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext() 4852 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext() 4873 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/clang/include/clang/Serialization/ |
| HD | ASTReader.h | 838 SmallVector<uint64_t, 16> SpecialTypes; variable
|