Lines Matching refs:Options
44 struct LLVMMCJITCompilerOptions Options;
46 LLVMInitializeMCJITCompilerOptions(&Options, sizeof(Options));
49 Options.OptLevel = Int_val(Field(OptRecord, 0));
50 Options.CodeModel = Int_val(Field(OptRecord, 1));
51 Options.NoFramePointerElim = Int_val(Field(OptRecord, 2));
52 Options.EnableFastISel = Int_val(Field(OptRecord, 3));
53 Options.MCJMM = NULL;
56 if (LLVMCreateMCJITCompilerForModule(&MCJIT, M, &Options,
57 sizeof(Options), &Error))