Here the issue in my case.
I have a service class which is librarie in codeigniter. Having a a function inside like this.
class PaymentService {
    private $CI;
    public function __construct() {
        $this->CI =& get_instance();
    }
    public function procss(){
        // lots of Ci referencing here ...
    }
my controller as followed:
$this->load->library('PaymentService');
$this->process_(); // see I got his wrong instead it should be like below
$this->Payment_service->process(); //the library class name
Then I was keeping getting the exceed error message. But I do disable XDebug but non helped. Any way please check you class name or your code for proper function calling.