/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | DIBuilder.cpp | 144 ConstantInt::get(Type::getInt64Ty(VMContext), Val) in createEnumerator() 160 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size in createNullPtrType() 161 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Align in createNullPtrType() 162 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offset in createNullPtrType() 183 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits), in createBasicType() 184 ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits), in createBasicType() 185 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offset in createBasicType() 202 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size in createQualifiedType() 203 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Align in createQualifiedType() 204 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offset in createQualifiedType() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | MDBuilder.cpp | 63 Type *Int64Ty = Type::getInt64Ty(Context); in createFunctionEntryCount() 141 Constant *Flags = ConstantInt::get(Type::getInt64Ty(Context), 1); in createTBAANode() 160 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() 174 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() 187 ConstantInt *Off = ConstantInt::get(Type::getInt64Ty(Context), Offset); in createTBAAScalarTypeNode() 196 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode() 209 Type *Int64 = Type::getInt64Ty(Context); in createTBAATypeNode() 224 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAAccessTag() 265 Vals[1] = createConstant(ConstantInt::get(Type::getInt64Ty(Context), Weight)); in createIrrLoopHeaderWeight()
|
/external/llvm/lib/IR/ |
D | MDBuilder.cpp | 60 Type *Int64Ty = Type::getInt64Ty(Context); in createFunctionEntryCount() 113 Constant *Flags = ConstantInt::get(Type::getInt64Ty(Context), 1); in createTBAANode() 132 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructNode() 146 Type *Int64 = Type::getInt64Ty(Context); in createTBAAStructTypeNode() 159 ConstantInt *Off = ConstantInt::get(Type::getInt64Ty(Context), Offset); in createTBAAScalarTypeNode() 168 IntegerType *Int64 = Type::getInt64Ty(Context); in createTBAAStructTagNode()
|
D | ValueTypes.cpp | 214 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT() 255 case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1); in getTypeForEVT() 256 case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2); in getTypeForEVT() 257 case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4); in getTypeForEVT() 258 case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8); in getTypeForEVT() 259 case MVT::v16i64: return VectorType::get(Type::getInt64Ty(Context), 16); in getTypeForEVT() 260 case MVT::v32i64: return VectorType::get(Type::getInt64Ty(Context), 32); in getTypeForEVT()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Transforms/Utils/ |
D | IntegerDivision.cpp | 149 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 150 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 179 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 180 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 209 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 210 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 239 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 240 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST()
|
/external/llvm/unittests/Transforms/Utils/ |
D | IntegerDivision.cpp | 149 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 150 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 179 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 180 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 209 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 210 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST() 239 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty()); in TEST() 240 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST()
|
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
D | ValueTypes.cpp | 159 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT() 179 case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1); in getTypeForEVT() 180 case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2); in getTypeForEVT() 181 case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4); in getTypeForEVT() 182 case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8); in getTypeForEVT()
|
D | IRBuilder.cpp | 128 assert(Size->getType() == getInt64Ty() && in CreateLifetimeStart() 143 assert(Size->getType() == getInt64Ty() && in CreateLifetimeEnd()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | ValueTypes.cpp | 212 case MVT::i64: return Type::getInt64Ty(Context); in getTypeForEVT() 255 case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1); in getTypeForEVT() 256 case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2); in getTypeForEVT() 257 case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4); in getTypeForEVT() 258 case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8); in getTypeForEVT() 259 case MVT::v16i64: return VectorType::get(Type::getInt64Ty(Context), 16); in getTypeForEVT() 260 case MVT::v32i64: return VectorType::get(Type::getInt64Ty(Context), 32); in getTypeForEVT()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/ |
D | InstrProfData.inc | 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \ 74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ 77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 115 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Value, \ 117 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Count, \ 153 VALUE_PROF_FUNC_PARAM(uint64_t, TargetValue, Type::getInt64Ty(Ctx)) \ 161 VALUE_PROF_FUNC_PARAM(uint64_t, PreciseRangeStart, Type::getInt64Ty(Ctx)) \ 163 VALUE_PROF_FUNC_PARAM(uint64_t, PreciseRangeLast, Type::getInt64Ty(Ctx)) \ 165 VALUE_PROF_FUNC_PARAM(uint64_t, LargeValue, Type::getInt64Ty(Ctx)) [all …]
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 224 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 228 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 232 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 236 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 240 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 244 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 444 CI->replaceAllUsesWith(ConstantInt::get(Type::getInt64Ty(Context), 0)); in LowerIntrinsicCall()
|
/external/llvm/lib/CodeGen/ |
D | IntrinsicLowering.cpp | 224 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 228 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 232 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 236 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 240 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 244 ConstantInt::get(Type::getInt64Ty(Context), in LowerBSWAP() 451 CI->replaceAllUsesWith(ConstantInt::get(Type::getInt64Ty(Context), 0)); in LowerIntrinsicCall()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Analysis/ |
D | SparsePropagation.cpp | 299 new GlobalVariable(M, Builder.getInt64Ty(), false, in TEST_F() 340 new GlobalVariable(M, Builder.getInt64Ty(), false, in TEST_F() 377 Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST_F() 417 Function::Create(FunctionType::get(Builder.getInt64Ty(), in TEST_F() 464 {Builder.getInt64Ty(), Builder.getInt64Ty()}, false), in TEST_F()
|
D | ScalarEvolutionTest.cpp | 435 Type *ArgTys[] = {Type::getInt64Ty(Context), Ty32}; in TEST_F() 681 Type *I64Ty = Type::getInt64Ty(Context); in TEST_F() 747 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() 820 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() 918 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() 1010 auto *Phi = PHINode::Create(Type::getInt64Ty(Context), 2, "", Br); in TEST_F() 1088 Type *ArgTy = Type::getInt64Ty(Context); in TEST_F() 1144 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() 1206 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() 1258 Type *T_int64 = Type::getInt64Ty(Context); in TEST_F() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPULowerKernelArguments.cpp | 178 ConstantInt::get(Builder.getInt64Ty(), DerefBytes)))); in runOnFunction() 186 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction() 195 MDB.createConstant(ConstantInt::get(Builder.getInt64Ty(), in runOnFunction()
|
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | dynamic_update_slice_util.cc | 91 b->getInt64Ty()); in EmitDynamicUpdateSliceInPlaceImpl() 121 IrArray::Index(b->getInt64Ty()), b); in EmitDynamicUpdateSliceInPlace() 177 return element_generator(IrArray::Index(b->getInt64Ty())); in EmitFusedDynamicUpdateSliceInPlaceImpl()
|
D | llvm_util.cc | 163 return llvm::Type::getInt64Ty(module->getContext()); in PrimitiveTypeToIrType() 378 b->getVoidTy(), {b->getInt64Ty(), b->getInt64Ty()}, /*isVarArg=*/false); in EmitLogging() 387 llvm::Type* int64_ty = llvm::Type::getInt64Ty(context); in SetAlignmentMetadataForLoad() 400 llvm::Type* int64_ty = llvm::Type::getInt64Ty(context); in SetDereferenceableMetadataForLoad() 676 llvm::Type* int64_ty = b->getInt64Ty(); in UMulLowHigh32() 700 /*Ty=*/b->getInt64Ty(), in GetOrCreateVariableForPhiloxRngState()
|
/external/compiler-rt/lib/profile/ |
D | InstrProfData.inc | 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \ 74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ 77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 115 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Value, \ 117 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Count, \ 153 VALUE_PROF_FUNC_PARAM(uint64_t, TargetValue, Type::getInt64Ty(Ctx)) \ 205 COVMAP_FUNC_RECORD(const int64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \ 206 llvm::ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 212 COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ [all …]
|
/external/llvm/include/llvm/ProfileData/ |
D | InstrProfData.inc | 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \ 74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 76 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ 77 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 115 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Value, \ 117 INSTR_PROF_VALUE_NODE(uint64_t, llvm::Type::getInt64Ty(Ctx), Count, \ 153 VALUE_PROF_FUNC_PARAM(uint64_t, TargetValue, Type::getInt64Ty(Ctx)) \ 205 COVMAP_FUNC_RECORD(const int64_t, llvm::Type::getInt64Ty(Ctx), NameRef, \ 206 llvm::ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \ 212 COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \ [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/FuzzMutate/ |
D | StrategiesTest.cpp | 32 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createInjectorMutator() 45 Type::getInt64Ty, Type::getFloatTy, Type::getDoubleTy}; in createDeleterMutator()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/ |
D | GCOVProfiling.cpp | 443 ArrayType::get(Type::getInt64Ty(*Ctx), Edges); in emitProfileArcs() 466 ConstantInt::get(Type::getInt64Ty(*Ctx),1)); in emitProfileArcs() 471 ConstantInt::get(Type::getInt64Ty(*Ctx), Edge), in emitProfileArcs() 472 ConstantInt::get(Type::getInt64Ty(*Ctx), Edge + 1)); in emitProfileArcs() 474 Idx.push_back(Constant::getNullValue(Type::getInt64Ty(*Ctx))); in emitProfileArcs() 479 ConstantInt::get(Type::getInt64Ty(*Ctx),1)); in emitProfileArcs()
|
/external/llvm/lib/Transforms/IPO/ |
D | CrossDSOCFI.cpp | 100 "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx), in buildCFICheck() 130 ConstantInt *CaseTypeId = ConstantInt::get(Type::getInt64Ty(Ctx), TypeId); in buildCFICheck()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/ |
D | CrossDSOCFI.cpp | 110 "__cfi_check", Type::getVoidTy(Ctx), Type::getInt64Ty(Ctx), in buildCFICheck() 148 ConstantInt *CaseTypeId = ConstantInt::get(Type::getInt64Ty(Ctx), TypeId); in buildCFICheck()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 134 Type *Int64Ty = Type::getInt64Ty(C); in TEST() 160 ConstantInt *K = ConstantInt::get(Type::getInt64Ty(C), 1234); in TEST() 196 Type *Int64Ty = Type::getInt64Ty(Context); in TEST() 424 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) { in TEST() 447 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) { in TEST()
|
/external/llvm/unittests/IR/ |
D | ConstantsTest.cpp | 134 Type *Int64Ty = Type::getInt64Ty(C); in TEST() 160 ConstantInt *K = ConstantInt::get(Type::getInt64Ty(C), 1234); in TEST() 195 Type *Int64Ty = Type::getInt64Ty(Context); in TEST() 423 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) { in TEST() 446 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) { in TEST()
|