Home
last modified time | relevance | path

Searched refs:CreateArgumentAllocas (Results 1 – 12 of 12) sorted by relevance

/external/llvm/examples/Kaleidoscope/MCJIT/cached/
Dtoy-jit.cpp236 void CreateArgumentAllocas(Function *F);
971 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1001 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
Dtoy.cpp243 void CreateArgumentAllocas(Function *F);
1342 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1372 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
Dtoy-jit.cpp221 void CreateArgumentAllocas(Function *F);
953 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
983 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
Dtoy.cpp222 void CreateArgumentAllocas(Function *F);
1240 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1270 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
Dtoy.cpp220 void CreateArgumentAllocas(Function *F);
1200 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1230 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/initial/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1080 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1110 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
Dtoy.cpp262 void CreateArgumentAllocas(Function *F);
1420 void PrototypeAST::CreateArgumentAllocas(Function *F) { in CreateArgumentAllocas() function in PrototypeAST
1450 Proto->CreateArgumentAllocas(TheFunction); in Codegen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1080 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1110 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
Dtoy.cpp222 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1080 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1110 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
Dtoy.cpp223 void CreateArgumentAllocas(Function *F, IRGenContext &C);
1081 void PrototypeAST::CreateArgumentAllocas(Function *F, IRGenContext &C) { in CreateArgumentAllocas() function in PrototypeAST
1111 Proto->CreateArgumentAllocas(TheFunction, C); in IRGen()
/external/llvm/docs/tutorial/
DLangImpl7.rst411 /// CreateArgumentAllocas - Create an alloca for each argument and register the
413 void PrototypeAST::CreateArgumentAllocas(Function *F) {
DLangImpl8.rst395 argument allocas in ``PrototypeAST::CreateArgumentAllocas``.