Lines Matching refs:VarName
217 std::string VarName; member in ForExprAST
222 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
1077 const std::string &VarName) { in CreateEntryBlockAlloca() argument
1081 VarName.c_str()); in CreateEntryBlockAlloca()
1255 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1276 AllocaInst *OldVal = NamedValues[VarName]; in Codegen()
1277 NamedValues[VarName] = Alloca; in Codegen()
1301 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1321 NamedValues[VarName] = OldVal; in Codegen()
1323 NamedValues.erase(VarName); in Codegen()
1337 const std::string &VarName = VarNames[i].first; in Codegen() local
1353 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1358 OldBindings.push_back(NamedValues[VarName]); in Codegen()
1361 NamedValues[VarName] = Alloca; in Codegen()