Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp1407 auto InsertPtOrError = in importInstructionNodeRenderer() local
1409 if (!InsertPtOrError) in importInstructionNodeRenderer()
1410 return InsertPtOrError.takeError(); in importInstructionNodeRenderer()
1412 InsertPt = *InsertPtOrError; in importInstructionNodeRenderer()
1444 auto InsertPtOrError = createInstructionRenderer(M.actions_end(), M, Dst); in createAndImportInstructionRenderer() local
1445 if (auto Error = InsertPtOrError.takeError()) in createAndImportInstructionRenderer()
1448 action_iterator InsertPt = InsertPtOrError.get(); in createAndImportInstructionRenderer()
1478 auto InsertPtOrError = createInstructionRenderer(InsertPt, M, Dst); in createAndImportSubInstructionRenderer() local
1482 if (auto Error = InsertPtOrError.takeError()) in createAndImportSubInstructionRenderer()
1486 *static_cast<BuildMIAction *>(InsertPtOrError.get()->get()); in createAndImportSubInstructionRenderer()
[all …]