diff options
author | Philip Reames <listmail@philipreames.com> | 2014-12-02 21:01:48 +0000 |
---|---|---|
committer | Philip Reames <listmail@philipreames.com> | 2014-12-02 21:01:48 +0000 |
commit | 72fbe7a6f0af0390e1bb6fb1f3229c4b1ffdaaf5 (patch) | |
tree | 0da2c6b255e41d0f952a4a4ee855832f4670573c /llvm/lib/CodeGen | |
parent | 3abfe95843068714c92308f0ccb4fa02e67237dc (diff) | |
download | bcm5719-llvm-72fbe7a6f0af0390e1bb6fb1f3229c4b1ffdaaf5.tar.gz bcm5719-llvm-72fbe7a6f0af0390e1bb6fb1f3229c4b1ffdaaf5.zip |
Restructure some assertion checking based on post commit feedback by Aaron and Tom.
llvm-svn: 223150
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp index 137403fc274..972aa9c4c8d 100644 --- a/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp @@ -228,10 +228,6 @@ static SDNode *lowerCallFromStatepoint(const CallInst &CI, dyn_cast<IntrinsicInst>(&CI)->getIntrinsicID() && "function called must be the statepoint function"); - int NumCallArgs = dyn_cast<ConstantInt>(CI.getArgOperand(1))->getZExtValue(); - assert(NumCallArgs >= 0 && "non-negative"); - (void)NumCallArgs; - ImmutableStatepoint StatepointOperands(&CI); // Lower the actual call itself - This is a bit of a hack, but we want to @@ -240,9 +236,6 @@ static SDNode *lowerCallFromStatepoint(const CallInst &CI, // differently. Hopefully, this is slightly more robust w.r.t. calling // convention, return values, and other function attributes. Value *ActualCallee = const_cast<Value *>(StatepointOperands.actualCallee()); -#ifndef NDEBUG - StatepointOperands.verify(); -#endif std::vector<Value *> Args; CallInst::const_op_iterator arg_begin = StatepointOperands.call_args_begin(); @@ -500,6 +493,13 @@ void SelectionDAGBuilder::visitStatepoint(const CallInst &CI) { #endif ImmutableStatepoint ISP(&CI); +#ifndef NDEBUG + // If this is a malformed statepoint, report it early to simplify debugging. + // This should catch any IR level mistake that's made when constructing or + // transforming statepoints. + ISP.verify(); +#endif + // Lower statepoint vmstate and gcstate arguments SmallVector<SDValue, 10> LoweredArgs; |