Searched refs:EndCond (Results 1 - 10 of 10) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp624 Value *EndCond = End->Codegen(); local
625 if (EndCond == 0) return EndCond;
628 EndCond = Builder.CreateFCmpONE(EndCond,
637 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp728 Value *EndCond = End->Codegen(); local
729 if (EndCond == 0) return EndCond;
732 EndCond = Builder.CreateFCmpONE(EndCond,
741 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/lib/Object/
H A DArchive.cpp29 char EndCond; local
31 EndCond = ' ';
33 EndCond = '/';
35 llvm::StringRef(Name, sizeof(Name)).find(EndCond);
39 // Don't include the EndCond if there is one.
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp828 Value *EndCond = End->Codegen(); local
829 if (EndCond == 0) return EndCond;
838 EndCond = Builder.CreateFCmpONE(EndCond,
846 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp855 Value *EndCond = End->Codegen(); local
856 if (EndCond == 0) return EndCond;
865 EndCond = Builder.CreateFCmpONE(EndCond,
873 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
H A Dtoy.cpp1219 Value *EndCond = End->Codegen(); local
1220 if (EndCond == 0) return EndCond;
1229 EndCond = Builder.CreateFCmpONE(EndCond,
1237 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp1077 Value *EndCond = End->Codegen(); local
1078 if (EndCond == 0) return EndCond;
1087 EndCond = Builder.CreateFCmpONE(EndCond,
1095 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp837 Value *EndCond = End->Codegen(); local
838 if (EndCond == 0) return EndCond;
847 EndCond = Builder.CreateFCmpONE(EndCond,
855 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
H A Dtoy.cpp1117 Value *EndCond = End->Codegen(); local
1118 if (EndCond == 0) return EndCond;
1127 EndCond = Builder.CreateFCmpONE(EndCond,
1135 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1397 Value *EndCond = End->Codegen(); local
1398 if (EndCond == 0) return EndCond;
1407 EndCond = Builder.CreateFCmpONE(EndCond,
1415 Builder.CreateCondBr(EndCond, LoopBB, AfterBB);

Completed in 193 milliseconds