Searched refs:OperandV (Results 1 - 13 of 13) sorted by relevance
/external/llvm/examples/Kaleidoscope/Chapter6/ |
H A D | toy.cpp | 644 Value *OperandV = Operand->codegen(); local 645 if (!OperandV) 652 return Builder.CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
H A D | toy.cpp | 726 Value *OperandV = Operand->codegen(); local 727 if (!OperandV) 734 return Builder.CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
H A D | toy-jit.cpp | 655 Value *OperandV = Operand->Codegen(); local 656 if (OperandV == 0) return 0; 665 return Builder.CreateCall(F, OperandV, "unop");
|
H A D | toy.cpp | 1028 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 D | toy.cpp | 886 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 D | toy-jit.cpp | 640 Value *OperandV = Operand->Codegen(); local 641 if (OperandV == 0) return 0; 650 return Builder.CreateCall(F, OperandV, "unop");
|
H A D | toy.cpp | 926 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 D | toy.cpp | 910 Value *OperandV = Operand->codegen(); local 911 if (!OperandV) 919 return Builder.CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
H A D | toy.cpp | 1098 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 D | toy.cpp | 770 if (Value *OperandV = Operand->IRGen(C)) { 773 return C.getBuilder().CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
H A D | toy.cpp | 769 if (Value *OperandV = Operand->IRGen(C)) { 772 return C.getBuilder().CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
H A D | toy.cpp | 769 if (Value *OperandV = Operand->IRGen(C)) { 772 return C.getBuilder().CreateCall(F, OperandV, "unop");
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
H A D | toy.cpp | 769 if (Value *OperandV = Operand->IRGen(C)) { 772 return C.getBuilder().CreateCall(F, OperandV, "unop");
|
Completed in 64 milliseconds