本文整理汇总了C++中CodeGen::Int64Type方法的典型用法代码示例。如果您正苦于以下问题:C++ CodeGen::Int64Type方法的具体用法?C++ CodeGen::Int64Type怎么用?C++ CodeGen::Int64Type使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CodeGen
的用法示例。
在下文中一共展示了CodeGen::Int64Type方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1:
llvm::Value *Sorter::NumTuples(CodeGen &codegen,
llvm::Value *sorter_ptr) const {
// Pull out start and end (char **)
auto *start = codegen.Load(SorterProxy::tuples_start, sorter_ptr);
auto *end = codegen.Load(SorterProxy::tuples_end, sorter_ptr);
// Convert both to uint64_t
start = codegen->CreatePtrToInt(start, codegen.Int64Type());
end = codegen->CreatePtrToInt(end, codegen.Int64Type());
// Subtract (end - start)
auto *diff = codegen->CreateSub(end, start);
// Divide by pointer size (diff >> 3, or div / 8)
return codegen->CreateAShr(diff, 3, "numTuples", true);
}
示例2: GetStartPosition
llvm::Value *Sorter::GetNumberOfStoredTuples(CodeGen &codegen,
llvm::Value *sorter_ptr) const {
// TODO: util::Sorter has a function to handle this ...
llvm::Value *start_pos = GetStartPosition(codegen, sorter_ptr);
llvm::Value *end_pos = GetEndPosition(codegen, sorter_ptr);
llvm::Value *tuple_size =
codegen->CreateZExt(GetTupleSize(codegen), codegen.Int64Type());
llvm::Value *diff_bytes = codegen->CreatePtrDiff(end_pos, start_pos);
llvm::Value *num_tuples = codegen->CreateUDiv(diff_bytes, tuple_size);
return codegen->CreateTruncOrBitCast(num_tuples, codegen.Int32Type());
}