Lines Matching refs:VarName
175 std::string VarName; member in ForExprAST
180 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} in ForExprAST()
863 const std::string &VarName) { in CreateEntryBlockAlloca() argument
867 VarName.c_str()); in CreateEntryBlockAlloca()
1035 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1056 AllocaInst *OldVal = NamedValues[VarName]; in Codegen()
1057 NamedValues[VarName] = Alloca; in Codegen()
1081 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1101 NamedValues[VarName] = OldVal; in Codegen()
1103 NamedValues.erase(VarName); in Codegen()
1117 const std::string &VarName = VarNames[i].first; in Codegen() local
1133 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen()
1138 OldBindings.push_back(NamedValues[VarName]); in Codegen()
1141 NamedValues[VarName] = Alloca; in Codegen()