Lines Matching refs:CTA
4272 llvm::GlobalVariable *&CTA = CatchableTypeArrays[T]; in getCatchableTypeArray() local
4273 if (CTA) in getCatchableTypeArray()
4274 return CTA; in getCatchableTypeArray()
4376 CTA = new llvm::GlobalVariable( in getCatchableTypeArray()
4379 CTA->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); in getCatchableTypeArray()
4380 CTA->setSection(".xdata"); in getCatchableTypeArray()
4381 if (CTA->isWeakForLinker()) in getCatchableTypeArray()
4382 CTA->setComdat(CGM.getModule().getOrInsertComdat(CTA->getName())); in getCatchableTypeArray()
4383 return CTA; in getCatchableTypeArray()
4392 llvm::GlobalVariable *CTA = getCatchableTypeArray(T); in getThrowInfo() local
4398 cast<llvm::ConstantInt>(CTA->getInitializer()->getAggregateElement(0U)) in getThrowInfo()
4434 llvm::Constant *PointerToCatchableTypes = getImageRelativeConstant(CTA); in getThrowInfo()