Searched refs:OperandV (Results 1 - 13 of 13) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp644 Value *OperandV = Operand->codegen(); local
645 if (!OperandV)
652 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp726 Value *OperandV = Operand->codegen(); local
727 if (!OperandV)
734 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp655 Value *OperandV = Operand->Codegen(); local
656 if (OperandV == 0) return 0;
665 return Builder.CreateCall(F, OperandV, "unop");
H A Dtoy.cpp1028 Value *OperandV = Operand->Codegen(); local
1029 if (OperandV == 0) return 0;
1035 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp886 Value *OperandV = Operand->Codegen(); local
887 if (OperandV == 0) return 0;
893 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp640 Value *OperandV = Operand->Codegen(); local
641 if (OperandV == 0) return 0;
650 return Builder.CreateCall(F, OperandV, "unop");
H A Dtoy.cpp926 Value *OperandV = Operand->Codegen(); local
927 if (OperandV == 0) return 0;
933 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp910 Value *OperandV = Operand->codegen(); local
911 if (!OperandV)
919 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp1098 Value *OperandV = Operand->Codegen(); local
1099 if (OperandV == 0) return 0;
1106 return Builder.CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp770 if (Value *OperandV = Operand->IRGen(C)) {
773 return C.getBuilder().CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");

Completed in 64 milliseconds