Lines Matching refs:report
221 void report(const char *msg, const MachineFunction *MF);
222 void report(const char *msg, const MachineBasicBlock *MBB);
223 void report(const char *msg, const MachineInstr *MI);
224 void report(const char *msg, const MachineOperand *MO, unsigned MONum,
226 void report(const Twine &Msg, const MachineInstr *MI);
350 report("Function has NoVRegs property but there are VReg operands", &MF); in verifyProperties()
403 report("Bad instruction parent pointer", &MBB); in verify()
410 report("Missing BundledPred flag, " in verify()
414 report("BundledPred flag is set, " in verify()
425 report("No bundle header", &MI); in verify()
432 report("Instruction has operand with wrong parent set", &MI); in verify()
444 report("BundledSucc flag set on last instruction in block", &MBB.back()); in verify()
460 void MachineVerifier::report(const char *msg, const MachineFunction *MF) { in report() function in MachineVerifier
475 void MachineVerifier::report(const char *msg, const MachineBasicBlock *MBB) { in report() function in MachineVerifier
477 report(msg, MBB->getParent()); in report()
486 void MachineVerifier::report(const char *msg, const MachineInstr *MI) { in report() function in MachineVerifier
488 report(msg, MI->getParent()); in report()
495 void MachineVerifier::report(const char *msg, const MachineOperand *MO, in report() function in MachineVerifier
498 report(msg, MO->getParent()); in report()
504 void MachineVerifier::report(const Twine &Msg, const MachineInstr *MI) { in report() function in MachineVerifier
505 report(Msg.str().c_str(), MI); in report()
581 report("MBB has duplicate entries in its predecessor list.", &MBB); in visitMachineFunctionBefore()
585 report("MBB has duplicate entries in its successor list.", &MBB); in visitMachineFunctionBefore()
607 report("MBB has allocatable live-in, but isn't entry or landing-pad.", MBB); in visitMachineBasicBlockBefore()
619 report("MBB has successor that isn't part of the function.", MBB); in visitMachineBasicBlockBefore()
621 report("Inconsistent CFG", MBB); in visitMachineBasicBlockBefore()
630 report("MBB has predecessor that isn't part of the function.", MBB); in visitMachineBasicBlockBefore()
632 report("Inconsistent CFG", MBB); in visitMachineBasicBlockBefore()
646 report("MBB has more than one landing pad successor", MBB); in visitMachineBasicBlockBefore()
659 report("MBB exits via unconditional fall-through but ends with a " in visitMachineBasicBlockBefore()
663 report("MBB exits via unconditional fall-through but has a condition!", in visitMachineBasicBlockBefore()
669 report("MBB exits via unconditional branch but doesn't contain " in visitMachineBasicBlockBefore()
672 report("MBB exits via unconditional branch but doesn't end with a " in visitMachineBasicBlockBefore()
675 report("MBB exits via unconditional branch but the branch isn't a " in visitMachineBasicBlockBefore()
681 report("MBB exits via conditional branch/fall-through but doesn't " in visitMachineBasicBlockBefore()
684 report("MBB exits via conditional branch/fall-through but ends with a " in visitMachineBasicBlockBefore()
687 report("MBB exits via conditional branch/fall-through but the branch " in visitMachineBasicBlockBefore()
694 report("MBB exits via conditional branch/branch but doesn't " in visitMachineBasicBlockBefore()
697 report("MBB exits via conditional branch/branch but doesn't end with a " in visitMachineBasicBlockBefore()
700 report("MBB exits via conditional branch/branch but the branch " in visitMachineBasicBlockBefore()
704 report("MBB exits via conditional branch/branch but there's no " in visitMachineBasicBlockBefore()
708 report("analyzeBranch returned invalid data!", MBB); in visitMachineBasicBlockBefore()
714 report("MBB exits via jump or conditional branch, but its target isn't a " in visitMachineBasicBlockBefore()
718 report("MBB exits via conditional branch, but its target isn't a CFG " in visitMachineBasicBlockBefore()
733 report("MBB conditionally falls through out of function!", MBB); in visitMachineBasicBlockBefore()
735 report("MBB exits via conditional branch/fall-through but the CFG " in visitMachineBasicBlockBefore()
753 report("MBB has unexpected successors which are not branch targets, " in visitMachineBasicBlockBefore()
763 report("MBB live-in list contains non-physical register", MBB); in visitMachineBasicBlockBefore()
791 report("Instruction index out of order", MI); in visitMachineBundleBefore()
802 report("Non-terminator instruction after the first terminator", MI); in visitMachineBundleBefore()
812 report("Too few operands on inline asm", MI); in verifyInlineAsm()
816 report("Asm string must be an external symbol", MI); in verifyInlineAsm()
818 report("Asm flags must be an immediate", MI); in verifyInlineAsm()
823 report("Unknown asm flags", &MI->getOperand(1), 1); in verifyInlineAsm()
838 report("Missing operands in last group", MI); in verifyInlineAsm()
848 report("Expected implicit register after groups", &MO, OpNo); in verifyInlineAsm()
858 report("operand types must be all-vector or all-scalar", MI); in verifyVectorElementMatch()
868 report("operand types must preserve number of vector elements", MI); in verifyVectorElementMatch()
877 report("Unexpected generic instruction in a Selected function", MI); in verifyPreISelGenericInstruction()
893 report("Branch instruction is missing a basic block operand or " in verifyPreISelGenericInstruction()
912 report("generic instruction must use register operands", MI); in verifyPreISelGenericInstruction()
925 report("Type mismatch in generic instruction", MO, I, OpTy); in verifyPreISelGenericInstruction()
928 report("Generic instruction is missing a virtual register type", MO, I); in verifyPreISelGenericInstruction()
936 report("Generic instruction cannot have physical register", MO, I); in verifyPreISelGenericInstruction()
945 report(ErrorInfo.data(), MI); in verifyPreISelGenericInstruction()
955 report(Twine(OpcName, " expects an immediate operand #2"), MI); in verifyPreISelGenericInstruction()
964 report(Twine(OpcName, " size must be >= 1"), MI); in verifyPreISelGenericInstruction()
969 report(Twine(OpcName, " size must be less than source bit width"), MI); in verifyPreISelGenericInstruction()
974 report( in verifyPreISelGenericInstruction()
981 report( in verifyPreISelGenericInstruction()
992 report("Instruction cannot use a vector result type", MI); in verifyPreISelGenericInstruction()
996 report("G_CONSTANT operand must be cimm", MI); in verifyPreISelGenericInstruction()
1002 report("inconsistent constant size", MI); in verifyPreISelGenericInstruction()
1005 report("G_FCONSTANT operand must be fpimm", MI); in verifyPreISelGenericInstruction()
1012 report("inconsistent constant size", MI); in verifyPreISelGenericInstruction()
1025 report("Generic memory instruction must access a pointer", MI); in verifyPreISelGenericInstruction()
1030 report("Generic instruction accessing memory must have one mem operand", in verifyPreISelGenericInstruction()
1037 report("Generic extload must have a narrower memory type", MI); in verifyPreISelGenericInstruction()
1040 report("load memory size cannot exceed result size", MI); in verifyPreISelGenericInstruction()
1043 report("store memory size cannot exceed value size", MI); in verifyPreISelGenericInstruction()
1060 report("Generic Instruction G_PHI has operands with incompatible/missing " in verifyPreISelGenericInstruction()
1072 report("bitcast cannot convert between pointers and other types", MI); in verifyPreISelGenericInstruction()
1075 report("bitcast sizes must match", MI); in verifyPreISelGenericInstruction()
1078 report("bitcast must change the type", MI); in verifyPreISelGenericInstruction()
1097 report("inttoptr result type must be a pointer", MI); in verifyPreISelGenericInstruction()
1099 report("inttoptr source type must not be a pointer", MI); in verifyPreISelGenericInstruction()
1102 report("ptrtoint source type must be a pointer", MI); in verifyPreISelGenericInstruction()
1104 report("ptrtoint result type must not be a pointer", MI); in verifyPreISelGenericInstruction()
1108 report("addrspacecast types must be pointers", MI); in verifyPreISelGenericInstruction()
1111 report("addrspacecast must convert different address spaces", MI); in verifyPreISelGenericInstruction()
1125 report("gep first operand must be a pointer", MI); in verifyPreISelGenericInstruction()
1128 report("gep offset operand must not be a pointer", MI); in verifyPreISelGenericInstruction()
1141 report("ptrmask result type must be a pointer", MI); in verifyPreISelGenericInstruction()
1144 report("ptrmask mask type must be an integer", MI); in verifyPreISelGenericInstruction()
1169 report("Generic extend/truncate can not operate on pointers", MI); in verifyPreISelGenericInstruction()
1178 report("Generic extend has destination type no larger than source", MI); in verifyPreISelGenericInstruction()
1183 report("Generic truncate has destination type no smaller than source", in verifyPreISelGenericInstruction()
1208 report("G_MERGE_VALUES cannot operate on vectors", MI); in verifyPreISelGenericInstruction()
1212 report("G_MERGE_VALUES result size is inconsistent", MI); in verifyPreISelGenericInstruction()
1216 report("G_MERGE_VALUES source types do not match", MI); in verifyPreISelGenericInstruction()
1227 report("G_UNMERGE_VALUES destination types do not match", MI); in verifyPreISelGenericInstruction()
1231 report("G_UNMERGE_VALUES source operand does not cover dest operands", in verifyPreISelGenericInstruction()
1242 report("G_BUILD_VECTOR must produce a vector from scalar operands", MI); in verifyPreISelGenericInstruction()
1247 report("G_BUILD_VECTOR result element type must match source type", MI); in verifyPreISelGenericInstruction()
1250 report("G_BUILD_VECTOR must have an operand for each elemement", MI); in verifyPreISelGenericInstruction()
1255 report("G_BUILD_VECTOR source operand types are not homogeneous", MI); in verifyPreISelGenericInstruction()
1266 report("G_BUILD_VECTOR_TRUNC must produce a vector from scalar operands", in verifyPreISelGenericInstruction()
1271 report("G_BUILD_VECTOR_TRUNC source operand types are not homogeneous", in verifyPreISelGenericInstruction()
1275 report("G_BUILD_VECTOR_TRUNC source operand types are not larger than " in verifyPreISelGenericInstruction()
1286 report("G_CONCAT_VECTOR requires vector source and destination operands", in verifyPreISelGenericInstruction()
1290 report("G_CONCAT_VECTOR requires at least 2 source operands", MI); in verifyPreISelGenericInstruction()
1295 report("G_CONCAT_VECTOR source operand types are not homogeneous", MI); in verifyPreISelGenericInstruction()
1299 report("G_CONCAT_VECTOR num dest and source elements should match", MI); in verifyPreISelGenericInstruction()
1309 report("Generic vector icmp/fcmp must preserve number of lanes", MI); in verifyPreISelGenericInstruction()
1316 report("extract source must be a register", MI); in verifyPreISelGenericInstruction()
1322 report("extract offset must be a constant", MI); in verifyPreISelGenericInstruction()
1329 report("extract source must be larger than result", MI); in verifyPreISelGenericInstruction()
1332 report("extract reads past end of register", MI); in verifyPreISelGenericInstruction()
1338 report("insert source must be a register", MI); in verifyPreISelGenericInstruction()
1344 report("insert offset must be a constant", MI); in verifyPreISelGenericInstruction()
1352 report("inserted size must be smaller than total register", MI); in verifyPreISelGenericInstruction()
1355 report("insert writes past end of register", MI); in verifyPreISelGenericInstruction()
1361 report("G_JUMP_TABLE source operand must be a jump table index", MI); in verifyPreISelGenericInstruction()
1364 report("G_JUMP_TABLE dest operand must have a pointer type", MI); in verifyPreISelGenericInstruction()
1369 report("G_BRJT src operand 0 must be a pointer type", MI); in verifyPreISelGenericInstruction()
1372 report("G_BRJT src operand 1 must be a jump table index", MI); in verifyPreISelGenericInstruction()
1376 report("G_BRJT src operand 2 must be a scalar reg type", MI); in verifyPreISelGenericInstruction()
1385 report("G_INTRINSIC first src operand must be an intrinsic ID", MI); in verifyPreISelGenericInstruction()
1397 report("G_INTRINSIC used with intrinsic that accesses memory", MI); in verifyPreISelGenericInstruction()
1401 report("G_INTRINSIC_W_SIDE_EFFECTS used with readnone intrinsic", MI); in verifyPreISelGenericInstruction()
1410 report("G_SEXT_INREG expects an immediate operand #2", MI); in verifyPreISelGenericInstruction()
1417 report("G_SEXT_INREG size must be >= 1", MI); in verifyPreISelGenericInstruction()
1419 report("G_SEXT_INREG size must be less than source bit width", MI); in verifyPreISelGenericInstruction()
1425 report("Incorrect mask operand type for G_SHUFFLE_VECTOR", MI); in verifyPreISelGenericInstruction()
1434 report("Source operands must be the same type", MI); in verifyPreISelGenericInstruction()
1437 report("G_SHUFFLE_VECTOR cannot change element type", MI); in verifyPreISelGenericInstruction()
1447 report("Wrong result type for shufflemask", MI); in verifyPreISelGenericInstruction()
1454 report("Out of bounds shuffle index", MI); in verifyPreISelGenericInstruction()
1465 report("dst operand 0 must be a pointer type", MI); in verifyPreISelGenericInstruction()
1470 report("src operand 1 must be a scalar reg type", MI); in verifyPreISelGenericInstruction()
1475 report("src operand 2 must be an immediate type", MI); in verifyPreISelGenericInstruction()
1484 report("memcpy/memmove must have 2 memory operands", MI); in verifyPreISelGenericInstruction()
1490 report("wrong memory operand types", MI); in verifyPreISelGenericInstruction()
1495 report("inconsistent memory operand sizes", MI); in verifyPreISelGenericInstruction()
1501 report("memory instruction operand must be a pointer", MI); in verifyPreISelGenericInstruction()
1506 report("inconsistent store address space", MI); in verifyPreISelGenericInstruction()
1508 report("inconsistent load address space", MI); in verifyPreISelGenericInstruction()
1517 report(Twine(Name, " must have 1 memory operand"), MI); in verifyPreISelGenericInstruction()
1522 report(Twine(Name, " memory operand must be a store"), MI); in verifyPreISelGenericInstruction()
1528 report(Twine(Name, " operand must be a pointer"), MI); in verifyPreISelGenericInstruction()
1533 report("inconsistent " + Twine(Name, " address space"), MI); in verifyPreISelGenericInstruction()
1543 report("Vector reduction requires a scalar destination type", MI); in verifyPreISelGenericInstruction()
1545 report("Sequential FADD/FMUL vector reduction requires a scalar 1st operand", MI); in verifyPreISelGenericInstruction()
1547 report("Sequential FADD/FMUL vector reduction must have a vector 2nd operand", MI); in verifyPreISelGenericInstruction()
1566 report("Vector reduction requires a scalar destination type", MI); in verifyPreISelGenericInstruction()
1568 report("Vector reduction requires vector source=", MI); in verifyPreISelGenericInstruction()
1576 report("Bitfield extraction is not supported on vectors", MI); in verifyPreISelGenericInstruction()
1586 report("Rotate requires operands to be either all scalars or all vectors", in verifyPreISelGenericInstruction()
1601 report("Too few operands", MI); in visitMachineInstrBefore()
1609 report("Found PHI instruction with NoPHIs property set", MI); in visitMachineInstrBefore()
1612 report("Found PHI instruction after non-PHI", MI); in visitMachineInstrBefore()
1623 report("Unspillable Terminator does not define a reg", MI); in visitMachineInstrBefore()
1627 report("Unspillable Terminator expected to have at most one use!", MI); in visitMachineInstrBefore()
1635 report("Missing DebugLoc for debug instruction", MI); in visitMachineInstrBefore()
1640 report("Metadata instruction should not have a value tracking number", MI); in visitMachineInstrBefore()
1645 report("Missing mayLoad flag", MI); in visitMachineInstrBefore()
1647 report("Missing mayStore flag", MI); in visitMachineInstrBefore()
1656 report("Debug instruction has a slot index", MI); in visitMachineInstrBefore()
1659 report("Instruction inside bundle has a slot index", MI); in visitMachineInstrBefore()
1662 report("Missing slot index", MI); in visitMachineInstrBefore()
1674 report(ErrorInfo.data(), MI); in visitMachineInstrBefore()
1689 report("Copy Instruction is illegal with mismatching types", MI); in visitMachineInstrBefore()
1725 report("Copy Instruction is illegal with mismatching sizes", MI); in visitMachineInstrBefore()
1737 report("meta operands to STATEPOINT not constant!", MI); in visitMachineInstrBefore()
1743 report("stack map constant to STATEPOINT is out of range!", MI); in visitMachineInstrBefore()
1749 report("stack map constant to STATEPOINT not well formed!", MI); in visitMachineInstrBefore()
1765 report("STATEPOINT defs expected to be tied", MI); in visitMachineInstrBefore()
1769 report("STATEPOINT def tied to non-gc operand", MI); in visitMachineInstrBefore()
1791 report("Explicit definition must be a register", MO, MONum); in visitMachineOperand()
1793 report("Explicit definition marked as use", MO, MONum); in visitMachineOperand()
1795 report("Explicit definition marked as implicit", MO, MONum); in visitMachineOperand()
1804 report("Explicit operand marked as def", MO, MONum); in visitMachineOperand()
1806 report("Explicit operand marked as implicit", MO, MONum); in visitMachineOperand()
1812 report("Expected a register operand.", MO, MONum); in visitMachineOperand()
1817 report("Expected a non-register operand.", MO, MONum); in visitMachineOperand()
1824 report("Tied use must be a register", MO, MONum); in visitMachineOperand()
1826 report("Operand should be tied", MO, MONum); in visitMachineOperand()
1828 report("Tied def doesn't match MCInstrDesc", MO, MONum); in visitMachineOperand()
1832 report("Tied counterpart must be a register", &MOTied, TiedTo); in visitMachineOperand()
1835 report("Tied physical registers must match.", &MOTied, TiedTo); in visitMachineOperand()
1838 report("Explicit operand should not be tied", MO, MONum); in visitMachineOperand()
1842 report("Extra explicit operand on non-variadic instruction", MO, MONum); in visitMachineOperand()
1858 report("Must be tied to a register", MO, MONum); in visitMachineOperand()
1860 report("Missing tie flags on tied operand", MO, MONum); in visitMachineOperand()
1862 report("Inconsistent tie links", MO, MONum); in visitMachineOperand()
1866 report("Explicit def tied to explicit use without tie constraint", in visitMachineOperand()
1870 report("Explicit def should be tied to implicit use", MO, MONum); in visitMachineOperand()
1887 report("Two-address instruction operands must be identical", MO, MONum); in visitMachineOperand()
1894 report("Illegal subregister index for physical register", MO, MONum); in visitMachineOperand()
1901 report("Illegal physical register for instruction", MO, MONum); in visitMachineOperand()
1909 report("isRenamable set on reserved register", MO, MONum); in visitMachineOperand()
1914 report("Use-reg is not IsDebug in a DBG_VALUE", MO, MONum); in visitMachineOperand()
1930 report("Generic virtual register use cannot be undef", MO, MONum); in visitMachineOperand()
1934 report("Generic virtual register invalid in a Selected function", in visitMachineOperand()
1942 report("Generic virtual register must have a valid type", MO, in visitMachineOperand()
1951 report("Generic virtual register must have a bank in a " in visitMachineOperand()
1960 report("Register bank is too small for virtual register", MO, in visitMachineOperand()
1968 report("Generic virtual register does not allow subregister index", MO, in visitMachineOperand()
1979 report("Virtual register does not match instruction constraint", MO, in visitMachineOperand()
1994 report("Invalid subregister index for virtual register", MO, MONum); in visitMachineOperand()
2000 report("Invalid register class for subregister index", MO, MONum); in visitMachineOperand()
2013 report("No largest legal super class exists.", MO, MONum); in visitMachineOperand()
2018 report("No matching super-reg register class.", MO, MONum); in visitMachineOperand()
2023 report("Illegal virtual register for instruction", MO, MONum); in visitMachineOperand()
2040 report("PHI operand is not in the CFG", MO, MONum); in visitMachineOperand()
2071 report("Missing fixed stack memoperand.", MI); in visitMachineOperand()
2074 report("Instruction loads from dead spill slot", MO, MONum); in visitMachineOperand()
2078 report("Instruction stores to dead spill slot", MO, MONum); in visitMachineOperand()
2098 report("No live segment at use", MO, MONum); in checkLivenessAtUse()
2104 report("Live range continues after kill flag", MO, MONum); in checkLivenessAtUse()
2122 report("Inconsistent valno->def", MO, MONum); in checkLivenessAtDef()
2131 report("No live segment at def", MO, MONum); in checkLivenessAtDef()
2150 report("Live range continues after dead def flag", MO, MONum); in checkLivenessAtDef()
2173 report("Kill missing from LiveVariables", MO, MONum); in checkLiveness()
2212 report("No live subrange at use", MO, MONum); in checkLiveness()
2218 report("Virtual register has no live interval", MO, MONum); in checkLiveness()
2255 report("Using an undefined physical register", MO, MONum); in checkLiveness()
2257 report("Reading virtual register without a def", MO, MONum); in checkLiveness()
2264 report("Using a killed virtual register", MO, MONum); in checkLiveness()
2282 report("Multiple virtual register defs in SSA form", MO, MONum); in checkLiveness()
2306 report("Virtual register has no Live interval", MO, MONum); in checkLiveness()
2341 report("Block ends before last instruction index", MBB); in visitMachineBasicBlockAfter()
2542 report("Expected first PHI operand to be a register def", &MODef, 0); in checkPHIOps()
2547 report("Unexpected flag on PHI operand", &MODef, 0); in checkPHIOps()
2550 report("Expected first PHI operand to be a virtual register", &MODef, 0); in checkPHIOps()
2555 report("Expected PHI operand to be a register", &MO0, I); in checkPHIOps()
2560 report("Unexpected flag on PHI operand", &MO0, I); in checkPHIOps()
2564 report("Expected PHI operand to be a basic block", &MO1, I + 1); in checkPHIOps()
2570 report("PHI input is not a predecessor block", &MO1, I + 1); in checkPHIOps()
2579 report("PHI operand is not live-out from predecessor", &MO0, I); in checkPHIOps()
2587 report("Missing PHI operand", &Phi); in checkPHIOps()
2610 report("Virtual register killed in block, but needed live out.", &MBB); in visitMachineFunctionAfter()
2619 report("Virtual register defs don't dominate all uses.", MF); in visitMachineFunctionAfter()
2646 report("Live in register not found to be live out from predecessor.", in visitMachineFunctionAfter()
2657 report("Call site info referencing instruction that is not call", MF); in visitMachineFunctionAfter()
2668 report("Instruction has a duplicated value tracking number", &MI); in visitMachineFunctionAfter()
2686 report("LiveVariables: Block missing from AliveBlocks", &MBB); in verifyLiveVariables()
2692 report("LiveVariables: Block should not be in AliveBlocks", &MBB); in verifyLiveVariables()
2711 report("Missing live interval for virtual register", MF); in verifyLiveIntervals()
2736 report("Value not live at VNInfo def and not marked unused", MF); in verifyLiveRangeValue()
2743 report("Live segment at def has different VNInfo", MF); in verifyLiveRangeValue()
2751 report("Invalid VNInfo definition index", MF); in verifyLiveRangeValue()
2759 report("PHIDef VNInfo is not defined at MBB start", MBB); in verifyLiveRangeValue()
2769 report("No instruction at VNInfo def index", MBB); in verifyLiveRangeValue()
2798 report("Defining instruction does not modify register", MI); in verifyLiveRangeValue()
2807 report("Early clobber def must be at an early-clobber slot", MBB); in verifyLiveRangeValue()
2812 report("Non-PHI, non-early clobber def must be at a register slot", MBB); in verifyLiveRangeValue()
2828 report("Foreign valno in live segment", MF); in verifyLiveRangeSegment()
2835 report("Live segment valno is marked unused", MF); in verifyLiveRangeSegment()
2842 report("Bad start of live segment, no basic block", MF); in verifyLiveRangeSegment()
2849 report("Live segment must begin at MBB entry or valno def", MBB); in verifyLiveRangeSegment()
2857 report("Bad end of live segment, no basic block", MF); in verifyLiveRangeSegment()
2876 report("Live segment doesn't end at a valid instruction", EndMBB); in verifyLiveRangeSegment()
2884 report("Live segment ends at B slot of an instruction", EndMBB); in verifyLiveRangeSegment()
2893 report("Live segment ending at dead slot spans instructions", EndMBB); in verifyLiveRangeSegment()
2903 report("Live segment ending at early clobber slot must be " in verifyLiveRangeSegment()
2945 report("Instruction ending live segment on dead slot has no dead flag", in verifyLiveRangeSegment()
2956 report("Instruction ending live segment doesn't read the register", in verifyLiveRangeSegment()
3017 report("Register not marked live out of predecessor", Pred); in verifyLiveRangeSegment()
3028 report("Different value live out of predecessor", Pred); in verifyLiveRangeSegment()
3060 report("Lane masks of sub ranges overlap in live interval", MF); in verifyLiveInterval()
3064 report("Subrange lanemask is invalid", MF); in verifyLiveInterval()
3068 report("Subrange must not be empty", MF); in verifyLiveInterval()
3074 report("A Subrange is not covered by the main range", MF); in verifyLiveInterval()
3083 report("Multiple connected components in live interval", MF); in verifyLiveInterval()
3152 report("FrameSetup is after another FrameSetup", &I); in verifyStackFrame()
3160 report("FrameDestroy is not after a FrameSetup", &I); in verifyStackFrame()
3164 report("FrameDestroy <n> is after FrameSetup <m>", &I); in verifyStackFrame()
3180 report("The exit stack state of a predecessor is inconsistent.", MBB); in verifyStackFrame()
3195 report("The entry stack state of a successor is inconsistent.", MBB); in verifyStackFrame()
3207 report("A return block ends with a FrameSetup.", MBB); in verifyStackFrame()
3209 report("A return block ends with a nonzero stack adjustment.", MBB); in verifyStackFrame()