Home
last modified time | relevance | path

Searched refs:value_64bits (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dllvm_util.cc683 llvm::IRBuilder<>* b, llvm::Value* value_64bits) { in SplitInt64ToInt32s() argument
684 CHECK_EQ(value_64bits->getType()->getPrimitiveSizeInBits(), 64); in SplitInt64ToInt32s()
686 llvm::Value* low_32bits = b->CreateTrunc(value_64bits, int32_ty); in SplitInt64ToInt32s()
688 b->CreateTrunc(b->CreateLShr(value_64bits, 32), int32_ty); in SplitInt64ToInt32s()
Dllvm_util.h301 llvm::IRBuilder<>* b, llvm::Value* value_64bits);