reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
  169   endFunctionWithRet(Inner, ConstantInt::get(Context, APInt(32, innerRetVal)));
unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
   39     : Builder(Context), BuilderTriple(Triple) {}
   42     Module * M = new Module(Name, Context);
   51     BasicBlock *BB = BasicBlock::Create(Context, Name, Result);
   81         M, FunctionType::get(Type::getInt32Ty(Context), {}, false), "main");
   83     Value *ReturnVal = ConstantInt::get(Context, APInt(32, returnCode));
   96             Type::getInt32Ty(Context),
   97             {Type::getInt32Ty(Context), Type::getInt32Ty(Context)}, false),
   97             {Type::getInt32Ty(Context), Type::getInt32Ty(Context)}, false),
  131     Type *GlobalTy = Type::getInt32Ty(Context);
  132     Constant *IV = ConstantInt::get(Context, APInt(32, InitialValue));
  157                       FunctionType::get(Type::getInt32Ty(Context),
  158                                         {Type::getInt32Ty(Context)}, false),
  163     BasicBlock *BaseCase = BasicBlock::Create(Context, "", Result);
  164     BasicBlock *RecursiveCase = BasicBlock::Create(Context, "", Result);
  168     Value *Zero = ConstantInt::get(Context, APInt(32, 0));
  179     Value *One = ConstantInt::get(Context, APInt(32, 1));