ΒΆbool parseMachineBasicBlockDefinitions(
    llvm::PerFunctionMIParsingState& PFS,
    llvm::StringRef Src,
    llvm::SMDiagnostic& Error)

Description

Parse the machine basic block definitions, and skip the machine instructions. This function runs the first parsing pass on the machine function's body. It parses only the machine basic block definitions and creates the machine basic blocks in the given machine function. The machine instructions aren't parsed during the first pass because all the machine basic blocks aren't defined yet - this makes it impossible to resolve the machine basic block references. Return true if an error occurred.

Declared at: llvm/include/llvm/CodeGen/MIRParser/MIParser.h:204

Parameters

llvm::PerFunctionMIParsingState& PFS
llvm::StringRef Src
llvm::SMDiagnostic& Error