Bug 1407464 - Remove probes/. r=ted

The files generated from the contents of probes/ are never used even
with dtrace enabled, and mozilla-trace.d actually never contained probes
definitions. The js engine has probes of its own, and separate scripts
to generate the corresponding source headers.
(see e.g. js/src/devtools/javascript-trace.d)

--HG--
extra : rebase_source : ad60902f087e81cdaced3bf858454e4cecfc8f11
This commit is contained in:
Mike Hommey 2017-10-05 13:05:54 +09:00
Родитель 57b7c19650
Коммит 5350e718d0
4 изменённых файлов: 0 добавлений и 60 удалений

Просмотреть файл

@ -98,7 +98,6 @@ if not CONFIG['JS_STANDALONE']:
DIRS += [
'build',
'tools',
'probes',
]
if CONFIG['COMPILE_ENVIRONMENT']:

Просмотреть файл

@ -1,21 +0,0 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
with Files('**'):
BUG_COMPONENT = ('Core', 'JavaScript Engine')
if CONFIG['HAVE_DTRACE']:
EXPORTS += [
'!mozilla-trace.h',
]
GENERATED_FILES += [
'mozilla-trace.h',
]
trace = GENERATED_FILES['mozilla-trace.h']
trace.script = 'trace-gen.py'
trace.inputs += ['mozilla-trace.d']

Просмотреть файл

@ -1,23 +0,0 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
* mozilla provider probes:
* Data types defined in the generated file mozilla-trace.h
*
* TBD
*/
provider mozilla {
/* Probe definitions go here */
};
/*
#pragma D attributes Unstable/Unstable/Common provider mozilla provider
#pragma D attributes Private/Private/Unknown provider mozilla module
#pragma D attributes Private/Private/Unknown provider mozilla function
#pragma D attributes Unstable/Unstable/Common provider mozilla name
#pragma D attributes Unstable/Unstable/Common provider mozilla args
*/

Просмотреть файл

@ -1,15 +0,0 @@
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os
import subprocess
def main(fp, input):
temporary_file = 'mozilla-trace.h.tmp'
subprocess.check_call(['dtrace', '-x', 'nolibs', '-h', '-s', input, '-o', temporary_file])
with open(temporary_file, 'r') as temporary_fp:
output = temporary_fp.read()
fp.write(output.replace('if _DTRACE_VERSION', 'ifdef INCLUDE_MOZILLA_DTRACE'))
os.remove(temporary_file)