Home
last modified time | relevance | path

Searched refs:AllocaValue (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DAtomicExpandPass.cpp1794 AllocaInst *AllocaValue = nullptr; in expandAtomicOpToLibcall() local
1840 AllocaValue = AllocaBuilder.CreateAlloca(ValueOperand->getType()); in expandAtomicOpToLibcall()
1841 AllocaValue->setAlignment(AllocaAlignment); in expandAtomicOpToLibcall()
1843 Builder.CreateBitCast(AllocaValue, Type::getInt8PtrTy(Ctx)); in expandAtomicOpToLibcall()
1845 Builder.CreateAlignedStore(ValueOperand, AllocaValue, AllocaAlignment); in expandAtomicOpToLibcall()
/llvm-project-15.0.7/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp3205 Value *AllocaValue = in processStaticAllocas() local
3209 LocalStackBase = createPHI(IRB, NoFakeStack, AllocaValue, Term, FakeStack); in processStaticAllocas()
/llvm-project-15.0.7/llvm/unittests/Frontend/
H A DOpenMPIRBuilderTest.cpp248 template <typename InstTy> static Value *findStoredValue(Value *AllocaValue) { in findStoredValue() argument
249 Instruction *Inst = dyn_cast<InstTy>(AllocaValue); in findStoredValue()