HomeSort by relevance Sort by last modified time
    Searched refs:OperandV (Results 1 - 13 of 13) sorted by null

  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 644 Value *OperandV = Operand->codegen();
645 if (!OperandV)
652 return Builder.CreateCall(F, OperandV, "unop");
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 726 Value *OperandV = Operand->codegen();
727 if (!OperandV)
734 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 655 Value *OperandV = Operand->Codegen();
656 if (OperandV == 0) return 0;
665 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
toy.cpp 1028 Value *OperandV = Operand->Codegen();
1029 if (OperandV == 0) return 0;
1035 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 886 Value *OperandV = Operand->Codegen();
887 if (OperandV == 0) return 0;
893 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 640 Value *OperandV = Operand->Codegen();
641 if (OperandV == 0) return 0;
650 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
toy.cpp 926 Value *OperandV = Operand->Codegen();
927 if (OperandV == 0) return 0;
933 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 910 Value *OperandV = Operand->codegen();
911 if (!OperandV)
919 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 1098 Value *OperandV = Operand->Codegen();
1099 if (OperandV == 0) return 0;
1106 return Builder.CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 770 if (Value *OperandV = Operand->IRGen(C)) {
773 return C.getBuilder().CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 769 if (Value *OperandV = Operand->IRGen(C)) {
772 return C.getBuilder().CreateCall(F, OperandV, "unop");
    [all...]

Completed in 449 milliseconds