Home
last modified time | relevance | path

Searched refs:getCharBox (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Optimizer/Builder/
H A DCharacterTest.cpp53 auto ty = strLit.getCharBox()->getAddr().getType(); in TEST_F()
67 auto substr = charHelper.createSubstring(*str.getCharBox(), {lb, ub}); in TEST_F()
H A DFIRBuilderTest.cpp302 EXPECT_TRUE(strLit.getCharBox() != nullptr); in TEST_F()
303 auto *charBox = strLit.getCharBox(); in TEST_F()
399 EXPECT_EQ(strLit.getCharBox()->getLen(), len); in TEST_F()
/llvm-project-15.0.7/flang/include/flang/Optimizer/Builder/
H A DBoxValue.h480 constexpr const CharBoxValue *getCharBox() const { in getCharBox() function
/llvm-project-15.0.7/flang/lib/Lower/
H A DVectorSubscripts.cpp421 const fir::CharBoxValue *charBox = element.getCharBox(); in getElementAt()
H A DHostAssociations.cpp204 const fir::CharBoxValue *charBox = args.hostValue.getCharBox(); in instantiateHostTuple()
H A DIntrinsicCall.cpp1611 if (const fir::CharBoxValue *charBox = val.getCharBox()) { in toValue()
1667 if (arg.getUnboxed() || arg.getCharBox()) in genElementalCall()
1682 if (!arg.getUnboxed() && !arg.getCharBox()) in genElementalCall()
1695 if (!arg.getUnboxed() && !arg.getCharBox()) in genElementalCall()
2572 if (const fir::CharBoxValue *charBox = args[i].getCharBox()) in genDateAndTime()
2961 const fir::CharBoxValue *charBox = args[0].getCharBox(); in genIchar()
3244 const fir::CharBoxValue *charBox = args[0].getCharBox(); in genLenTrim()
3333 const fir::CharBoxValue *charBox = args[0].getCharBox(); in genMerge()
H A DConvertExpr.cpp338 if (exv.getCharBox() != nullptr) in createInMemoryScalarCopy()
1244 const fir::CharBoxValue *lhsChar = lhs.getCharBox(); in genval()
1245 const fir::CharBoxValue *rhsChar = rhs.getCharBox(); in genval()
1278 const fir::CharBoxValue *charBox = scalarChar.getCharBox(); in replaceScalarCharacterLength()
2903 if (const fir::CharBoxValue *charBox = actualArg.getCharBox()) { in createScalarTempForArgThatMayBeAbsent()
3384 const fir::CharBoxValue *charBox = value.getCharBox(); in genScalarUserDefinedAssignmentCall()
5448 const fir::CharBoxValue *lchr = lhs.getCharBox(); in genarr()
5449 const fir::CharBoxValue *rchr = rhs.getCharBox(); in genarr()
H A DIO.cpp497 if (!exv.getCharBox()) in genOutputItemList()
H A DBridge.cpp2239 if (const fir::CharBoxValue *charBox = rhs.getCharBox()) in genAssignment()
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DFIRBuilder.cpp985 const fir::CharBoxValue *toChar = lhs.getCharBox(); in genScalarAssignment()
986 const fir::CharBoxValue *fromChar = rhs.getCharBox(); in genScalarAssignment()
H A DCharacter.cpp381 const auto *charBox = source.getCharBox(); in createTempFrom()