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

1 2 3

  /external/llvm/lib/IR/
MDBuilder.cpp 104 Constant *Flags = ConstantInt::get(Type::getInt64Ty(Context), 1);
126 Type *Int64 = Type::getInt64Ty(Context);
140 Type *Int64 = Type::getInt64Ty(Context);
153 ConstantInt *Off = ConstantInt::get(Type::getInt64Ty(Context), Offset);
162 Type *Int64 = Type::getInt64Ty(Context);
ValueTypes.cpp 190 case MVT::i64: return Type::getInt64Ty(Context);
223 case MVT::v1i64: return VectorType::get(Type::getInt64Ty(Context), 1);
224 case MVT::v2i64: return VectorType::get(Type::getInt64Ty(Context), 2);
225 case MVT::v4i64: return VectorType::get(Type::getInt64Ty(Context), 4);
226 case MVT::v8i64: return VectorType::get(Type::getInt64Ty(Context), 8);
227 case MVT::v16i64: return VectorType::get(Type::getInt64Ty(Context), 16);
AutoUpgrade.cpp 377 VectorType::get(Type::getInt64Ty(C), 2*NumLanes),
414 VectorType::get(Type::getInt64Ty(C), 2*NumLanes),
541 PointerType::getUnqual(VectorType::get(Type::getInt64Ty(C), 2)));
    [all...]
IRBuilder.cpp 155 assert(Size->getType() == getInt64Ty() &&
170 assert(Size->getType() == getInt64Ty() &&
Type.cpp 240 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
295 return getInt64Ty(C)->getPointerTo(AS);
313 case 64: return cast<IntegerType>(Type::getInt64Ty(C));
Constants.cpp     [all...]
  /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/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),
444 CI->replaceAllUsesWith(ConstantInt::get(Type::getInt64Ty(Context), 0));
  /external/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 204 ArrayType *CounterTy = ArrayType::get(Type::getInt64Ty(Ctx), NumCounters);
219 auto *Int64Ty = Type::getInt64Ty(Ctx);
GCOVProfiling.cpp 590 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
762 Type *Int64Ty = Type::getInt64Ty(*Ctx);
    [all...]
SanitizerCoverage.cpp 152 Int64Ty = IRB.getInt64Ty();
  /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 130 Type *Int64Ty = Type::getInt64Ty(C);
169 Type *Int64Ty = Type::getInt64Ty(getGlobalContext());
  /external/llvm/include/llvm/IR/
IRBuilder.h 281 return ConstantInt::get(getInt64Ty(), C);
320 IntegerType *getInt64Ty() {
321 return Type::getInt64Ty(Context);
    [all...]
Type.h 397 static IntegerType *getInt64Ty(LLVMContext &C);
  /external/llvm/lib/ExecutionEngine/Orc/
IndirectionUtils.cpp 24 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/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 485 ConsideredSExtType = Type::getInt64Ty(Func->getContext());
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 105 ArgsTy.push_back(PointerType::get(IntegerType::getInt64Ty(Context), 0));
107 ArgsTy.push_back(IntegerType::getInt64Ty(Context));
262 case 14: t = Type::getInt64Ty(Context); break;
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 123 Int64 = Type::getInt64Ty(Context);
  /external/llvm/lib/Transforms/Scalar/
AlignmentFromAssumptions.cpp 264 Type *Int64Ty = Type::getInt64Ty(I->getParent()->getParent()->getContext());
Float2Int.cpp 424 Type *Ty = (MinBW > 32) ? Type::getInt64Ty(*Ctx) : Type::getInt32Ty(*Ctx);

Completed in 318 milliseconds

1 2 3