summaryrefslogtreecommitdiffstats
path: root/qemu/scripts/tracetool/backend/simple.py
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/scripts/tracetool/backend/simple.py
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/scripts/tracetool/backend/simple.py')
-rw-r--r--qemu/scripts/tracetool/backend/simple.py100
1 files changed, 0 insertions, 100 deletions
diff --git a/qemu/scripts/tracetool/backend/simple.py b/qemu/scripts/tracetool/backend/simple.py
deleted file mode 100644
index 3246c2001..000000000
--- a/qemu/scripts/tracetool/backend/simple.py
+++ /dev/null
@@ -1,100 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-
-"""
-Simple built-in backend.
-"""
-
-__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
-__copyright__ = "Copyright 2012-2014, Lluís Vilanova <vilanova@ac.upc.edu>"
-__license__ = "GPL version 2 or (at your option) any later version"
-
-__maintainer__ = "Stefan Hajnoczi"
-__email__ = "stefanha@linux.vnet.ibm.com"
-
-
-from tracetool import out
-
-
-PUBLIC = True
-
-
-def is_string(arg):
- strtype = ('const char*', 'char*', 'const char *', 'char *')
- if arg.lstrip().startswith(strtype):
- return True
- else:
- return False
-
-
-def generate_h_begin(events):
- for event in events:
- out('void _simple_%(api)s(%(args)s);',
- api=event.api(),
- args=event.args)
- out('')
-
-
-def generate_h(event):
- out(' _simple_%(api)s(%(args)s);',
- api=event.api(),
- args=", ".join(event.args.names()))
-
-
-def generate_c_begin(events):
- out('#include "qemu/osdep.h"',
- '#include "trace.h"',
- '#include "trace/control.h"',
- '#include "trace/simple.h"',
- '')
-
-
-def generate_c(event):
- out('void _simple_%(api)s(%(args)s)',
- '{',
- ' TraceBufferRecord rec;',
- api=event.api(),
- args=event.args)
- sizes = []
- for type_, name in event.args:
- if is_string(type_):
- out(' size_t arg%(name)s_len = %(name)s ? MIN(strlen(%(name)s), MAX_TRACE_STRLEN) : 0;',
- name=name)
- strsizeinfo = "4 + arg%s_len" % name
- sizes.append(strsizeinfo)
- else:
- sizes.append("8")
- sizestr = " + ".join(sizes)
- if len(event.args) == 0:
- sizestr = '0'
-
-
- out('',
- ' if (!trace_event_get_state(%(event_id)s)) {',
- ' return;',
- ' }',
- '',
- ' if (trace_record_start(&rec, %(event_id)s, %(size_str)s)) {',
- ' return; /* Trace Buffer Full, Event Dropped ! */',
- ' }',
- event_id='TRACE_' + event.name.upper(),
- size_str=sizestr)
-
- if len(event.args) > 0:
- for type_, name in event.args:
- # string
- if is_string(type_):
- out(' trace_record_write_str(&rec, %(name)s, arg%(name)s_len);',
- name=name)
- # pointer var (not string)
- elif type_.endswith('*'):
- out(' trace_record_write_u64(&rec, (uintptr_t)(uint64_t *)%(name)s);',
- name=name)
- # primitive data type
- else:
- out(' trace_record_write_u64(&rec, (uint64_t)%(name)s);',
- name=name)
-
- out(' trace_record_finish(&rec);',
- '}',
- '')