HomeSort by relevance Sort by last modified time
    Searched refs:getInt64Ty (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/llvm/lib/IR/
MDBuilder.cpp 60 Type *Int64Ty = Type::getInt64Ty(Context);
113 Constant *Flags = ConstantInt::get(Type::getInt64Ty(Context), 1);
132 Type *Int64 = Type::getInt64Ty(Context);
146 Type *Int64 = Type::getInt64Ty(Context);
159 ConstantInt *Off = ConstantInt::get(Type::getInt64Ty(Context), Offset);
168 IntegerType *Int64 = Type::getInt64Ty(Context);
ValueTypes.cpp 209 case MVT::i64: return Type::getInt64Ty(Context);
250 case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1);
251 case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2);
252 case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4);
253 case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8);
254 case MVT::v16i64: return VectorType::get(Type::getInt64Ty(Context), 16);
255 case MVT::v32i64: return VectorType::get(Type::getInt64Ty(Context), 32);
AutoUpgrade.cpp 319 VectorType::get(Type::getInt64Ty(C), 2*NumLanes),
356 VectorType::get(Type::getInt64Ty(C), 2*NumLanes),
505 Type *VT = VectorType::get(Type::getInt64Ty(C), 2);
763 Type *NewVecTy = VectorType::get(Type::getInt64Ty(C), 2);
    [all...]
IRBuilder.cpp 171 assert(Size->getType() == getInt64Ty() &&
186 assert(Size->getType() == getInt64Ty() &&
Type.cpp 234 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
290 return getInt64Ty(C)->getPointerTo(AS);
308 case 64: return cast<IntegerType>(Type::getInt64Ty(C));
  /external/llvm/unittests/Transforms/Utils/
IntegerDivision.cpp 149 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty());
150 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
179 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty());
180 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
209 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty());
210 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
239 SmallVector<Type*, 2> ArgTys(2, Builder.getInt64Ty());
240 Function *F = Function::Create(FunctionType::get(Builder.getInt64Ty(),
  /external/llvm/lib/Transforms/IPO/
CrossDSOCFI.cpp 116 {Type::getInt64Ty(Ctx), PointerType::getUnqual(Type::getInt8Ty(Ctx))},
144 ConstantInt *CaseTypeId = ConstantInt::get(Type::getInt64Ty(Ctx), TypeId);
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 224 ConstantInt::get(Type::getInt64Ty(Context),
228 ConstantInt::get(Type::getInt64Ty(Context),
232 ConstantInt::get(Type::getInt64Ty(Context),
236 ConstantInt::get(Type::getInt64Ty(Context),
240 ConstantInt::get(Type::getInt64Ty(Context),
244 ConstantInt::get(Type::getInt64Ty(Context),
451 CI->replaceAllUsesWith(ConstantInt::get(Type::getInt64Ty(Context), 0));
  /external/compiler-rt/lib/profile/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
121 VALUE_PROF_FUNC_PARAM(uint64_t, TargetValue, Type::getInt64Ty(Ctx)) \
165 COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
166 llvm::ConstantInt::get(llvm::Type::getInt64Ty(Ctx), FuncHash))
  /external/llvm/include/llvm/ProfileData/
InstrProfData.inc 73 INSTR_PROF_DATA(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
74 ConstantInt::get(llvm::Type::getInt64Ty(Ctx), \
121 VALUE_PROF_FUNC_PARAM(uint64_t, TargetValue, Type::getInt64Ty(Ctx)) \
165 COVMAP_FUNC_RECORD(const uint64_t, llvm::Type::getInt64Ty(Ctx), FuncHash, \
166 llvm::ConstantInt::get(llvm::Type::getInt64Ty(Ctx), FuncHash))
  /external/llvm/unittests/IR/
InstructionsTest.cpp 60 FArgTypes.push_back(Type::getInt64Ty(Ctx));
75 ConstantInt::get(Type::getInt64Ty(Ctx), 42)};
93 ConstantInt::get(Type::getInt64Ty(Ctx), 42)};
177 Type *Int64Ty = Type::getInt64Ty(C);
413 Type* Int64Ty = Type::getInt64Ty(C);
TypeBuilderTest.cpp 41 EXPECT_EQ(Type::getInt64Ty(getGlobalContext()), (TypeBuilder<int64_t, false>::get(getGlobalContext())));
42 EXPECT_EQ(Type::getInt64Ty(getGlobalContext()), (TypeBuilder<uint64_t, false>::get(getGlobalContext())));
ConstantsTest.cpp 131 Type *Int64Ty = Type::getInt64Ty(C);
170 Type *Int64Ty = Type::getInt64Ty(getGlobalContext());
398 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) {
421 Type::getInt32Ty(Context), Type::getInt64Ty(Context)}) {
  /external/llvm/include/llvm/IR/
IRBuilder.h 274 return ConstantInt::get(getInt64Ty(), C);
313 IntegerType *getInt64Ty() {
314 return Type::getInt64Ty(Context);
    [all...]
Type.h 390 static IntegerType *getInt64Ty(LLVMContext &C);
  /external/llvm/lib/ExecutionEngine/Orc/
IndirectionUtils.cpp 27 ConstantInt::get(Type::getInt64Ty(FT.getContext()), Addr);
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 214 Indices.push_back(Constant::getNullValue(Type::getInt64Ty(Ctx)));
  /external/llvm/lib/Transforms/Instrumentation/
SanitizerCoverage.cpp 194 Int64PtrTy = PointerType::getUnqual(IRB.getInt64Ty());
195 Int64Ty = IRB.getInt64Ty();
GCOVProfiling.cpp 596 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
768 Type *Int64Ty = Type::getInt64Ty(*Ctx);
    [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 564 Type *Int64Ty = Builder.getInt64Ty();
665 Type *Int64Ty = Builder.getInt64Ty();
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 487 ConsideredSExtType = Type::getInt64Ty(Func->getContext());
  /external/llvm/lib/Target/AMDGPU/
SIAnnotateControlFlow.cpp 123 Int64 = Type::getInt64Ty(Context);
  /external/llvm/lib/Transforms/Scalar/
AlignmentFromAssumptions.cpp 267 Type *Int64Ty = Type::getInt64Ty(I->getParent()->getParent()->getContext());
Float2Int.cpp 431 Type *Ty = (MinBW > 32) ? Type::getInt64Ty(*Ctx) : Type::getInt32Ty(*Ctx);

Completed in 1036 milliseconds

1 2 3