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

1 2

  /external/llvm/unittests/IR/
InstructionsTest.cpp 177 Type *Int64Ty = Type::getInt64Ty(C);
179 Type *V8x64Ty = VectorType::get(Int64Ty, 8);
187 Type *V2Int64Ty = VectorType::get(Int64Ty, 2);
191 Type *Int64PtrTy = PointerType::get(Int64Ty, 0);
194 Type *Int64PtrAS1Ty = PointerType::get(Int64Ty, 1);
212 EXPECT_FALSE(CastInst::isCastable(Int64Ty, X86MMXTy));
220 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, X86MMXTy));
250 EXPECT_TRUE(CastInst::isBitCastable(V2Int32Ty, Int64Ty));
253 EXPECT_FALSE(CastInst::isBitCastable(Int32Ty, Int64Ty));
254 EXPECT_FALSE(CastInst::isBitCastable(Int64Ty, Int32Ty))
    [all...]
ConstantsTest.cpp 128 Type *Int64Ty = Type::getInt64Ty(C);
131 VectorType *Int64VecTy = VectorType::get(Int64Ty, 4);
134 EXPECT_EQ(Constant::getNullValue(Int64Ty),
136 Constant::getNullValue(Int8PtrTy), Int64Ty));
167 Type *Int64Ty = Type::getInt64Ty(getGlobalContext());
228 CHECK(ConstantExpr::getSExt(P0, Int64Ty), "sext i32 " P0STR " to i64");
229 CHECK(ConstantExpr::getZExt(P0, Int64Ty), "zext i32 " P0STR " to i64");
  /external/clang/lib/CodeGen/
CGVTT.cpp 47 llvm::Type *Int8PtrTy = CGM.Int8PtrTy, *Int64Ty = CGM.Int64Ty;
78 llvm::ConstantInt::get(Int64Ty, 0),
79 llvm::ConstantInt::get(Int64Ty, AddressPoint)
CGDebugInfo.cpp     [all...]
CGBuiltin.cpp     [all...]
CodeGenPGO.cpp 120 auto *Int64Ty = llvm::Type::getInt64Ty(Ctx);
124 Int32Ty, Int32Ty, Int64Ty, Int8PtrTy, Int64PtrTy
130 llvm::ConstantInt::get(Int64Ty, FunctionHash),
    [all...]
TargetInfo.cpp     [all...]
CGDeclCXX.cpp 129 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
CGExprScalar.cpp     [all...]
ItaniumCXXABI.cpp     [all...]
CodeGenModule.h 111 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
    [all...]
CGObjCGNU.cpp 164 llvm::IntegerType *Int64Ty;
    [all...]
CGDecl.cpp     [all...]
CGExprConstant.cpp     [all...]
CGExpr.cpp 550 llvm::Value *Low = llvm::ConstantInt::get(Int64Ty, TypeHash);
554 llvm::Value *High = Builder.CreateZExt(VPtrVal, Int64Ty);
    [all...]
CodeGenModule.cpp 99 Int64Ty = llvm::Type::getInt64Ty(LLVMContext);
    [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
IntegerDivision.cpp 560 Type *Int64Ty = Builder.getInt64Ty();
563 ExtDividend = Builder.CreateSExt(Rem->getOperand(0), Int64Ty);
564 ExtDivisor = Builder.CreateSExt(Rem->getOperand(1), Int64Ty);
567 ExtDividend = Builder.CreateZExt(Rem->getOperand(0), Int64Ty);
568 ExtDivisor = Builder.CreateZExt(Rem->getOperand(1), Int64Ty);
661 Type *Int64Ty = Builder.getInt64Ty();
664 ExtDividend = Builder.CreateSExt(Div->getOperand(0), Int64Ty);
665 ExtDivisor = Builder.CreateSExt(Div->getOperand(1), Int64Ty);
668 ExtDividend = Builder.CreateZExt(Div->getOperand(0), Int64Ty);
669 ExtDivisor = Builder.CreateZExt(Div->getOperand(1), Int64Ty);
    [all...]
Local.cpp     [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.cpp 38 Int64Ty(C, 64) {
LLVMContextImpl.h 306 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;
ConstantFold.cpp     [all...]
Type.cpp 236 IntegerType *Type::getInt64Ty(LLVMContext &C) { return &C.pImpl->Int64Ty; }
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 763 Type *Int64Ty = Type::getInt64Ty(*Ctx);
766 Int64Ty->getPointerTo()->getPointerTo() // uint64_t **counters
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]

Completed in 837 milliseconds

1 2