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