Home
last modified time | relevance | path

Searched refs:charType (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/flang/test/Semantics/
H A Dresolve89.f90131 type charType type
142 end type charType
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DCharacter.cpp563 auto charType = fir::CharacterType::get(builder.getContext(), kind, len); in createCharacterTemp() local
564 auto addr = builder.create<fir::AllocaOp>(loc, charType); in createCharacterTemp()
644 auto charType = fir::CharacterType::get(builder.getContext(), kind, 1); in createSingletonFromCode() local
648 auto undef = builder.create<fir::UndefOp>(loc, charType); in createSingletonFromCode()
650 return builder.create<fir::InsertValueOp>(loc, charType, undef, cast, in createSingletonFromCode()
681 auto charType = recoverCharacterType(memrefType); in getLength() local
682 assert(charType && "must be a character type"); in getLength()
683 if (charType.hasConstantLen()) in getLength()
685 charType.getLen()); in getLength()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dtype.cpp377 const auto &charType{type.characterTypeSpec()}; in From() local
378 return DynamicType{static_cast<int>(*kind), charType.length()}; in From()
/llvm-project-15.0.7/clang/utils/ABITest/
H A DABITestGen.py518 charType = BuiltinType('char',1)
524 sbtg = FixedTypeGenerator([charType, intType, floatType, doubleType])
550 type = { 'i8' : charType,
/llvm-project-15.0.7/flang/lib/Lower/
H A DConvertExpr.cpp1282 auto charType = in replaceScalarCharacterLength() local
1284 if (charType.hasConstantLen()) { in replaceScalarCharacterLength()
1288 builder.getContext(), charType.getFKind(), newLen); in replaceScalarCharacterLength()
2417 if (auto charType = elementType.dyn_cast<fir::CharacterType>()) { in genArrayTempFromMold() local
2421 if (charType.hasDynamicLen() && allocMemTypeParams.empty()) in genArrayTempFromMold()
H A DIntrinsicCall.cpp2980 fir::CharacterType charType = in genIchar() local
2982 mlir::Type toTy = builder.getRefType(charType); in genIchar()