| 62 | } |
| 63 | |
| 64 | uint32_t GetInlinedOperand(Instruction* dbg_inlined_at) { |
| 65 | assert(dbg_inlined_at); |
| 66 | assert(dbg_inlined_at->GetCommonDebugOpcode() == |
| 67 | CommonDebugInfoDebugInlinedAt); |
| 68 | if (dbg_inlined_at->NumOperands() <= kDebugInlinedAtOperandInlinedIndex) |
| 69 | return kNoInlinedAt; |
| 70 | return dbg_inlined_at->GetSingleWordOperand( |
| 71 | kDebugInlinedAtOperandInlinedIndex); |
| 72 | } |
| 73 | |
| 74 | bool IsEmptyDebugExpression(Instruction* instr) { |
| 75 | return (instr->GetCommonDebugOpcode() == CommonDebugInfoDebugExpression) && |
no test coverage detected