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

1 2 3

  /external/llvm/lib/IR/
DIBuilder.cpp 230 ConstantInt::get(Type::getInt64Ty(VMContext), Val)
246 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size
247 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Align
248 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offset
274 ConstantInt::get(Type::getInt64Ty(VMContext), SizeInBits),
275 ConstantInt::get(Type::getInt64Ty(VMContext), AlignInBits),
276 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offset
293 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Size
294 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Align
295 ConstantInt::get(Type::getInt64Ty(VMContext), 0), // Offse
    [all...]
MDBuilder.cpp 87 Constant *Flags = ConstantInt::get(Type::getInt64Ty(Context), 1);
100 Type *Int64 = Type::getInt64Ty(Context);
114 Type *Int64 = Type::getInt64Ty(Context);
127 ConstantInt *Off = ConstantInt::get(Type::getInt64Ty(Context), Offset);
136 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 459 VectorType::get(Type::getInt64Ty(C), 2),
463 VectorType::get(Type::getInt64Ty(C), 2),
512 Constant::getNullValue(Type::getInt64Ty(I->getContext())),
519 Constant::getNullValue(Type::getInt64Ty(I->getContext()))};
537 Type *MidTy = Type::getInt64Ty(Context);
557 Type *MidTy = Type::getInt64Ty(Context);
IRBuilder.cpp 132 assert(Size->getType() == getInt64Ty() &&
147 assert(Size->getType() == getInt64Ty() &&
Type.cpp 236 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
291 return getInt64Ty(C)->getPointerTo(AS);
309 case 64: return cast<IntegerType>(Type::getInt64Ty(C));
ConstantFold.cpp 93 IntegerType *FakeIntPtrTy = Type::getInt64Ty(DstTy->getContext());
    [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));
  /art/compiler/llvm/
intrinsic_helper.cc 73 return irb.getInt64Ty();
ir_builder.h 340 return 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);
411 Type* Int64Ty = Type::getInt64Ty(C);
ConstantsTest.cpp 128 Type *Int64Ty = Type::getInt64Ty(C);
167 Type *Int64Ty = Type::getInt64Ty(getGlobalContext());
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())));
  /external/llvm/include/llvm/IR/
IRBuilder.h 282 return ConstantInt::get(getInt64Ty(), C);
321 IntegerType *getInt64Ty() {
322 return Type::getInt64Ty(Context);
    [all...]
Type.h 394 static IntegerType *getInt64Ty(LLVMContext &C);
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 213 Indices.push_back(Constant::getNullValue(Type::getInt64Ty(Ctx)));
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 560 Type *Int64Ty = Builder.getInt64Ty();
661 Type *Int64Ty = Builder.getInt64Ty();
InlineFunction.cpp 333 Type *Tys[3] = { VoidPtrTy, VoidPtrTy, Type::getInt64Ty(Context) };
343 Size = ConstantInt::get(Type::getInt64Ty(Context),
758 AllocaSize = ConstantInt::get(Type::getInt64Ty(AI->getContext()),
    [all...]
  /external/llvm/examples/ExceptionDemo/
ExceptionDemo.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64AddressTypePromotion.cpp 484 ConsideredSExtType = Type::getInt64Ty(Func->getContext());
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 119 Int64 = Type::getInt64Ty(Context);
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 592 ArrayType::get(Type::getInt64Ty(*Ctx), Edges);
763 Type *Int64Ty = Type::getInt64Ty(*Ctx);
914 Value *ZExtPred = Builder.CreateZExt(Pred, Builder.getInt64Ty());
    [all...]
  /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/clang/lib/CodeGen/
CodeGenPGO.cpp 120 auto *Int64Ty = llvm::Type::getInt64Ty(Ctx);
    [all...]

Completed in 429 milliseconds

1 2 3