HomeSort by relevance Sort by last modified time
    Searched defs:Int32Ty (Results 1 - 25 of 48) sorted by null

1 2

  /external/llvm/lib/CodeGen/
PreISelIntrinsicLowering.cpp 32 Type *Int32Ty = Type::getInt32Ty(F.getContext());
33 Type *Int32PtrTy = Int32Ty->getPointerTo();
GlobalMerge.cpp 424 Type *Int32Ty = Type::getInt32Ty(M.getContext());
459 ConstantInt::get(Int32Ty, 0),
460 ConstantInt::get(Int32Ty, idx),
ShadowStackGCLowering.cpp 214 Type *Int32Ty = Type::getInt32Ty(F.getContext());
217 ConstantInt::get(Int32Ty, Roots.size(), false),
218 ConstantInt::get(Int32Ty, NumMeta, false),
SjLjEHPrepare.cpp 87 Type *Int32Ty = Type::getInt32Ty(M.getContext());
88 doubleUnderDataTy = ArrayType::get(Int32Ty, 4);
91 Int32Ty, // call_site
107 Type *Int32Ty = Type::getInt32Ty(I->getContext());
108 Value *Zero = ConstantInt::get(Int32Ty, 0);
109 Value *One = ConstantInt::get(Int32Ty, 1);
SafeStack.cpp 114 Type *Int32Ty;
204 Int32Ty = Type::getInt32Ty(M.getContext());
581 ConstantInt::get(Int32Ty, -Offset));
599 ConstantInt::get(Int32Ty, -Offset));
638 ConstantInt::get(Int32Ty, -Offset));
665 IRB.CreateGEP(BasePointer, ConstantInt::get(Int32Ty, -FrameSize),
    [all...]
  /external/llvm/lib/IR/
ProfileSummary.cpp 52 Type *Int32Ty = Type::getInt32Ty(Context);
56 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Entry.Cutoff)),
58 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Entry.NumCounts))};
MDBuilder.cpp 48 Type *Int32Ty = Type::getInt32Ty(Context);
50 Vals[i + 1] = createConstant(ConstantInt::get(Int32Ty, Weights[i]));
Module.cpp 352 Type *Int32Ty = Type::getInt32Ty(Context);
354 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Behavior)),
364 Type *Int32Ty = Type::getInt32Ty(Context);
365 addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val));
  /external/llvm/lib/Target/NVPTX/
NVVMIntrRange.cpp 69 IntegerType *Int32Ty = Type::getInt32Ty(Context);
71 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Low)),
72 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, High))};
  /external/llvm/lib/Transforms/Utils/
SanitizerStats.cpp 79 IntegerType *Int32Ty = Type::getInt32Ty(M->getContext());
88 ConstantInt::get(Int32Ty, Inits.size()),
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 61 Type *Int32Ty = Type::getInt32Ty(Context);
70 Vec[i + 1] = ConstantInt::get(Int32Ty, i == caseNo ? LikelyBranchWeight : UnlikelyBranchWeight);
108 Type *Int32Ty = Type::getInt32Ty(Context);
115 ConstantInt::get(Int32Ty, Likely ? LikelyBranchWeight : UnlikelyBranchWeight),
116 ConstantInt::get(Int32Ty, Likely ? UnlikelyBranchWeight : LikelyBranchWeight)
  /external/clang/lib/CodeGen/
CGVTT.cpp 47 llvm::Type *Int8PtrTy = CGM.Int8PtrTy, *Int32Ty = CGM.Int32Ty;
78 llvm::ConstantInt::get(Int32Ty, 0),
79 llvm::ConstantInt::get(Int32Ty, AddressPoint)
CodeGenTypeCache.h 37 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty;
  /external/llvm/unittests/IR/
