HomeSort by: relevance | last modified time | path
    Searched defs:CTy (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 359 Type *CTy;
361 if (U->isOffsetOf(CTy, FieldNo)) {
362 OS << "offsetof(" << *CTy << ", ";
567 bool SCEVUnknown::isOffsetOf(Type *&CTy, Constant *&FieldNo) const {
580 CTy = Ty;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 144 QualType CTy =
146 CTy = getContext().getCanonicalType(CTy);
158 SVal Result = svalBuilder.evalCast(evalBinOp(state, Op, V, RightV, CTy),
159 B->getType(), CTy);
173 Result = svalBuilder.evalCast(LHSVal, CTy, LTy);
178 LHSVal = svalBuilder.evalCast(Result, LTy, CTy);
  /src/external/apache2/llvm/dist/llvm/lib/IR/
DIBuilder.cpp 518 auto *CTy = DICompositeType::get(
523 AllEnumTypes.push_back(CTy);
524 trackIfUnresolved(CTy);
525 return CTy;
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFAbstractMemberAccess.cpp 170 uint32_t GetFieldInfo(uint32_t InfoKind, DICompositeType *CTy,
256 static uint32_t calcArraySize(const DICompositeType *CTy, uint32_t StartDim) {
257 DINodeArray Elements = CTy->getElements();
445 const auto *CTy = dyn_cast<DICompositeType>(CType);
446 assert(PTy && CTy && "ParentType or ChildType is null or not composite");
453 uint32_t CTyTag = CTy->getTag();
460 return PTy->getBaseType() == CTy->getBaseType();
468 return dyn_cast<DICompositeType>(stripQualifiers(Ty)) == CTy;
605 DICompositeType *CTy,
612 uint32_t Tag = CTy->getTag()
    [all...]
BTFDebug.cpp 479 void BTFDebug::visitStructType(const DICompositeType *CTy, bool IsStruct,
481 const DINodeArray Elements = CTy->getElements();
497 std::make_unique<BTFTypeStruct>(CTy, IsStruct, HasBitField, VLen);
499 TypeId = addType(std::move(TypeEntry), CTy);
506 void BTFDebug::visitArrayType(const DICompositeType *CTy, uint32_t &TypeId) {
509 const DIType *ElemType = CTy->getBaseType();
513 DINodeArray Elements = CTy->getElements();
527 ElemTypeId = addType(std::move(TypeEntry), CTy);
545 void BTFDebug::visitEnumType(const DICompositeType *CTy, uint32_t &TypeId) {
546 DINodeArray Elements = CTy->getElements()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 581 else if (auto *CTy = dyn_cast<DICompositeType>(Ty)) {
583 (Ty->getRawName() || CTy->getRawIdentifier())) {
585 if (MDString *TypeId = CTy->getRawIdentifier())
586 DD->addDwarfTypeUnitType(getCU(), TypeId->getString(), TyDIE, CTy);
589 finishNonUnitTypeDIE(TyDIE, CTy);
593 constructTypeDIE(TyDIE, CTy);
802 void DwarfUnit::constructTypeDIE(DIE &Buffer, const DISubroutineType *CTy) {
804 auto Elements = cast<DISubroutineType>(CTy)->getTypeArray();
824 if (CTy->getCC() && CTy->getCC() != dwarf::DW_CC_normal
    [all...]
CodeViewDebug.cpp 2597 const auto *CTy = cast<DICompositeType>(Ty);
2605 if (!CTy->getName().empty() || !CTy->getIdentifier().empty()) {
2606 TypeIndex FwdDeclTI = getTypeIndex(CTy);
2611 if (CTy->isForwardDecl())
2618 auto InsertResult = CompleteTypeIndices.insert({CTy, TypeIndex()});
2623 switch (CTy->getTag()) {
2626 TI = lowerCompleteTypeClass(CTy);
2629 TI = lowerCompleteTypeUnion(CTy);
2639 CompleteTypeIndices[CTy] = TI
    [all...]

Completed in 30 milliseconds