| 77 | const char* NullIndicatorOffset::LLVM_CLASS_NAME = "struct.impala::NullIndicatorOffset"; |
| 78 | |
| 79 | string NullIndicatorOffset::DebugString() const { |
| 80 | stringstream out; |
| 81 | out << "(offset=" << byte_offset |
| 82 | << " mask=" << hex << static_cast<int>(bit_mask) << dec << ")"; |
| 83 | return out.str(); |
| 84 | } |
| 85 | |
| 86 | llvm::Constant* NullIndicatorOffset::ToIR(LlvmCodeGen* codegen) const { |
| 87 | llvm::StructType* null_indicator_offset_type = |
no test coverage detected