Home
last modified time | relevance | path

Searched refs:InfoPtr (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DIdentifierTable.h770 uintptr_t InfoPtr = 0; variable
773 InfoPtr = reinterpret_cast<uintptr_t>(II); in Selector()
776 InfoPtr |= nArgs+1; in Selector()
780 InfoPtr = reinterpret_cast<uintptr_t>(SI); in Selector()
782 InfoPtr |= MultiArg; in Selector()
796 return InfoPtr & ArgFlags; in getIdentifierInfoFlag()
807 explicit Selector(uintptr_t V) : InfoPtr(V) {} in Selector()
811 return InfoPtr == RHS.InfoPtr;
814 return InfoPtr != RHS.InfoPtr;
818 return reinterpret_cast<void*>(InfoPtr); in getAsOpaquePtr()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DOnDiskHashTable.h343 iterator find(const external_key_type &EKey, Info *InfoPtr = nullptr) {
346 return find_hashed(IKey, KeyHash, InfoPtr);
351 Info *InfoPtr = nullptr) {
354 if (!InfoPtr)
355 InfoPtr = &InfoObj;
388 InfoPtr->ReadKey((const unsigned char *const)Items, L.first);
391 if (!InfoPtr->EqualKey(X, IKey)) {
397 return iterator(X, Items + L.first, L.second, InfoPtr);
/llvm-project-15.0.7/clang/lib/Sema/
H A DIdentifierResolver.cpp419 void *InfoPtr = D->getDeclName().getFETokenInfo(); in incrementSlowCase() local
420 assert(!isDeclPtr(InfoPtr) && "Decl with wrong id ?"); in incrementSlowCase()
421 IdDeclInfo *Info = toIdDeclInfo(InfoPtr); in incrementSlowCase()
/llvm-project-15.0.7/clang/lib/Analysis/
H A DThreadSafety.cpp1071 std::unique_ptr<BeforeInfo> &InfoPtr = BMap[Vd]; in insertAttrExprs() local
1072 if (!InfoPtr) in insertAttrExprs()
1073 InfoPtr.reset(new BeforeInfo()); in insertAttrExprs()
1074 Info = InfoPtr.get(); in insertAttrExprs()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DDeclarationName.h365 DeclarationName(Selector Sel) : Ptr(Sel.InfoPtr) {} in DeclarationName()
/llvm-project-15.0.7/clang/lib/Basic/
H A DIdentifierTable.cpp532 if (InfoPtr == 0) in getAsString()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExpr.cpp3357 auto *InfoPtr = in EmitCheck() local
3360 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCheck()
3361 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCheck()
3362 Args.push_back(Builder.CreateBitCast(InfoPtr, Int8PtrTy)); in EmitCheck()
3418 auto *InfoPtr = in EmitCfiSlowPathCheck() local
3421 InfoPtr->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in EmitCfiSlowPathCheck()
3422 CGM.getSanitizerMetadata()->disableSanitizerForGlobal(InfoPtr); in EmitCfiSlowPathCheck()
3429 SlowPathFn, {TypeId, Ptr, Builder.CreateBitCast(InfoPtr, Int8PtrTy)}); in EmitCfiSlowPathCheck()