aboutsummaryrefslogtreecommitdiff
path: root/src/interp/profile.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2011-10-04 00:01:48 +0000
committerdos-reis <gdr@axiomatics.org>2011-10-04 00:01:48 +0000
commit0204a2e9c993ee408d769cc6e2f91506b5699c81 (patch)
treed89e0a82d362e311218ce93d54b73454de6d8384 /src/interp/profile.boot
parent3be2028e7626877113e9c63530b5aeb982dc337a (diff)
downloadopen-axiom-0204a2e9c993ee408d769cc6e2f91506b5699c81.tar.gz
* boot/utility.boot (symbolAssoc): Rename from assocSymbol. Export.
* interp/functor.boot: Remove getAbbreviation, mkAbbrev, addsuffix. * interp/sys-utility.boot (symbolAssoc): Remove as redundant. (scalarTarget): New. * interp/bc-matrix.boot: Use symbolTarget instead of symbolLassoc. * interp/br-con.boot: Use QLASSQ instead of symbolTarget. * interp/br-data.boot: Likewise. * interp/br-op1.boot: Likewise. * interp/br-prof.boot: Likewise. * interp/br-saturn.boot: Likewise. * interp/br-search.boot: Likewise. * interp/buildom.boot: Likewise. * interp/c-doc.boot: Likewise. * interp/c-util.boot: Likewise. * interp/cattable.boot: Likewise. * interp/clam.boot: Likewise. * interp/define.boot: Likewise. * interp/format.boot: Likewise. * interp/g-timer.boot: Likewise. * interp/g-util.boot: Likewise. * interp/ht-util.boot: Likewise. * interp/htsetvar.boot: Likewise. * interp/i-intern.boot: Likewise. * interp/i-map.boot: Likewise. * interp/i-object.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/lisplib.boot: Likewise. * interp/profile.boot: Likewise. * interp/trace.boot: Likewise. * interp/vmlisp.lisp (assoc): Tidy.
Diffstat (limited to 'src/interp/profile.boot')
-rw-r--r--src/interp/profile.boot12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interp/profile.boot b/src/interp/profile.boot
index 78afa963..41796931 100644
--- a/src/interp/profile.boot
+++ b/src/interp/profile.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2010, Gabriel Dos Reis.
+-- Copyright (C) 2007-2011, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -73,19 +73,19 @@ profileRecord(label,name,info) == --name: info is var: type or op: sig
$profileAlist
profileDisplay() ==
- profileDisplayOp('constructor,symbolLassoc('constructor,$profileAlist) )
+ profileDisplayOp('constructor,symbolTarget('constructor,$profileAlist) )
for [op,:alist1] in $profileAlist | op ~= 'constructor repeat
profileDisplayOp(op,alist1)
profileDisplayOp(op,alist1) ==
sayBrightly op
- if symbolLassoc('arguments,alist1) then
+ if symbolTarget('arguments,alist1) then
sayBrightly '" arguments"
- for [x,:t] in MSORT symbolLAssoc('arguments,alist1) repeat
+ for [x,:t] in MSORT symbolTarget('arguments,alist1) repeat
sayBrightly concat('" ",x,": ",prefix2String t)
- if symbolLassoc('locals,alist1) then
+ if symbolTarget('locals,alist1) then
sayBrightly '" locals"
- for [x,:t] in MSORT symbolLassoc('locals,alist1) repeat
+ for [x,:t] in MSORT symbolTarget('locals,alist1) repeat
sayBrightly concat('" ",x,": ",prefix2String t)
for [con,:alist2] in alist1 | not (con in '(locals arguments)) repeat
sayBrightly concat('" ",prefix2String con)