Lines Matching refs:storagePtr

188     sym->storagePtr = ctx->AllocaInst(sym->type, sym->name.c_str());  in lCopyInTaskParameter()
196 ctx->StoreInst(ptrval, sym->storagePtr, sym->type, sym->type->IsUniformType()); in lCopyInTaskParameter()
208 maskSymbol->storagePtr = ctx->GetFullMaskPointer(); in emitCode()
258 threadIndexSym->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "threadIndex"); in emitCode()
259 ctx->StoreInst(threadIndex, threadIndexSym->storagePtr); in emitCode()
261 threadCountSym->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "threadCount"); in emitCode()
262 ctx->StoreInst(threadCount, threadCountSym->storagePtr); in emitCode()
266 taskIndexSym->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskIndex"); in emitCode()
267 ctx->StoreInst(taskIndex, taskIndexSym->storagePtr); in emitCode()
269 taskCountSym->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskCount"); in emitCode()
270 ctx->StoreInst(taskCount, taskCountSym->storagePtr); in emitCode()
272 taskIndexSym0->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskIndex0"); in emitCode()
273 ctx->StoreInst(taskIndex0, taskIndexSym0->storagePtr); in emitCode()
274 taskIndexSym1->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskIndex1"); in emitCode()
275 ctx->StoreInst(taskIndex1, taskIndexSym1->storagePtr); in emitCode()
276 taskIndexSym2->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskIndex2"); in emitCode()
277 ctx->StoreInst(taskIndex2, taskIndexSym2->storagePtr); in emitCode()
279 taskCountSym0->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskCount0"); in emitCode()
280 ctx->StoreInst(taskCount0, taskCountSym0->storagePtr); in emitCode()
281 taskCountSym1->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskCount1"); in emitCode()
282 ctx->StoreInst(taskCount1, taskCountSym1->storagePtr); in emitCode()
283 taskCountSym2->storagePtr = ctx->AllocaInst(LLVMTypes::Int32Type, "taskCount2"); in emitCode()
284 ctx->StoreInst(taskCount2, taskCountSym2->storagePtr); in emitCode()
298 argSym->storagePtr = ctx->AllocaInst(argSym->type, argSym->name.c_str()); in emitCode()
300 ctx->StoreInst(&*argIter, argSym->storagePtr, argSym->type); in emitCode()