ValueTest.cpp 51 Type *Int32Ty = Type::getInt32Ty(Ctx);
55 Int32Ty,
58 Constant::getAllOnesValue(Int32Ty),
69 Constant *Dummy1 = M->getOrInsertGlobal("dummy", Int32Ty);
77 Int32Ty,
80 Constant::getAllOnesValue(Int32Ty),
97 Type *Int32Ty = Type::getInt32Ty(Ctx);
99 new GlobalVariable(*M, Int32Ty, true, GlobalValue::ExternalLinkage,
100 Constant::getAllOnesValue(Int32Ty), "var", nullptr,
  /external/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 79 Type *Int32Ty = Type::getInt32Ty(V->getContext());
81 return ConstantExpr::getZExt(C, Int32Ty);
85 Value *Zero = Constant::getNullValue(Int32Ty);
87 PHINode::Create(Int32Ty, P->getNumIncomingValues(), P->getName(), P);
99 return new ZExtInst(V, Int32Ty, "", InstPt);
  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectLinkingLayerTest.cpp 71 Type *Int32Ty = IntegerType::get(Context, 32);
73 new GlobalVariable(*M, Int32Ty, false, GlobalValue::ExternalLinkage,
74 ConstantInt::get(Int32Ty, 42), "foo");
142 IntegerType *Int32Ty = IntegerType::get(Context, 32);
143 Value *FourtyTwo = ConstantInt::getSigned(Int32Ty, 42);
212 IntegerType *Int32Ty = IntegerType::get(Context, 32);
213 Value *FourtyTwo = ConstantInt::getSigned(Int32Ty, 42);
227 IntegerType *Int32Ty = IntegerType::get(Context, 32);
228 Value *Seven = ConstantInt::getSigned(Int32Ty, 7);
  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMGlobalMerge.cpp 126 Type *Int32Ty = Type::getInt32Ty(M.getContext());
150 ConstantInt::get(Int32Ty, 0),
151 ConstantInt::get(Int32Ty, k-i)
  /frameworks/compile/libbcc/lib/
RSGlobalInfoPass.cpp 129 llvm::Type *Int32Ty = llvm::Type::getInt32Ty(M.getContext());
203 llvm::ArrayType *Int32ArrayTy = llvm::ArrayType::get(Int32Ty, NumGlobals);
206 llvm::Value *V = M.getOrInsertGlobal(kRsGlobalEntries, Int32Ty);
210 llvm::ConstantInt::get(Int32Ty, NumGlobals);
  /frameworks/rs/rsov/compiler/
GlobalMergePass.cpp 96 IntegerType *const Int32Ty = Type::getInt32Ty(LLVMCtxt);
97 ConstantInt *const Zero = ConstantInt::get(Int32Ty, 0);
118 Idx[1] = ConstantInt::get(Int32Ty, i);
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 231 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
234 StructType::get(Int32Ty, TorList[0].first->getType(), nullptr);
237 ConstantInt::get(Int32Ty, TorList[i].second),
  /external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 228 Type *Int32Ty = Type::getInt32Ty(EI.getContext());
230 ConstantInt::get(Int32Ty,
558 Type *Int32Ty = Type::getInt32Ty(SVI.getContext());
561 Elts.push_back(UndefValue::get(Int32Ty));
563 Elts.push_back(ConstantInt::get(Int32Ty, NewMask[i]));
  /external/swiftshader/third_party/LLVM/tools/bugpoint/
ExtractFunction.cpp 176 Type *Int32Ty = Type::getInt32Ty(TorList[0].first->getContext());
179 StructType::get(Int32Ty, TorList[0].first->getType(), NULL);
182 ConstantInt::get(Int32Ty, TorList[i].second),
  /external/llvm/lib/Transforms/IPO/
WholeProgramDevirt.cpp 244 IntegerType *Int32Ty;
261 Int32Ty(Type::getInt32Ty(M.getContext())) {}
648 ArrayRef<Constant *>{ConstantInt::get(Int32Ty, 0),
649 ConstantInt::get(Int32Ty, 1)}),
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ShadowStackGC.cpp 218 Type *Int32Ty = Type::getInt32Ty(F.getContext());
221 ConstantInt::get(Int32Ty, Roots.size(), false),
222 ConstantInt::get(Int32Ty, NumMeta, false),
  /external/swiftshader/third_party/LLVM/lib/VMCore/
LLVMContextImpl.h 174 IntegerType Int1Ty, Int8Ty, Int16Ty, Int32Ty, Int64Ty;

Completed in 1787 milliseconds

1 2