Lines Matching refs:CG
142 LTOCodeGenerator *CG = unwrap(cg); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS() local
151 CG->setAttr(attrs.c_str()); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
156 CG->setOptLevel(OptLevel - '0'); in DEFINE_SIMPLE_CONVERSION_FUNCTIONS()
390 LibLTOCodeGenerator *CG = unwrap(cg); in lto_codegen_compile() local
391 CG->NativeObjectFile = in lto_codegen_compile()
392 CG->compile(DisableVerify, DisableInline, DisableGVNLoadPRE, in lto_codegen_compile()
394 if (!CG->NativeObjectFile) in lto_codegen_compile()
396 *length = CG->NativeObjectFile->getBufferSize(); in lto_codegen_compile()
397 return CG->NativeObjectFile->getBufferStart(); in lto_codegen_compile()
408 LibLTOCodeGenerator *CG = unwrap(cg); in lto_codegen_compile_optimized() local
409 CG->NativeObjectFile = CG->compileOptimized(); in lto_codegen_compile_optimized()
410 if (!CG->NativeObjectFile) in lto_codegen_compile_optimized()
412 *length = CG->NativeObjectFile->getBufferSize(); in lto_codegen_compile_optimized()
413 return CG->NativeObjectFile->getBufferStart(); in lto_codegen_compile_optimized()