initial.debug 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707
  1. ; Package uid -> name
  2. (0 low-structures)
  3. (1 debug-low-structures)
  4. (2 alt-features-structures)
  5. (3 cheat-features-structures)
  6. (4 the-interfaces)
  7. (5 meta-module-system)
  8. (6 run-time-structures)
  9. (7 compiler-structures)
  10. (8 initial-structures)
  11. (9 debug-structures)
  12. (10 usual-structures)
  13. (11 alt-low-structures)
  14. (12 compiler-structures)
  15. (13 linker-structures)
  16. (14 scheme-level-0)
  17. (15 scheme-level-1)
  18. (16 record-types)
  19. (17 export-the-record-type)
  20. (18 define-record-types)
  21. (19 methods)
  22. (20 number-i/o)
  23. (21 fluids)
  24. (22 wind)
  25. (23 session-data)
  26. (24 i/o)
  27. (25 channel-i/o)
  28. (26 channel-ports)
  29. (27 simple-conditions)
  30. (28 writing)
  31. (29 reading)
  32. (30 scheme-level-2)
  33. (31 features)
  34. (32 templates)
  35. (33 continuations)
  36. (34 more-types)
  37. (35 enumerated)
  38. (36 architecture)
  39. (37 vm-data)
  40. (38 vm-exceptions)
  41. (39 exceptions)
  42. (40 interrupts)
  43. (41 threads)
  44. (42 proposals)
  45. (43 scheduler)
  46. (44 root-scheduler)
  47. (45 enum-case)
  48. (46 queues)
  49. (47 condvars)
  50. (48 usual-resumer)
  51. (49 weak)
  52. (50 display-conditions)
  53. (51 meta-types)
  54. (52 bindings)
  55. (53 names)
  56. (54 thingies)
  57. (55 nodes)
  58. (56 compiler-envs)
  59. (57 syntactic)
  60. (58 usual-macros)
  61. (59 var-utilities)
  62. (60 debug-data)
  63. (61 segments)
  64. (62 primops)
  65. (63 reconstruction)
  66. (64 compiler)
  67. (65 frames)
  68. (66 reading-forms)
  69. (67 flat-environments)
  70. (68 interfaces)
  71. (69 packages)
  72. (70 scan-package)
  73. (71 optimizer)
  74. (72 compile-packages)
  75. (73 defpackage)
  76. (74 types)
  77. (75 module-system)
  78. (76 usages)
  79. (77 analysis)
  80. (78 inline)
  81. (79 strong)
  82. (80 tables)
  83. (81 filenames)
  84. (82 environments)
  85. (83 evaluation)
  86. (84 ensures-loaded)
  87. (85 for-reification)
  88. (86 scheme)
  89. (87 mini-command)
  90. (88 initial-system)
  91. -
  92. ; Location uid -> (name . package-uid)
  93. (0 (and . 14))
  94. (1 (cond . 14))
  95. (2 (do . 14))
  96. (3 (let . 14))
  97. (4 (let* . 14))
  98. (5 (or . 14))
  99. (6 (code-quote . 14))
  100. (7 (quote . 14))
  101. (8 (unspecific . 14))
  102. (9 (define-syntax . 14))
  103. (10 (lambda . 14))
  104. (11 (begin . 14))
  105. (12 (unassigned . 14))
  106. (13 (flat-lambda . 14))
  107. (14 (primitive-procedure . 14))
  108. (15 (define . 14))
  109. (16 (if . 14))
  110. (17 (pure-letrec . 14))
  111. (18 (letrec-syntax . 14))
  112. (19 (%file-name% . 14))
  113. (20 (let-syntax . 14))
  114. (21 (structure-ref . 14))
  115. (22 (loophole . 14))
  116. (23 (letrec . 14))
  117. (24 (lap . 14))
  118. (25 (set! . 14))
  119. (26 (call . 14))
  120. (27 (all-operators . 14))
  121. (28 (atan . 14))
  122. (29 (set-location-defined?! . 14))
  123. (30 (acos . 14))
  124. (31 (vm-extension . 14))
  125. (32 (asin . 14))
  126. (33 (location-defined? . 14))
  127. (34 (time . 14))
  128. (35 (template-set! . 14))
  129. (36 (set-current-proposal! . 14))
  130. (37 (cons . 14))
  131. (38 (wait . 14))
  132. (39 (trap . 14))
  133. (40 (assq . 14))
  134. (41 (current-proposal . 14))
  135. (42 (make-weak-pointer . 14))
  136. (43 (lookup-shared-binding . 14))
  137. (44 (push . 14))
  138. (45 (provisional-set-contents! . 14))
  139. (46 (set-contents! . 14))
  140. (47 (read-char . 14))
  141. (48 (provisional-contents . 14))
  142. (49 (make-cell . 14))
  143. (50 (sqrt . 14))
  144. (51 (* . 14))
  145. (52 (contents . 14))
  146. (53 (+ . 14))
  147. (54 (peek-char . 14))
  148. (55 (- . 14))
  149. (56 (continuation-set! . 14))
  150. (57 (/ . 14))
  151. (58 (weak-pointer? . 14))
  152. (59 (atan1 . 14))
  153. (60 (atan2 . 14))
  154. (61 (quotient . 14))
  155. (62 (close-channel . 14))
  156. (63 (channel-abort . 14))
  157. (64 (char? . 14))
  158. (65 (< . 14))
  159. (66 (= . 14))
  160. (67 (provisional-set-port-data! . 14))
  161. (68 (cell? . 14))
  162. (69 (> . 14))
  163. (70 (make-location . 14))
  164. (71 (imag-part . 14))
  165. (72 (set-port-data! . 14))
  166. (73 (make-template . 14))
  167. (74 (real? . 14))
  168. (75 (real-part . 14))
  169. (76 (provisional-port-data . 14))
  170. (77 (record-length . 14))
  171. (78 (port-data . 14))
  172. (79 (pair? . 14))
  173. (80 (provisional-set-port-lock! . 14))
  174. (81 (make-port . 14))
  175. (82 (set-port-lock! . 14))
  176. (83 (bit-count . 14))
  177. (84 (provisional-checked-record-ref . 14))
  178. (85 (return-from-exception . 14))
  179. (86 (provisional-port-lock . 14))
  180. (87 (location? . 14))
  181. (88 (checked-record-ref . 14))
  182. (89 (channel-maybe-read . 14))
  183. (90 (add-finalizer! . 14))
  184. (91 (rational? . 14))
  185. (92 (template? . 14))
  186. (93 (port-lock . 14))
  187. (94 (vector-length . 14))
  188. (95 (make-continuation . 14))
  189. (96 (provisional-shared-binding-ref . 14))
  190. (97 (string-length . 14))
  191. (98 (shared-binding-ref . 14))
  192. (99 (port? . 14))
  193. (100 (angle . 14))
  194. (101 (false . 14))
  195. (102 (remainder . 14))
  196. (103 (continuation? . 14))
  197. (104 (channel-ready? . 14))
  198. (105 (binary-reduce1 . 14))
  199. (106 (binary-reduce2 . 14))
  200. (107 (char<? . 14))
  201. (108 (char=? . 14))
  202. (109 (<= . 14))
  203. (110 (magnitude . 14))
  204. (111 (>= . 14))
  205. (112 (with-continuation . 14))
  206. (113 (floor . 14))
  207. (114 (provisional-checked-record-set! . 14))
  208. (115 (apply . 14))
  209. (116 (memory-status . 14))
  210. (117 (checked-record-set! . 14))
  211. (118 (exact->inexact . 14))
  212. (119 (inexact->exact . 14))
  213. (120 (extended-number-length . 14))
  214. (121 (open-channels-list . 14))
  215. (122 (provisional-shared-binding-set! . 14))
  216. (123 (channel-id . 14))
  217. (124 (shared-binding-set! . 14))
  218. (125 (numerator . 14))
  219. (126 (eof-object . 14))
  220. (127 (byte-vector-length . 14))
  221. (128 (record-ref . 14))
  222. (129 (make-polar . 14))
  223. (130 (write-char . 14))
  224. (131 (symbol->string . 14))
  225. (132 (exact? . 14))
  226. (133 (push-false . 14))
  227. (134 (provisional-vector-ref . 14))
  228. (135 (vector-ref . 14))
  229. (136 (set-current-thread! . 14))
  230. (137 (provisional-set-port-index! . 14))
  231. (138 (immutable? . 14))
  232. (139 (set-exception-handlers! . 14))
  233. (140 (string-ref . 14))
  234. (141 (set-port-index! . 14))
  235. (142 (provisional-set-port-limit! . 14))
  236. (143 (make-shared-binding . 14))
  237. (144 (current-thread . 14))
  238. (145 (provisional-port-index . 14))
  239. (146 (channel-status . 14))
  240. (147 (set-port-limit! . 14))
  241. (148 (shared-binding-name . 14))
  242. (149 (port-index . 14))
  243. (150 (make-immutable! . 14))
  244. (151 (byte-vector-logging-ref . 14))
  245. (152 (set-enabled-interrupts! . 14))
  246. (153 (provisional-port-limit . 14))
  247. (154 (port-limit . 14))
  248. (155 (ascii->char . 14))
  249. (156 (char->ascii . 14))
  250. (157 (undefine-shared-binding . 14))
  251. (158 (channel-close-silently? . 14))
  252. (159 (attempt-copy-bytes! . 14))
  253. (160 (record-set! . 14))
  254. (161 (shared-binding? . 14))
  255. (162 (eof-object? . 14))
  256. (163 (set-interrupt-handlers! . 14))
  257. (164 (record . 14))
  258. (165 (schedule-interrupt . 14))
  259. (166 (channel-maybe-write . 14))
  260. (167 (provisional-vector-set! . 14))
  261. (168 (extended-number-ref . 14))
  262. (169 (vector-set! . 14))
  263. (170 (copy-bytes! . 14))
  264. (171 (string-set! . 14))
  265. (172 (call-external-value . 14))
  266. (173 (values . 14))
  267. (174 (intern . 14))
  268. (175 (vector . 14))
  269. (176 (write-image-low . 14))
  270. (177 (provisional-byte-vector-ref . 14))
  271. (178 (byte-vector-logging-set! . 14))
  272. (179 (byte-vector-ref . 14))
  273. (180 (make-double . 14))
  274. (181 (provisional-set-location-id! . 14))
  275. (182 (make-record . 14))
  276. (183 (set-location-id! . 14))
  277. (184 (provisional-location-id . 14))
  278. (185 (location-id . 14))
  279. (186 (bitwise-and . 14))
  280. (187 (eq? . 14))
  281. (188 (double? . 14))
  282. (189 (extended-number-set! . 14))
  283. (190 (make-vector . 14))
  284. (191 (record? . 14))
  285. (192 (provisional-set-port-buffer! . 14))
  286. (193 (make-string . 14))
  287. (194 (find-undefined-imported-bindings . 14))
  288. (195 (set-port-buffer! . 14))
  289. (196 (primitive-catch . 14))
  290. (197 (string-hash . 14))
  291. (198 (provisional-byte-vector-set! . 14))
  292. (199 (template-length . 14))
  293. (200 (provisional-port-buffer . 14))
  294. (201 (number? . 14))
  295. (202 (port-buffer . 14))
  296. (203 (byte-vector-set! . 14))
  297. (204 (bitwise-ior . 14))
  298. (205 (provisional-set-car! . 14))
  299. (206 (provisional-set-cdr! . 14))
  300. (207 (set-car! . 14))
  301. (208 (closure-env . 14))
  302. (209 (vector? . 14))
  303. (210 (bitwise-not . 14))
  304. (211 (set-cdr! . 14))
  305. (212 (provisional-car . 14))
  306. (213 (symbol? . 14))
  307. (214 (string? . 14))
  308. (215 (provisional-cdr . 14))
  309. (216 (car . 14))
  310. (217 (bitwise-xor . 14))
  311. (218 (cdr . 14))
  312. (219 (find-all-records . 14))
  313. (220 (continuation-length . 14))
  314. (221 (log . 14))
  315. (222 (message . 14))
  316. (223 (tan . 14))
  317. (224 (collect . 14))
  318. (225 (cos . 14))
  319. (226 (channel-os-index . 14))
  320. (227 (provisional-set-port-status! . 14))
  321. (228 (make-extended-number . 14))
  322. (229 (set-port-status! . 14))
  323. (230 (sin . 14))
  324. (231 (exp . 14))
  325. (232 (provisional-port-status . 14))
  326. (233 (pop . 14))
  327. (234 (port-status . 14))
  328. (235 (return-from-callback . 14))
  329. (236 (make-byte-vector . 14))
  330. (237 (weak-pointer-ref . 14))
  331. (238 (call-with-values . 14))
  332. (239 (denominator . 14))
  333. (240 (reverse-list->string . 14))
  334. (241 (extended-number? . 14))
  335. (242 (shared-binding-is-import? . 14))
  336. (243 (return-from-native-exception . 14))
  337. (244 (provisional-cell-ref . 14))
  338. (245 (os-error-message . 14))
  339. (246 (find-all . 14))
  340. (247 (cell-ref . 14))
  341. (248 (byte-vector? . 14))
  342. (249 (string=? . 14))
  343. (250 (open-channel . 14))
  344. (251 (channel? . 14))
  345. (252 (unassigned-check . 14))
  346. (253 (make-rectangular . 14))
  347. (254 (set-session-data! . 14))
  348. (255 (maybe-commit . 14))
  349. (256 (template-ref . 14))
  350. (257 (make-closure . 14))
  351. (258 (session-data . 14))
  352. (259 (integer? . 14))
  353. (260 (signal-condition . 14))
  354. (261 (provisional-set-port-pending-eof?! . 14))
  355. (262 (port-handler . 14))
  356. (263 (set-port-pending-eof?! . 14))
  357. (264 (arithmetic-shift . 14))
  358. (265 (provisional-port-pending-eof? . 14))
  359. (266 (provisional-cell-set! . 14))
  360. (267 (complex? . 14))
  361. (268 (port-pending-eof? . 14))
  362. (269 (cell-set! . 14))
  363. (270 (closure? . 14))
  364. (271 (continuation-ref . 14))
  365. (272 (closure-template . 14))
  366. (273 (current-cont . 14))
  367. (274 (char->integer . 14))
  368. (275 (integer->char . 14))
  369. (276 (ascii-limit . 14))
  370. (277 (ascii-whitespaces . 14))
  371. (278 (procedure? . 14))
  372. (279 (invoke-closure . 14))
  373. (280 (primitive-cwcc . 14))
  374. (281 (make-undefined-location . 14))
  375. (282 (location-assigned? . 14))
  376. (283 (cell-unassigned? . 14))
  377. (284 (vector-unassigned? . 14))
  378. (285 (string-copy . 14))
  379. (286 (string->symbol . 14))
  380. (287 (input-port? . 14))
  381. (288 (output-port? . 14))
  382. (289 (record-type . 14))
  383. (290 (make-code-vector . 14))
  384. (291 (code-vector? . 14))
  385. (292 (code-vector-length . 14))
  386. (293 (code-vector-ref . 14))
  387. (294 (code-vector-set! . 14))
  388. (295 (lookup-imported-binding . 14))
  389. (296 (lookup-exported-binding . 14))
  390. (297 (define-imported-binding . 14))
  391. (298 (define-exported-binding . 14))
  392. (299 (undefine-imported-binding . 14))
  393. (300 (undefine-exported-binding . 14))
  394. (301 (byte-vector . 14))
  395. (302 (secret-length . 14))
  396. (303 (debug-message . 14))
  397. (304 (write-image . 14))
  398. (305 (vector-prefix->list . 14))
  399. (306 (empty-log . 14))
  400. (307 (make-proposal . 14))
  401. (308 (make-condition . 14))
  402. (309 (signal . 14))
  403. (310 (error . 14))
  404. (311 (warn . 14))
  405. (312 (note . 14))
  406. (313 (syntax-error . 14))
  407. (314 (call-error . 14))
  408. (315 (case . 15))
  409. (316 (quasiquote . 15))
  410. (317 (syntax-rules . 15))
  411. (318 (not . 15))
  412. (319 (boolean? . 15))
  413. (320 (eqv? . 15))
  414. (321 (equal? . 15))
  415. (322 (max . 15))
  416. (323 (min . 15))
  417. (324 (max-or-min . 15))
  418. (325 (abs . 15))
  419. (326 (zero? . 15))
  420. (327 (positive? . 15))
  421. (328 (negative? . 15))
  422. (329 (even? . 15))
  423. (330 (odd? . 15))
  424. (331 (caar . 15))
  425. (332 (cadr . 15))
  426. (333 (cdar . 15))
  427. (334 (cddr . 15))
  428. (335 (caaar . 15))
  429. (336 (caadr . 15))
  430. (337 (cadar . 15))
  431. (338 (caddr . 15))
  432. (339 (cdaar . 15))
  433. (340 (cdadr . 15))
  434. (341 (cddar . 15))
  435. (342 (cdddr . 15))
  436. (343 (caaaar . 15))
  437. (344 (caaadr . 15))
  438. (345 (caadar . 15))
  439. (346 (caaddr . 15))
  440. (347 (cadaar . 15))
  441. (348 (cadadr . 15))
  442. (349 (caddar . 15))
  443. (350 (cadddr . 15))
  444. (351 (cdaaar . 15))
  445. (352 (cdaadr . 15))
  446. (353 (cdadar . 15))
  447. (354 (cdaddr . 15))
  448. (355 (cddaar . 15))
  449. (356 (cddadr . 15))
  450. (357 (cdddar . 15))
  451. (358 (cddddr . 15))
  452. (359 (null? . 15))
  453. (360 (list . 15))
  454. (361 (length . 15))
  455. (362 (real-length . 15))
  456. (363 (append . 15))
  457. (364 (reverse . 15))
  458. (365 (append-reverse . 15))
  459. (366 (list-tail . 15))
  460. (367 (list-ref . 15))
  461. (368 (mem . 15))
  462. (369 (memq . 15))
  463. (370 (memv . 15))
  464. (371 (member . 15))
  465. (372 (ass . 15))
  466. (373 (assv . 15))
  467. (374 (assoc . 15))
  468. (375 (list? . 15))
  469. (376 (char>? . 15))
  470. (377 (char>=? . 15))
  471. (378 (char<=? . 15))
  472. (379 (char-whitespace? . 15))
  473. (380 (char-lower-case? . 15))
  474. (381 (char-upper-case? . 15))
  475. (382 (char-numeric? . 15))
  476. (383 (char-alphabetic? . 15))
  477. (384 (char-case-delta . 15))
  478. (385 (make-character-map . 15))
  479. (386 (upcase-map . 15))
  480. (387 (char-upcase . 15))
  481. (388 (downcase-map . 15))
  482. (389 (char-downcase . 15))
  483. (390 (char-ci-compare . 15))
  484. (391 (char-ci=? . 15))
  485. (392 (char-ci<? . 15))
  486. (393 (char-ci<=? . 15))
  487. (394 (char-ci>? . 15))
  488. (395 (char-ci>=? . 15))
  489. (396 (string . 15))
  490. (397 (substring . 15))
  491. (398 (string-append . 15))
  492. (399 (string->list . 15))
  493. (400 (list->string . 15))
  494. (401 (string-fill! . 15))
  495. (402 (make-string=? . 15))
  496. (403 (string-ci=? . 15))
  497. (404 (make-string<? . 15))
  498. (405 (string<? . 15))
  499. (406 (string-ci<? . 15))
  500. (407 (string>? . 15))
  501. (408 (string<=? . 15))
  502. (409 (string>=? . 15))
  503. (410 (string-ci>? . 15))
  504. (411 (string-ci<=? . 15))
  505. (412 (string-ci>=? . 15))
  506. (413 (vector->list . 15))
  507. (414 (list->vector . 15))
  508. (415 (vector-fill! . 15))
  509. (416 (map . 15))
  510. (417 (map1 . 15))
  511. (418 (map2+ . 15))
  512. (419 (for-each . 15))
  513. (420 (for-each1 . 15))
  514. (421 (for-each2+ . 15))
  515. (422 (delay . 15))
  516. (423 (make-promise . 15))
  517. (424 (force . 15))
  518. (425 (unspecific . 15))
  519. (426 (reduce . 15))
  520. (427 (filter . 15))
  521. (428 (pos . 15))
  522. (429 (posq . 15))
  523. (430 (posv . 15))
  524. (431 (position . 15))
  525. (432 (any . 15))
  526. (433 (every . 15))
  527. (434 (sublist . 15))
  528. (435 (last . 15))
  529. (436 (insert . 15))
  530. (437 (fold . 15))
  531. (438 (fold->2 . 15))
  532. (439 (fold->3 . 15))
  533. (440 (mvlet . 15))
  534. (441 (mvlet-helper . 15))
  535. (442 (copy-vars . 15))
  536. (443 (mvlet* . 15))
  537. (444 (inexact? . 15))
  538. (445 (modulo . 15))
  539. (446 (ceiling . 15))
  540. (447 (truncate . 15))
  541. (448 (round . 15))
  542. (449 (gcd . 15))
  543. (450 (euclid . 15))
  544. (451 (lcm . 15))
  545. (452 (expt . 15))
  546. (453 (raise-to-integer-power . 15))
  547. (454 (rationalize . 15))
  548. (455 (simplest-rational . 15))
  549. (456 (*record-type-uid* . 16))
  550. (457 (*record-type* . 16))
  551. (458 (make-record-type . 16))
  552. (459 (record-type? . 16))
  553. (460 (record-type-resumer . 16))
  554. (461 (set-record-type-resumer! . 16))
  555. (462 (record-type-uid . 16))
  556. (463 (record-type-name . 16))
  557. (464 (record-type-field-names . 16))
  558. (465 (record-type-number-of-fields . 16))
  559. (466 (record-type-discloser . 16))
  560. (467 (set-record-type-discloser! . 16))
  561. (468 (record-type-fields . 16))
  562. (469 (record-field-index . 16))
  563. (470 (record-constructor . 16))
  564. (471 (record-accessor . 16))
  565. (472 (record-modifier . 16))
  566. (473 (record-predicate . 16))
  567. (474 (define-record-discloser . 16))
  568. (475 (make-default-record-discloser . 16))
  569. (476 (disclose-record . 16))
  570. (477 (define-record-resumer . 16))
  571. (478 (default-record-resumer . 16))
  572. (479 (initialize-records! . 16))
  573. (480 (resume-record . 16))
  574. (481 (:record-type . 16))
  575. (482 (define-record-type . 18))
  576. (483 (define-synchronized-record-type . 18))
  577. (484 (define-constructor . 18))
  578. (485 (define-accessors . 18))
  579. (486 (define-accessor . 18))
  580. (487 (ref-proc . 18))
  581. (488 (set-proc . 18))
  582. (489 (:simple-type . 19))
  583. (490 (really-make-simple-type . 19))
  584. (491 (simple-type-id . 19))
  585. (492 (simple-type-priority . 19))
  586. (493 (simple-type-predicate . 19))
  587. (494 (simple-type-superiors . 19))
  588. (495 (simple-type? . 19))
  589. (496 (make-simple-type . 19))
  590. (497 (compute-priority . 19))
  591. (498 (*increment* . 19))
  592. (499 (%type-priority . 19))
  593. (500 (%type-predicate . 19))
  594. (501 (%same-type? . 19))
  595. (502 (define-simple-type . 19))
  596. (503 (:syntax . 19))
  597. (504 (:values . 19))
  598. (505 (value? . 19))
  599. (506 (:value . 19))
  600. (507 (:zero . 19))
  601. (508 (:number . 19))
  602. (509 (:complex . 19))
  603. (510 (:real . 19))
  604. (511 (:rational . 19))
  605. (512 (:integer . 19))
  606. (513 (:exact-integer . 19))
  607. (514 (:boolean . 19))
  608. (515 (:symbol . 19))
  609. (516 (:char . 19))
  610. (517 (:null . 19))
  611. (518 (:pair . 19))
  612. (519 (:vector . 19))
  613. (520 (:string . 19))
  614. (521 (:procedure . 19))
  615. (522 (:input-port . 19))
  616. (523 (:output-port . 19))
  617. (524 (:eof-object . 19))
  618. (525 (:record . 19))
  619. (526 (record-type-priority . 19))
  620. (527 (:method-info . 19))
  621. (528 (really-make-method-info . 19))
  622. (529 (method-info-proc . 19))
  623. (530 (method-info-n-ary? . 19))
  624. (531 (method-info-types . 19))
  625. (532 (method-info? . 19))
  626. (533 (make-method-info . 19))
  627. (534 (empty-method-list . 19))
  628. (535 (insert-method . 19))
  629. (536 (same-applicability? . 19))
  630. (537 (every2 . 19))
  631. (538 (more-specific? . 19))
  632. (539 (more-specific-type? . 19))
  633. (540 (:method-table . 19))
  634. (541 (really-make-method-table . 19))
  635. (542 (method-table-id . 19))
  636. (543 (method-table-set-perform! . 19))
  637. (544 (method-table-get-perform . 19))
  638. (545 (make-generic . 19))
  639. (546 (method-table-prototype . 19))
  640. (547 (method-table-methods . 19))
  641. (548 (set-method-table-methods! . 19))
  642. (549 (method-table? . 19))
  643. (550 (make-method-table . 19))
  644. (551 (make-cell-for-generic . 19))
  645. (552 (add-to-method-table! . 19))
  646. (553 (set-final-method! . 19))
  647. (554 (apply-generic . 19))
  648. (555 (define-generic . 19))
  649. (556 (methods->perform . 19))
  650. (557 (last-action . 19))
  651. (558 (one-action . 19))
  652. (559 (argument-sequence-predicate . 19))
  653. (560 (check-for-next . 19))
  654. (561 (check-next . 19))
  655. (562 (method-info . 19))
  656. (563 (method-internal . 19))
  657. (564 (with-next-method . 19))
  658. (565 (define-method . 19))
  659. (566 (&add-method! . 19))
  660. (567 (add-method! . 19))
  661. (568 (&type-predicate . 19))
  662. (569 (type-predicate . 19))
  663. (570 (&type-priority . 19))
  664. (571 (type-priority . 19))
  665. (572 (&type-superiors . 19))
  666. (573 (type-superiors . 19))
  667. (574 (&same-type? . 19))
  668. (575 (same-type? . 19))
  669. (576 (:singleton . 19))
  670. (577 (singleton . 19))
  671. (578 (singleton-value . 19))
  672. (579 (compare-to . 19))
  673. (580 (&disclose . 19))
  674. (581 (disclose . 19))
  675. (582 (proc->discloser . 19))
  676. (583 (&number->string . 20))
  677. (584 (real-number->string . 20))
  678. (585 (number->string . 20))
  679. (586 (integer->string . 20))
  680. (587 (string->number . 20))
  681. (588 (&really-string->number . 20))
  682. (589 (really-string->number . 20))
  683. (590 (:integer-string . 20))
  684. (591 (set-exactness . 20))
  685. (592 (string->integer . 20))
  686. (593 (:thread . 21))
  687. (594 (make-thread . 21))
  688. (595 (thread-proposal . 21))
  689. (596 (thread-dynamic-point . 21))
  690. (597 (thread-dynamic-env . 21))
  691. (598 (get-dynamic-env . 21))
  692. (599 (set-dynamic-env! . 21))
  693. (600 (get-dynamic-point . 21))
  694. (601 (set-dynamic-point! . 21))
  695. (602 (initialize-dynamic-state! . 21))
  696. (603 (with-dynamic-env . 21))
  697. (604 (empty-dynamic-env . 21))
  698. (605 (:fluid . 21))
  699. (606 (make-fluid . 21))
  700. (607 (fluid-top-level-value . 21))
  701. (608 (set-fluid-top-level-value! . 21))
  702. (609 (fluid . 21))
  703. (610 (set-fluid! . 21))
  704. (611 (let-fluid . 21))
  705. (612 (let-fluids . 21))
  706. (613 (fluid-cell-ref . 21))
  707. (614 (fluid-cell-set! . 21))
  708. (615 (define-enumeration . 35))
  709. (616 (components . 35))
  710. (617 (enum . 35))
  711. (618 (enumerand->name . 35))
  712. (619 (name->enumerand . 35))
  713. (620 (lookup-enumerand . 35))
  714. (621 (architecture-version . 36))
  715. (622 (bits-used-per-byte . 36))
  716. (623 (byte-limit . 36))
  717. (624 (two-byte-limit . 36))
  718. (625 (define-instruction-set . 36))
  719. (626 (op . 36))
  720. (627 (op-enumeration . 36))
  721. (628 (op-count . 36))
  722. (629 (opcode-arg-specs . 36))
  723. (630 (interrupt . 36))
  724. (631 (interrupt-enumeration . 36))
  725. (632 (interrupt-count . 36))
  726. (633 (exception . 36))
  727. (634 (exception-enumeration . 36))
  728. (635 (exception-count . 36))
  729. (636 (current-port-marker . 36))
  730. (637 (current-port-marker-enumeration . 36))
  731. (638 (current-port-marker-count . 36))
  732. (639 (maximum-stack-args . 36))
  733. (640 (*last-protocol* . 36))
  734. (641 (next-protocol . 36))
  735. (642 (two-byte-nargs-protocol . 36))
  736. (643 (two-byte-nargs+list-protocol . 36))
  737. (644 (ignore-values-protocol . 36))
  738. (645 (big-stack-protocol . 36))
  739. (646 (args+nargs-protocol . 36))
  740. (647 (nary-dispatch-protocol . 36))
  741. (648 (call-with-values-protocol . 36))
  742. (649 (bottom-of-stack-protocol . 36))
  743. (650 (native-protocol-mask . 36))
  744. (651 (maximum-external-call-args . 36))
  745. (652 (default-stack-space . 36))
  746. (653 (continuation-stack-size . 36))
  747. (654 (available-stack-space . 36))
  748. (655 (continuation-cells . 36))
  749. (656 (continuation-pc-index . 36))
  750. (657 (continuation-code-index . 36))
  751. (658 (continuation-cont-index . 36))
  752. (659 (exception-continuation-cells . 36))
  753. (660 (exception-cont-size-index . 36))
  754. (661 (exception-cont-pc-index . 36))
  755. (662 (exception-cont-code-index . 36))
  756. (663 (exception-cont-exception-index . 36))
  757. (664 (exception-cont-instruction-size-index . 36))
  758. (665 (time-option . 36))
  759. (666 (time-option-enumeration . 36))
  760. (667 (time-option-count . 36))
  761. (668 (memory-status-option . 36))
  762. (669 (memory-status-option-enumeration . 36))
  763. (670 (memory-status-option-count . 36))
  764. (671 (channel-status-option . 36))
  765. (672 (channel-status-option-enumeration . 36))
  766. (673 (channel-status-option-count . 36))
  767. (674 (port-status-options . 36))
  768. (675 (port-status-options-enumeration . 36))
  769. (676 (port-status-options-count . 36))
  770. (677 (stob . 36))
  771. (678 (stob-enumeration . 36))
  772. (679 (stob-count . 36))
  773. (680 (least-b-vector-type . 36))
  774. (681 (stob-data . 36))
  775. (682 (call-atomically . 42))
  776. (683 (call-atomically! . 42))
  777. (684 (call-ensuring-atomicity . 42))
  778. (685 (call-ensuring-atomicity! . 42))
  779. (686 (atomically . 42))
  780. (687 (atomically! . 42))
  781. (688 (ensure-atomicity . 42))
  782. (689 (ensure-atomicity! . 42))
  783. (690 (with-new-proposal . 42))
  784. (691 (remove-current-proposal! . 42))
  785. (692 (invalidate-current-proposal! . 42))
  786. (693 (j-random-pair . 42))
  787. (694 (*session-data-initializers* . 23))
  788. (695 (make-session-data-slot! . 23))
  789. (696 (session-data-ref . 23))
  790. (697 (session-data-set! . 23))
  791. (698 (initialize-session-data! . 23))
  792. (699 (*condition-types* . 27))
  793. (700 (condition-supertypes . 27))
  794. (701 (define-condition-type . 27))
  795. (702 (*condition-decoder-alist* . 27))
  796. (703 (decode-condition . 27))
  797. (704 (define-condition-decoder . 27))
  798. (705 (condition-type . 27))
  799. (706 (condition-stuff . 27))
  800. (707 (condition-predicate . 27))
  801. (708 (error? . 27))
  802. (709 (call-error? . 27))
  803. (710 (read-error? . 27))
  804. (711 (vm-exception? . 27))
  805. (712 (vm-exception-opcode . 27))
  806. (713 (vm-exception-reason . 27))
  807. (714 (vm-exception-arguments . 27))
  808. (715 (make-vm-exception . 27))
  809. (716 (i/o-error? . 27))
  810. (717 (i/o-error-status . 27))
  811. (718 (i/o-error-message . 27))
  812. (719 (i/o-error-operation . 27))
  813. (720 (i/o-error-arguments . 27))
  814. (721 (make-i/o-error . 27))
  815. (722 (warning? . 27))
  816. (723 (syntax-error? . 27))
  817. (724 (note? . 27))
  818. (725 (interrupt? . 27))
  819. (726 (define-vm-exception-handler . 38))
  820. (727 (signal-condition . 38))
  821. (728 (signal-vm-exception . 38))
  822. (729 (vm-exception-handlers . 38))
  823. (730 (initialize-vm-exceptions! . 38))
  824. (731 (extend-opcode! . 38))
  825. (732 (dynamic-wind . 22))
  826. (733 (call-with-current-continuation . 22))
  827. (734 (continuation->procedure . 22))
  828. (735 (:point . 22))
  829. (736 (make-point . 22))
  830. (737 (point-parent . 22))
  831. (738 (point-dynamic-env . 22))
  832. (739 (point-out . 22))
  833. (740 (point-in . 22))
  834. (741 (point-depth . 22))
  835. (742 (travel-to-point! . 22))
  836. (743 (template-overhead . 32))
  837. (744 (template-code . 32))
  838. (745 (template-byte-code . 32))
  839. (746 (template-info . 32))
  840. (747 (template-package-id . 32))
  841. (748 (set-template-code! . 32))
  842. (749 (set-template-byte-code! . 32))
  843. (750 (set-template-info! . 32))
  844. (751 (set-template-package-id! . 32))
  845. (752 (:closure . 34))
  846. (753 (:code-vector . 34))
  847. (754 (:location . 34))
  848. (755 (:cell . 34))
  849. (756 (:template . 34))
  850. (757 (:channel . 34))
  851. (758 (:port . 34))
  852. (759 (:double . 34))
  853. (760 (:weak-pointer . 34))
  854. (761 (:shared-binding . 34))
  855. (762 (make-ref . 33))
  856. (763 (continuation-cont . 33))
  857. (764 (real-continuation-code . 33))
  858. (765 (real-continuation-pc . 33))
  859. (766 (vm-exception-cont-pc . 33))
  860. (767 (vm-exception-cont-code . 33))
  861. (768 (vm-exception-continuation-exception . 33))
  862. (769 (vm-exception-continuation? . 33))
  863. (770 (call-with-values-continuation? . 33))
  864. (771 (continuation-pc . 33))
  865. (772 (continuation-code . 33))
  866. (773 (continuation-template . 33))
  867. (774 (continuation-arg . 33))
  868. (775 (continuation-arg-count . 33))
  869. (776 (:continuation . 33))
  870. (777 (continuation-preview . 33))
  871. (778 (really-signal-condition . 39))
  872. (779 (with-handler . 39))
  873. (780 ($exception-handlers . 39))
  874. (781 (initialize-exceptions! . 39))
  875. (782 (last-resort-exception-handler . 39))
  876. (783 (report-utter-lossage . 39))
  877. (784 (ignore-errors . 39))
  878. (785 (report-errors-as-warnings . 39))
  879. (786 (with-exception-handler . 39))
  880. (787 (raise . 39))
  881. (788 (guard . 39))
  882. (789 (guard-aux . 39))
  883. (790 (:port-handler . 24))
  884. (791 (make-port-handler . 24))
  885. (792 (port-handler-force . 24))
  886. (793 (port-handler-ready? . 24))
  887. (794 (port-handler-block . 24))
  888. (795 (port-handler-char . 24))
  889. (796 (port-handler-close . 24))
  890. (797 (port-handler-discloser . 24))
  891. (798 (port-handler? . 24))
  892. (799 (disclose-port . 24))
  893. (800 (initialize-i/o-handlers! . 24))
  894. (801 (one-arg-proc->handler . 24))
  895. (802 (two-arg-proc->handler . 24))
  896. (803 (real-char-ready? . 24))
  897. (804 (read-block . 24))
  898. (805 (write-block . 24))
  899. (806 (write-string . 24))
  900. (807 (output-port-ready? . 24))
  901. (808 (force-output . 24))
  902. (809 (force-output-if-open . 24))
  903. (810 (close-input-port . 24))
  904. (811 (close-output-port . 24))
  905. (812 (okay-limits? . 24))
  906. (813 (open-port? . 24))
  907. (814 (open-port-mask . 24))
  908. (815 (input-port-mask . 24))
  909. (816 (open-input-port-mask . 24))
  910. (817 (open-input-port-status . 24))
  911. (818 (open-input-port? . 24))
  912. (819 (make-input-port-closed! . 24))
  913. (820 (make-unbuffered-input-port . 24))
  914. (821 (output-port-mask . 24))
  915. (822 (open-output-port-mask . 24))
  916. (823 (open-output-port-status . 24))
  917. (824 (open-output-port? . 24))
  918. (825 (make-output-port-closed! . 24))
  919. (826 (make-unbuffered-output-port . 24))
  920. (827 (null-output-port-handler . 24))
  921. (828 (null-output-buffer . 24))
  922. (829 (make-null-output-port . 24))
  923. (830 (make-buffered-input-port . 24))
  924. (831 (make-buffered-output-port . 24))
  925. (832 (okay-buffer? . 24))
  926. (833 (make-buffered-input-port-handler . 24))
  927. (834 (note-buffer-reuse! . 24))
  928. (835 (check-buffer-timestamp! . 24))
  929. (836 (port-flushed? . 24))
  930. (837 (set-port-flushed?! . 24))
  931. (838 (make-one-char-input . 24))
  932. (839 (make-char-ready? . 24))
  933. (840 (make-read-block . 24))
  934. (841 (get-available-bytes! . 24))
  935. (842 (buffer-length . 24))
  936. (843 (make-buffered-output-port-handler . 24))
  937. (844 (make-closer . 24))
  938. (845 (make-one-char-output . 24))
  939. (846 (make-write-block . 24))
  940. (847 (copy-bytes-out! . 24))
  941. (848 (make-forcer . 24))
  942. (849 (default-buffer-size . 24))
  943. (850 (flush-these-ports . 24))
  944. (851 (periodically-force-output! . 24))
  945. (852 (output-port-forcers . 24))
  946. (853 (periodically-flushed-ports . 24))
  947. (854 (make-forcing-thunk . 24))
  948. (855 ($current-input-port . 24))
  949. (856 ($current-output-port . 24))
  950. (857 ($current-error-port . 24))
  951. (858 ($current-noise-port . 24))
  952. (859 (current-input-port . 24))
  953. (860 (current-output-port . 24))
  954. (861 (current-error-port . 24))
  955. (862 (current-noise-port . 24))
  956. (863 (initialize-i/o . 24))
  957. (864 (with-current-ports . 24))
  958. (865 (call-with-current-input-port . 24))
  959. (866 (call-with-current-output-port . 24))
  960. (867 (call-with-current-noise-port . 24))
  961. (868 (silently . 24))
  962. (869 (newline . 24))
  963. (870 (char-ready? . 24))
  964. (871 (output-port-option . 24))
  965. (872 (input-port-option . 24))
  966. (873 (write . 28))
  967. (874 (recurring-write . 28))
  968. (875 (write-boolean . 28))
  969. (876 (write-number . 28))
  970. (877 (write-char-literal . 28))
  971. (878 (character-name . 28))
  972. (879 (write-string-literal . 28))
  973. (880 (write-list . 28))
  974. (881 (quotation? . 28))
  975. (882 (write-vector . 28))
  976. (883 (write-other . 28))
  977. (884 (display-type-name . 28))
  978. (885 (display . 28))
  979. (886 (read . 29))
  980. (887 (sub-read-carefully . 29))
  981. (888 (reader-token-marker . 29))
  982. (889 (make-reader-token . 29))
  983. (890 (reader-token? . 29))
  984. (891 (close-paren . 29))
  985. (892 (dot . 29))
  986. (893 (sub-read . 29))
  987. (894 (read-dispatch-vector . 29))
  988. (895 (read-terminating?-vector . 29))
  989. (896 (set-standard-syntax! . 29))
  990. (897 (set-standard-read-macro! . 29))
  991. (898 (sub-read-list . 29))
  992. (899 (gobble-line . 29))
  993. (900 (*sharp-macros* . 29))
  994. (901 (define-sharp-macro . 29))
  995. (902 (proper-list? . 29))
  996. (903 (sub-read-token . 29))
  997. (904 (parse-token . 29))
  998. (905 (strange-symbol-names . 29))
  999. (906 (p-c-v . 29))
  1000. (907 (preferred-case . 29))
  1001. (908 (reading-error . 29))
  1002. (909 (:queue . 46))
  1003. (910 (really-make-queue . 46))
  1004. (911 (queue? . 46))
  1005. (912 (queue-tail . 46))
  1006. (913 (set-queue-tail! . 46))
  1007. (914 (real-queue-head . 46))
  1008. (915 (set-queue-head! . 46))
  1009. (916 (queue-uid . 46))
  1010. (917 (next-uid . 46))
  1011. (918 (make-queue . 46))
  1012. (919 (queue-empty? . 46))
  1013. (920 (enqueue! . 46))
  1014. (921 (queue-head . 46))
  1015. (922 (dequeue! . 46))
  1016. (923 (maybe-dequeue! . 46))
  1017. (924 (empty-queue! . 46))
  1018. (925 (on-queue? . 46))
  1019. (926 (delete-from-queue! . 46))
  1020. (927 (delete-from-queue-if! . 46))
  1021. (928 (queue->list . 46))
  1022. (929 (list->queue . 46))
  1023. (930 (queue-length . 46))
  1024. (931 (initialize-interrupts! . 40))
  1025. (932 (interrupt-handlers . 40))
  1026. (933 (set-interrupt-handler! . 40))
  1027. (934 (no-interrupts . 40))
  1028. (935 (all-interrupts . 40))
  1029. (936 (with-interrupts-inhibited . 40))
  1030. (937 (with-interrupts-allowed . 40))
  1031. (938 (disable-interrupts! . 40))
  1032. (939 (enable-interrupts! . 40))
  1033. (940 (with-interrupts . 40))
  1034. (941 (enabled-interrupts . 40))
  1035. (942 (*post-gc-procedures* . 40))
  1036. (943 (call-after-gc! . 40))
  1037. (944 (post-gc-handler . 40))
  1038. (945 (required-post-gc-space . 40))
  1039. (946 (space-shortage-handler . 40))
  1040. (947 (call-before-heap-overflow! . 40))
  1041. (948 (:thread . 41))
  1042. (949 (really-make-thread . 41))
  1043. (950 (thread-name . 41))
  1044. (951 (thread-uid . 41))
  1045. (952 (thread-cell . 41))
  1046. (953 (set-thread-cell! . 41))
  1047. (954 (thread-data . 41))
  1048. (955 (set-thread-data! . 41))
  1049. (956 (thread-events . 41))
  1050. (957 (set-thread-events! . 41))
  1051. (958 (thread-current-task . 41))
  1052. (959 (set-thread-current-task! . 41))
  1053. (960 (thread-scheduler . 41))
  1054. (961 (set-thread-scheduler! . 41))
  1055. (962 (thread-arguments . 41))
  1056. (963 (set-thread-arguments! . 41))
  1057. (964 (thread-continuation . 41))
  1058. (965 (set-thread-continuation! . 41))
  1059. (966 (thread-time . 41))
  1060. (967 (set-thread-time! . 41))
  1061. (968 (thread-proposal . 41))
  1062. (969 (thread-dynamic-point . 41))
  1063. (970 (set-thread-dynamic-point! . 41))
  1064. (971 (thread-dynamic-env . 41))
  1065. (972 (set-thread-dynamic-env! . 41))
  1066. (973 (thread? . 41))
  1067. (974 (*thread-uid* . 41))
  1068. (975 (make-thread . 41))
  1069. (976 (thread-top-level . 41))
  1070. (977 (thread-uid->thread . 41))
  1071. (978 (all-threads . 41))
  1072. (979 (add-event! . 41))
  1073. (980 (next-event! . 41))
  1074. (981 (thunk->continuation . 41))
  1075. (982 (compose-continuation . 41))
  1076. (983 (maybe-dequeue-thread! . 41))
  1077. (984 (thread-queue-empty? . 41))
  1078. (985 (event-type . 41))
  1079. (986 (event-type-enumeration . 41))
  1080. (987 (event-type-count . 41))
  1081. (988 (run . 41))
  1082. (989 (find-and-run-next-thread . 41))
  1083. (990 (debit-thread-times-and-run! . 41))
  1084. (991 (handle-timer-interrupt . 41))
  1085. (992 (run-next-thread . 41))
  1086. (993 (min . 41))
  1087. (994 (switch-to-thread . 41))
  1088. (995 (run-thread . 41))
  1089. (996 (suspend . 41))
  1090. (997 (suspend-to . 41))
  1091. (998 (debit-down! . 41))
  1092. (999 (exit . 41))
  1093. (1000 (wait . 41))
  1094. (1001 (waiting? . 41))
  1095. (1002 (relinquish-timeslice . 41))
  1096. (1003 (block . 41))
  1097. (1004 (maybe-commit-and-block . 41))
  1098. (1005 (maybe-commit-and-block-on-queue . 41))
  1099. (1006 (upcall . 41))
  1100. (1007 (propogate-upcall . 41))
  1101. (1008 (kill-thread! . 41))
  1102. (1009 (terminate-thread! . 41))
  1103. (1010 (interrupt-thread . 41))
  1104. (1011 (get-next-event! . 41))
  1105. (1012 (event-pending? . 41))
  1106. (1013 (schedule-event . 41))
  1107. (1014 (maybe-suspend . 41))
  1108. (1015 (really-schedule-event . 41))
  1109. (1016 (schedule-wakeup . 41))
  1110. (1017 (show-running . 41))
  1111. (1018 (running? . 41))
  1112. (1019 (spawn . 41))
  1113. (1020 (spawn-on-root . 41))
  1114. (1021 (spawn-on-scheduler . 41))
  1115. (1022 (make-ready . 41))
  1116. (1023 (clear-thread-cell! . 41))
  1117. (1024 (maybe-commit-and-make-ready . 41))
  1118. (1025 (maybe-commit-no-interrupts . 41))
  1119. (1026 (make-threads-ready . 41))
  1120. (1027 (schedule-interrupt! . 41))
  1121. (1028 (cancel-timer-interrupt! . 41))
  1122. (1029 (interrupt-timer-time . 41))
  1123. (1030 (real-time . 41))
  1124. (1031 (with-threads . 41))
  1125. (1032 (start-multitasking . 41))
  1126. (1033 (deadlock? . 41))
  1127. (1034 (terminate? . 41))
  1128. (1035 (terminate-current-thread . 41))
  1129. (1036 (root-scheduler-slot . 41))
  1130. (1037 (root-scheduler . 41))
  1131. (1038 (max2 . 41))
  1132. (1039 (sleep . 41))
  1133. (1040 (coerce-to-nonnegative-integer . 41))
  1134. (1041 (register-dozer-unsafe! . 41))
  1135. (1042 (register-dozer! . 41))
  1136. (1043 (dozers . 41))
  1137. (1044 (insert . 41))
  1138. (1045 (wake-some-threads . 41))
  1139. (1046 (:condvar . 47))
  1140. (1047 (really-make-condvar . 47))
  1141. (1048 (condvar? . 47))
  1142. (1049 (condvar-id . 47))
  1143. (1050 (condvar-value . 47))
  1144. (1051 (set-condvar-value! . 47))
  1145. (1052 (condvar-has-value? . 47))
  1146. (1053 (set-condvar-has-value?! . 47))
  1147. (1054 (condvar-queue . 47))
  1148. (1055 (make-condvar . 47))
  1149. (1056 (maybe-commit-and-wait-for-condvar . 47))
  1150. (1057 (maybe-commit-and-set-condvar! . 47))
  1151. (1058 (condvar-has-waiters? . 47))
  1152. (1059 (channel-maybe-commit-and-read . 25))
  1153. (1060 (channel-maybe-commit-and-write . 25))
  1154. (1061 (note-channel-result! . 25))
  1155. (1062 (channel-write . 25))
  1156. (1063 (channel-maybe-commit-and-close . 25))
  1157. (1064 (input-channel? . 25))
  1158. (1065 (initialize-channel-i/o! . 25))
  1159. (1066 (i/o-completion-handler . 25))
  1160. (1067 (waiting-for-i/o? . 25))
  1161. (1068 (channel-wait-condvars-slot . 25))
  1162. (1069 (channel-condvars . 25))
  1163. (1070 (set-channel-condvars! . 25))
  1164. (1071 (add-channel-condvar! . 25))
  1165. (1072 (wait-for-channel . 25))
  1166. (1073 (fetch-channel-condvar! . 25))
  1167. (1074 (abort-unwanted-reads! . 25))
  1168. (1075 (:channel-cell . 26))
  1169. (1076 (really-make-channel-cell . 26))
  1170. (1077 (channel-cell? . 26))
  1171. (1078 (channel-cell-sent . 26))
  1172. (1079 (set-channel-cell-sent! . 26))
  1173. (1080 (channel-cell-in-use? . 26))
  1174. (1081 (set-channel-cell-in-use?! . 26))
  1175. (1082 (channel-cell-condvar . 26))
  1176. (1083 (channel-cell-closer . 26))
  1177. (1084 (channel-cell-ref . 26))
  1178. (1085 (make-channel-cell . 26))
  1179. (1086 (port->channel . 26))
  1180. (1087 (port-channel-closer . 26))
  1181. (1088 (fill-buffer! . 26))
  1182. (1089 (channel-port-ready? . 26))
  1183. (1090 (input-channel-handler . 26))
  1184. (1091 (input-channel->port . 26))
  1185. (1092 (input-channel+closer->port . 26))
  1186. (1093 (real-input-channel->port . 26))
  1187. (1094 (empty-buffer! . 26))
  1188. (1095 (send-some . 26))
  1189. (1096 (output-channel-handler . 26))
  1190. (1097 (output-channel->port . 26))
  1191. (1098 (output-channel+closer->port . 26))
  1192. (1099 (real-output-channel->port . 26))
  1193. (1100 (maybe-open-file . 26))
  1194. (1101 (really-open-input-file . 26))
  1195. (1102 (open-input-file . 26))
  1196. (1103 (really-open-output-file . 26))
  1197. (1104 (open-output-file . 26))
  1198. (1105 (call-with-input-file . 26))
  1199. (1106 (call-with-output-file . 26))
  1200. (1107 (with-input-from-file . 26))
  1201. (1108 (with-output-to-file . 26))
  1202. (1109 (force-channel-output-ports! . 26))
  1203. (1110 (one-char-handler . 26))
  1204. (1111 (write-block-handler . 26))
  1205. (1112 (unbuffered-output-handler . 26))
  1206. (1113 (:table . 80))
  1207. (1114 (really-make-table . 80))
  1208. (1115 (table-set!-procedure . 80))
  1209. (1116 (set-table-set!-procedure! . 80))
  1210. (1117 (table-ref-procedure . 80))
  1211. (1118 (set-table-ref-procedure! . 80))
  1212. (1119 (table-data . 80))
  1213. (1120 (set-table-data! . 80))
  1214. (1121 (table-size . 80))
  1215. (1122 (set-table-size! . 80))
  1216. (1123 (table? . 80))
  1217. (1124 (table-ref . 80))
  1218. (1125 (table-set! . 80))
  1219. (1126 (linear-table-size-limit . 80))
  1220. (1127 (next-table-size . 80))
  1221. (1128 (make-table-maker . 80))
  1222. (1129 (assoc->table-maker . 80))
  1223. (1130 (null-entry . 80))
  1224. (1131 (new-entry . 80))
  1225. (1132 (entry-value . 80))
  1226. (1133 (entry-key . 80))
  1227. (1134 (set-entry-value! . 80))
  1228. (1135 (delete-entry! . 80))
  1229. (1136 (make-assoc . 80))
  1230. (1137 (make-linear-table-ref . 80))
  1231. (1138 (make-linear-table-set! . 80))
  1232. (1139 (make->hash-table . 80))
  1233. (1140 (make-hash-table-ref . 80))
  1234. (1141 (make-hash-table-set! . 80))
  1235. (1142 (expand-hash-table! . 80))
  1236. (1143 (table-enter-alist! . 80))
  1237. (1144 (table-expand-table! . 80))
  1238. (1145 (table-walk . 80))
  1239. (1146 (really-table-walk . 80))
  1240. (1147 (alist-walk . 80))
  1241. (1148 (make-table-immutable! . 80))
  1242. (1149 (table->entry-list . 80))
  1243. (1150 (default-hash-function . 80))
  1244. (1151 (eqv?-assoc . 80))
  1245. (1152 (default-table-assoc . 80))
  1246. (1153 (symbol-hash . 80))
  1247. (1154 (make-table . 80))
  1248. (1155 (make-string-table . 80))
  1249. (1156 (make-symbol-table . 80))
  1250. (1157 (make-integer-table . 80))
  1251. (1158 (make-population . 49))
  1252. (1159 (add-to-population! . 49))
  1253. (1160 (weak-memq . 49))
  1254. (1161 (population-reduce . 49))
  1255. (1162 (population->list . 49))
  1256. (1163 (walk-population . 49))
  1257. (1164 (:meta-type . 51))
  1258. (1165 (really-make-type . 51))
  1259. (1166 (type-info . 51))
  1260. (1167 (type-more . 51))
  1261. (1168 (type-mask . 51))
  1262. (1169 (meta-type? . 51))
  1263. (1170 (make-type . 51))
  1264. (1171 (name->type-table . 51))
  1265. (1172 (mask->name-table . 51))
  1266. (1173 (name->type . 51))
  1267. (1174 (set-type-name! . 51))
  1268. (1175 (*mask* . 51))
  1269. (1176 (new-type-bit . 51))
  1270. (1177 (mask->type . 51))
  1271. (1178 (bottom-type . 51))
  1272. (1179 (error-type . 51))
  1273. (1180 (bottom-type? . 51))
  1274. (1181 (new-atomic-type . 51))
  1275. (1182 (named-atomic-type . 51))
  1276. (1183 (syntax-type . 51))
  1277. (1184 (other-static-type . 51))
  1278. (1185 (empty-rail-type . 51))
  1279. (1186 (rail-type . 51))
  1280. (1187 (make-optional-type . 51))
  1281. (1188 (make-rest-type . 51))
  1282. (1189 (head-type . 51))
  1283. (1190 (head-type-really . 51))
  1284. (1191 (tail-type . 51))
  1285. (1192 (empty-rail-type? . 51))
  1286. (1193 (rest-type? . 51))
  1287. (1194 (optional-type? . 51))
  1288. (1195 (mask/no-values . 51))
  1289. (1196 (mask/two-or-more . 51))
  1290. (1197 (mask/&rest . 51))
  1291. (1198 (value-type . 51))
  1292. (1199 (mask/value . 51))
  1293. (1200 (value-type? . 51))
  1294. (1201 (any-values-type . 51))
  1295. (1202 (any-arguments-type . 51))
  1296. (1203 (mask/one-or-more . 51))
  1297. (1204 (same-type? . 51))
  1298. (1205 (subtype? . 51))
  1299. (1206 (meet-type . 51))
  1300. (1207 (other-type-info . 51))
  1301. (1208 (meet-rail . 51))
  1302. (1209 (meet-procedure . 51))
  1303. (1210 (meet? . 51))
  1304. (1211 (meet-procedure? . 51))
  1305. (1212 (join-type . 51))
  1306. (1213 (join-rail . 51))
  1307. (1214 (join-procedure . 51))
  1308. (1215 (number-hierarchy . 51))
  1309. (1216 (integer-type . 51))
  1310. (1217 (rational-type . 51))
  1311. (1218 (real-type . 51))
  1312. (1219 (complex-type . 51))
  1313. (1220 (number-type . 51))
  1314. (1221 (exact-type . 51))
  1315. (1222 (inexact-type . 51))
  1316. (1223 (exact-integer-type . 51))
  1317. (1224 (inexact-real-type . 51))
  1318. (1225 (boolean-type . 51))
  1319. (1226 (pair-type . 51))
  1320. (1227 (null-type . 51))
  1321. (1228 (record-type . 51))
  1322. (1229 (any-procedure-type . 51))
  1323. (1230 (other-value-type . 51))
  1324. (1231 (mask/other . 51))
  1325. (1232 (make-other-type . 51))
  1326. (1233 (char-type . 51))
  1327. (1234 (unspecific-type . 51))
  1328. (1235 (string-type . 51))
  1329. (1236 (symbol-type . 51))
  1330. (1237 (vector-type . 51))
  1331. (1238 (escape-type . 51))
  1332. (1239 (structure-type . 51))
  1333. (1240 (mask/procedure . 51))
  1334. (1241 (procedure-type . 51))
  1335. (1242 (make-procedure-type . 51))
  1336. (1243 (procedure-type-domain . 51))
  1337. (1244 (procedure-type-codomain . 51))
  1338. (1245 (restrictive? . 51))
  1339. (1246 (sexp->type . 51))
  1340. (1247 (sexp->values-type . 51))
  1341. (1248 (type->sexp . 51))
  1342. (1249 (atomic-type->sexp . 51))
  1343. (1250 (rail-type->sexp . 51))
  1344. (1251 (disjoin-type . 51))
  1345. (1252 (disjoin-rest . 51))
  1346. (1253 (mask/number . 51))
  1347. (1254 (make-some-values-type . 51))
  1348. (1255 (proc . 51))
  1349. (1256 (some-values . 51))
  1350. (1257 (procedure-type? . 51))
  1351. (1258 (fixed-arity-procedure-type? . 51))
  1352. (1259 (procedure-type-arity . 51))
  1353. (1260 (procedure-type-argument-types . 51))
  1354. (1261 (variable-type . 51))
  1355. (1262 (variable-type? . 51))
  1356. (1263 (variable-value-type . 51))
  1357. (1264 (usual-variable-type . 51))
  1358. (1265 (undeclared-type . 51))
  1359. (1266 (compatible-types? . 51))
  1360. (1267 (:interface . 68))
  1361. (1268 (really-make-interface . 68))
  1362. (1269 (interface-name . 68))
  1363. (1270 (set-interface-name! . 68))
  1364. (1271 (interface-clients . 68))
  1365. (1272 (walk-method . 68))
  1366. (1273 (ref-method . 68))
  1367. (1274 (interface? . 68))
  1368. (1275 (make-interface . 68))
  1369. (1276 (interface-ref . 68))
  1370. (1277 (interface-member? . 68))
  1371. (1278 (for-each-declaration . 68))
  1372. (1279 (note-reference-to-interface! . 68))
  1373. (1280 (note-interface-name! . 68))
  1374. (1281 (make-simple-interface . 68))
  1375. (1282 (make-simple-interface-table . 68))
  1376. (1283 (make-compound-interface . 68))
  1377. (1284 (make-modified-interface-maker . 68))
  1378. (1285 (process-commands . 68))
  1379. (1286 (okay-command? . 68))
  1380. (1287 (proper-list? . 68))
  1381. (1288 (process-prefix . 68))
  1382. (1289 (process-expose . 68))
  1383. (1290 (process-hide . 68))
  1384. (1291 (process-alias . 68))
  1385. (1292 (process-rename . 68))
  1386. (1293 (interface-lookup . 68))
  1387. (1294 (make-lookup . 68))
  1388. (1295 (prefix-match? . 68))
  1389. (1296 (remove-prefix . 68))
  1390. (1297 (make-default-walker . 68))
  1391. (1298 (cdr-assq . 68))
  1392. (1299 (make-alist-walker . 68))
  1393. (1300 (symbol-append . 68))
  1394. (1301 (binding? . 52))
  1395. (1302 (binding-type . 52))
  1396. (1303 (binding-place . 52))
  1397. (1304 (binding-static . 52))
  1398. (1305 (binding-path . 52))
  1399. (1306 (set-binding-place! . 52))
  1400. (1307 (make-binding . 52))
  1401. (1308 (add-path . 52))
  1402. (1309 (clobber-binding! . 52))
  1403. (1310 (impose-type . 52))
  1404. (1311 (forget-integration . 52))
  1405. (1312 (same-denotation? . 52))
  1406. (1313 (maybe-fix-place! . 52))
  1407. (1314 (follow-forwarding-pointers . 52))
  1408. (1315 (name? . 53))
  1409. (1316 (:generated . 53))
  1410. (1317 (make-generated . 53))
  1411. (1318 (generated-parent-name . 53))
  1412. (1319 (generated-env . 53))
  1413. (1320 (generated-token . 53))
  1414. (1321 (generated-name . 53))
  1415. (1322 (generated? . 53))
  1416. (1323 (generate-name . 53))
  1417. (1324 (generated-uid . 53))
  1418. (1325 (*generated-uid* . 53))
  1419. (1326 (name->symbol . 53))
  1420. (1327 (name-hash . 53))
  1421. (1328 (make-name-table . 53))
  1422. (1329 (desyntaxify . 53))
  1423. (1330 (make-qualified . 53))
  1424. (1331 (qualified? . 53))
  1425. (1332 (qualified-parent-name . 53))
  1426. (1333 (qualified-symbol . 53))
  1427. (1334 (qualified-uid . 53))
  1428. (1335 (name->qualified . 53))
  1429. (1336 (qualify-parent . 53))
  1430. (1337 (:transform . 53))
  1431. (1338 (really-make-transform . 53))
  1432. (1339 (transform-id . 53))
  1433. (1340 (transform-source . 53))
  1434. (1341 (transform-aux-names . 53))
  1435. (1342 (transform-type . 53))
  1436. (1343 (transform-env . 53))
  1437. (1344 (transform-procedure . 53))
  1438. (1345 (transform? . 53))
  1439. (1346 (make-transform . 53))
  1440. (1347 (maybe-apply-macro-transform . 53))
  1441. (1348 (apply-inline-transform . 53))
  1442. (1349 (make-keyword-comparator . 53))
  1443. (1350 (name->source-name . 53))
  1444. (1351 (bind-aliases . 53))
  1445. (1352 (make-name-generator . 53))
  1446. (1353 (lookup . 53))
  1447. (1354 (lookup . 56))
  1448. (1355 (bind1 . 56))
  1449. (1356 (bind . 56))
  1450. (1357 (bindrec . 56))
  1451. (1358 (make-compiler-env . 56))
  1452. (1359 (funny-name/macro-eval . 56))
  1453. (1360 (environment-macro-eval . 56))
  1454. (1361 (funny-name/define! . 56))
  1455. (1362 (environment-define! . 56))
  1456. (1363 (funny-name/package . 56))
  1457. (1364 (extract-package-from-environment . 56))
  1458. (1365 (funny-name/source-file-name . 56))
  1459. (1366 (bind-source-file-name . 56))
  1460. (1367 (source-file-name . 56))
  1461. (1368 (:thingie . 54))
  1462. (1369 (make-thingie . 54))
  1463. (1370 (thingie-want-type . 54))
  1464. (1371 (thingie-name . 54))
  1465. (1372 (thingie-binding . 54))
  1466. (1373 (thingie? . 54))
  1467. (1374 (:structure . 69))
  1468. (1375 (really-make-structure . 69))
  1469. (1376 (structure-name . 69))
  1470. (1377 (set-structure-name! . 69))
  1471. (1378 (structure-clients . 69))
  1472. (1379 (structure-package . 69))
  1473. (1380 (structure-interface-really . 69))
  1474. (1381 (set-structure-interface! . 69))
  1475. (1382 (structure-interface-thunk . 69))
  1476. (1383 (structure? . 69))
  1477. (1384 (structure-interface . 69))
  1478. (1385 (initialize-structure! . 69))
  1479. (1386 (make-structure . 69))
  1480. (1387 (make-modified-structure . 69))
  1481. (1388 (note-structure-name! . 69))
  1482. (1389 (structure-unstable? . 69))
  1483. (1390 (for-each-export . 69))
  1484. (1391 (:package . 69))
  1485. (1392 (really-make-package . 69))
  1486. (1393 (package-cached . 69))
  1487. (1394 (package-clients . 69))
  1488. (1395 (package-real-undefined-but-assigneds . 69))
  1489. (1396 (set-package-undefined-but-assigneds! . 69))
  1490. (1397 (package-real-undefineds . 69))
  1491. (1398 (set-package-undefineds! . 69))
  1492. (1399 (package-accesses-thunk . 69))
  1493. (1400 (package-opens-thunk . 69))
  1494. (1401 (set-package-opens-thunk! . 69))
  1495. (1402 (package->environment . 69))
  1496. (1403 (set-package->environment! . 69))
  1497. (1404 (package-loaded? . 69))
  1498. (1405 (set-package-loaded?! . 69))
  1499. (1406 (package-clauses . 69))
  1500. (1407 (package-file-name . 69))
  1501. (1408 (package-get-location . 69))
  1502. (1409 (set-package-get-location! . 69))
  1503. (1410 (package-integrate? . 69))
  1504. (1411 (set-package-integrate?! . 69))
  1505. (1412 (package-unstable? . 69))
  1506. (1413 (package-definitions . 69))
  1507. (1414 (package-opens-really . 69))
  1508. (1415 (set-package-opens! . 69))
  1509. (1416 (package-uid . 69))
  1510. (1417 (package? . 69))
  1511. (1418 (make-package . 69))
  1512. (1419 (really-package->environment . 69))
  1513. (1420 (lazy-table-accessor . 69))
  1514. (1421 (package-undefineds . 69))
  1515. (1422 (package-undefined-but-assigneds . 69))
  1516. (1423 (new-package-uid . 69))
  1517. (1424 (*package-uid* . 69))
  1518. (1425 (package-name-table . 69))
  1519. (1426 (package-name . 69))
  1520. (1427 (note-package-name! . 69))
  1521. (1428 (package-opens . 69))
  1522. (1429 (initialize-package-if-necessary! . 69))
  1523. (1430 (package-accesses . 69))
  1524. (1431 (make-simple-package . 69))
  1525. (1432 (package-definition . 69))
  1526. (1433 (package-define! . 69))
  1527. (1434 (package-add-static! . 69))
  1528. (1435 (package-refine-type! . 69))
  1529. (1436 (package-lookup . 69))
  1530. (1437 (really-package-lookup . 69))
  1531. (1438 (search-opens . 69))
  1532. (1439 (structure-lookup . 69))
  1533. (1440 (real-structure-lookup . 69))
  1534. (1441 (generic-lookup . 69))
  1535. (1442 (initialize-package! . 69))
  1536. (1443 (for-each-definition . 69))
  1537. (1444 (get-new-location . 69))
  1538. (1445 (make-new-location . 69))
  1539. (1446 ($get-location . 69))
  1540. (1447 (*location-uid* . 69))
  1541. (1448 (location-info-table . 69))
  1542. (1449 (flush-location-names . 69))
  1543. (1450 (link! . 69))
  1544. (1451 (really-link! . 69))
  1545. (1452 (get-location . 69))
  1546. (1453 (location-on-demand . 69))
  1547. (1454 (get-undefined . 69))
  1548. (1455 (location-for-assignment . 69))
  1549. (1456 (package-note-caching! . 69))
  1550. (1457 (note-caching! . 69))
  1551. (1458 (get-location-for-unassignable . 69))
  1552. (1459 (get-location-for-undefined . 69))
  1553. (1460 ($note-undefined . 69))
  1554. (1461 (cenv->package . 69))
  1555. (1462 (location-for-reference . 69))
  1556. (1463 (noting-undefined-variables . 69))
  1557. (1464 (print-undefined-names . 69))
  1558. (1465 (environment-ref . 82))
  1559. (1466 (environment-set! . 82))
  1560. (1467 (environment-define! . 82))
  1561. (1468 (*structure-ref . 82))
  1562. (1469 (carefully . 82))
  1563. (1470 ($interaction-environment . 82))
  1564. (1471 (interaction-environment . 82))
  1565. (1472 (set-interaction-environment! . 82))
  1566. (1473 (with-interaction-environment . 82))
  1567. (1474 (scheme-report-environment . 82))
  1568. (1475 (*scheme-report-environment* . 82))
  1569. (1476 (*null-environment* . 82))
  1570. (1477 (*scheme-report-number* . 82))
  1571. (1478 (set-scheme-report-environment! . 82))
  1572. (1479 (null-environment . 82))
  1573. (1480 (make-reflective-tower . 82))
  1574. (1481 (set-reflective-tower-maker! . 82))
  1575. (1482 (namestring . 81))
  1576. (1483 (directory-component-separator . 81))
  1577. (1484 (type-component-separator . 81))
  1578. (1485 (namestring-component . 81))
  1579. (1486 (file-name-preferred-case . 81))
  1580. (1487 (*scheme-file-type* . 81))
  1581. (1488 (*load-file-type* . 81))
  1582. (1489 (file-name-directory . 81))
  1583. (1490 (file-name-nondirectory . 81))
  1584. (1491 (file-nondirectory-position . 81))
  1585. (1492 (string-posq . 81))
  1586. (1493 (*translations* . 81))
  1587. (1494 (translations . 81))
  1588. (1495 (set-translation! . 81))
  1589. (1496 (translate . 81))
  1590. (1497 ($note-file-package . 66))
  1591. (1498 (read-forms . 66))
  1592. (1499 (really-read-forms . 66))
  1593. (1500 (skip-line . 66))
  1594. (1501 (:operator . 55))
  1595. (1502 (make-operator . 55))
  1596. (1503 (operator-name . 55))
  1597. (1504 (operator-uid . 55))
  1598. (1505 (operator-nargs . 55))
  1599. (1506 (operator-type . 55))
  1600. (1507 (set-operator-type! . 55))
  1601. (1508 (operator? . 55))
  1602. (1509 (usual-operator-type . 55))
  1603. (1510 (get-operator . 55))
  1604. (1511 (*operator-uid* . 55))
  1605. (1512 (operators-table . 55))
  1606. (1513 (number-of-operators . 55))
  1607. (1514 (the-operators . 55))
  1608. (1515 (make-operator-table . 55))
  1609. (1516 (operator-table-ref . 55))
  1610. (1517 (operator-lookup . 55))
  1611. (1518 (operator-define! . 55))
  1612. (1519 (:node . 55))
  1613. (1520 (really-make-node . 55))
  1614. (1521 (node-plist . 55))
  1615. (1522 (set-node-plist! . 55))
  1616. (1523 (node-form . 55))
  1617. (1524 (node-operator-id . 55))
  1618. (1525 (node? . 55))
  1619. (1526 (make-node . 55))
  1620. (1527 (node-ref . 55))
  1621. (1528 (node-set! . 55))
  1622. (1529 (node-operator . 55))
  1623. (1530 (node-predicate . 55))
  1624. (1531 (make-similar-node . 55))
  1625. (1532 (force-node . 55))
  1626. (1533 (schemify . 55))
  1627. (1534 (schemifiers . 55))
  1628. (1535 (schemify-node . 55))
  1629. (1536 (schemify-nodes . 55))
  1630. (1537 (define-schemifier . 55))
  1631. (1538 (schemify-lambda . 55))
  1632. (1539 (schemify-formals . 55))
  1633. (1540 (schemify-letrec . 55))
  1634. (1541 (schemify-sexp . 55))
  1635. (1542 (number-of-required-args . 59))
  1636. (1543 (n-ary? . 59))
  1637. (1544 (normalize-formals . 59))
  1638. (1545 (scan-forms . 57))
  1639. (1546 (expand-scanned-form . 57))
  1640. (1547 (scan-define . 57))
  1641. (1548 (expand-define . 57))
  1642. (1549 (scan-define-syntax . 57))
  1643. (1550 (expand-form . 57))
  1644. (1551 (expand-head . 57))
  1645. (1552 (destructure-define . 57))
  1646. (1553 (make-operator-predicate . 57))
  1647. (1554 (define? . 57))
  1648. (1555 (begin? . 57))
  1649. (1556 (define-syntax? . 57))
  1650. (1557 (static-value . 57))
  1651. (1558 (expand-body . 57))
  1652. (1559 (scan-body-forms . 57))
  1653. (1560 (body-lossage . 57))
  1654. (1561 (expand . 57))
  1655. (1562 (expand-list . 57))
  1656. (1563 (expand-literal . 57))
  1657. (1564 (expand-call . 57))
  1658. (1565 (expand-name . 57))
  1659. (1566 (expand-macro-application . 57))
  1660. (1567 (expand-operator-form . 57))
  1661. (1568 (expanders . 57))
  1662. (1569 (define-expander . 57))
  1663. (1570 (unspecific-node . 57))
  1664. (1571 (expand-structure-ref . 57))
  1665. (1572 (expand-lambda . 57))
  1666. (1573 (bind-names . 57))
  1667. (1574 (names? . 57))
  1668. (1575 (expand-letrec . 57))
  1669. (1576 (process-syntax . 57))
  1670. (1577 (this-long? . 57))
  1671. (1578 (at-least-this-long? . 57))
  1672. (1579 (specs? . 57))
  1673. (1580 (literal? . 57))
  1674. (1581 (syntax? . 57))
  1675. (1582 (begin-node? . 57))
  1676. (1583 (call-node? . 57))
  1677. (1584 (name-node? . 57))
  1678. (1585 (operator/literal . 57))
  1679. (1586 (operator/quote . 57))
  1680. (1587 (operator/call . 57))
  1681. (1588 (operator/name . 57))
  1682. (1589 (operator/unspecific . 57))
  1683. (1590 (operator/unassigned . 57))
  1684. (1591 (operator/lambda . 57))
  1685. (1592 (operator/begin . 57))
  1686. (1593 (operator/letrec . 57))
  1687. (1594 (operator/define . 57))
  1688. (1595 (operator/define-syntax . 57))
  1689. (1596 (operator/primitive-procedure . 57))
  1690. (1597 (operator/structure-ref . 57))
  1691. (1598 (:primop . 62))
  1692. (1599 (make-primop . 62))
  1693. (1600 (primop-compilator . 62))
  1694. (1601 (primop-closed . 62))
  1695. (1602 (primop-type . 62))
  1696. (1603 (primop-name . 62))
  1697. (1604 (primop? . 62))
  1698. (1605 (primop-table . 62))
  1699. (1606 (walk-primops . 62))
  1700. (1607 (define-compiler-primitive . 62))
  1701. (1608 (get-primop . 62))
  1702. (1609 (arithmetic-shift-right . 37))
  1703. (1610 (shift-left . 37))
  1704. (1611 (adjoin-bits . 37))
  1705. (1612 (low-bits . 37))
  1706. (1613 (high-bits . 37))
  1707. (1614 (unsigned-high-bits . 37))
  1708. (1615 (assert . 37))
  1709. (1616 (useful-bits-per-word . 37))
  1710. (1617 (bits-per-byte . 37))
  1711. (1618 (bytes-per-cell . 37))
  1712. (1619 (bits-per-cell . 37))
  1713. (1620 (bytes->cells . 37))
  1714. (1621 (cells->bytes . 37))
  1715. (1622 (unused-field-width . 37))
  1716. (1623 (addressing-units-per-cell . 37))
  1717. (1624 (cells->a-units . 37))
  1718. (1625 (a-units->cells . 37))
  1719. (1626 (bytes->a-units . 37))
  1720. (1627 (tag-field-width . 37))
  1721. (1628 (data-field-width . 37))
  1722. (1629 (make-descriptor . 37))
  1723. (1630 (descriptor-tag . 37))
  1724. (1631 (descriptor-data . 37))
  1725. (1632 (unsigned-descriptor-data . 37))
  1726. (1633 (set-descriptor-tag . 37))
  1727. (1634 (vm-eq? . 37))
  1728. (1635 (tag . 37))
  1729. (1636 (tag-enumeration . 37))
  1730. (1637 (tag-count . 37))
  1731. (1638 (fixnum? . 37))
  1732. (1639 (immediate? . 37))
  1733. (1640 (header? . 37))
  1734. (1641 (stob? . 37))
  1735. (1642 (bits-per-fixnum . 37))
  1736. (1643 (least-fixnum-value . 37))
  1737. (1644 (greatest-fixnum-value . 37))
  1738. (1645 (too-big-for-fixnum? . 37))
  1739. (1646 (too-small-for-fixnum? . 37))
  1740. (1647 (enter-fixnum . 37))
  1741. (1648 (extract-fixnum . 37))
  1742. (1649 (descriptor->fixnum . 37))
  1743. (1650 (fixnum->stob . 37))
  1744. (1651 (fixnum= . 37))
  1745. (1652 (fixnum< . 37))
  1746. (1653 (fixnum> . 37))
  1747. (1654 (fixnum<= . 37))
  1748. (1655 (fixnum>= . 37))
  1749. (1656 (fixnum-bitwise-not . 37))
  1750. (1657 (fixnum-bitwise-and . 37))
  1751. (1658 (fixnum-bitwise-ior . 37))
  1752. (1659 (fixnum-bitwise-xor . 37))
  1753. (1660 (immediate-type-field-width . 37))
  1754. (1661 (make-immediate . 37))
  1755. (1662 (immediate-type . 37))
  1756. (1663 (immediate-info . 37))
  1757. (1664 (tag&immediate-type . 37))
  1758. (1665 (make-tag&immediate-type . 37))
  1759. (1666 (imm . 37))
  1760. (1667 (imm-enumeration . 37))
  1761. (1668 (imm-count . 37))
  1762. (1669 (immediate-predicate . 37))
  1763. (1670 (vm-char? . 37))
  1764. (1671 (undefined? . 37))
  1765. (1672 (true . 37))
  1766. (1673 (false . 37))
  1767. (1674 (eof-object . 37))
  1768. (1675 (null . 37))
  1769. (1676 (unspecific-value . 37))
  1770. (1677 (quiescent . 37))
  1771. (1678 (unbound-marker . 37))
  1772. (1679 (unassigned-marker . 37))
  1773. (1680 (unreleased-value . 37))
  1774. (1681 (false? . 37))
  1775. (1682 (enter-boolean . 37))
  1776. (1683 (extract-boolean . 37))
  1777. (1684 (vm-boolean? . 37))
  1778. (1685 (enter-char . 37))
  1779. (1686 (extract-char . 37))
  1780. (1687 (vm-char=? . 37))
  1781. (1688 (vm-char<? . 37))
  1782. (1689 (header-type-field-width . 37))
  1783. (1690 (header-size-field-width . 37))
  1784. (1691 (max-stob-contents-size-in-cells . 37))
  1785. (1692 (make-header . 37))
  1786. (1693 (header-immutable-bit-mask . 37))
  1787. (1694 (make-header-immutable . 37))
  1788. (1695 (header-type . 37))
  1789. (1696 (immutable-header? . 37))
  1790. (1697 (header-length-in-bytes . 37))
  1791. (1698 (header-length-in-cells . 37))
  1792. (1699 (header-length-in-a-units . 37))
  1793. (1700 (d-vector-header? . 37))
  1794. (1701 (b-vector-header? . 37))
  1795. (1702 (add-stob-tag . 37))
  1796. (1703 (remove-stob-tag . 37))
  1797. (1704 (:debug-data . 60))
  1798. (1705 (make-debug-data . 60))
  1799. (1706 (debug-data-source . 60))
  1800. (1707 (set-debug-data-source! . 60))
  1801. (1708 (debug-data-env-maps . 60))
  1802. (1709 (set-debug-data-env-maps! . 60))
  1803. (1710 (debug-data-parent . 60))
  1804. (1711 (debug-data-name . 60))
  1805. (1712 (debug-data-uid . 60))
  1806. (1713 (debug-data? . 60))
  1807. (1714 (debug-data-env-shape . 60))
  1808. (1715 (new-template-uid . 60))
  1809. (1716 (*template-uid* . 60))
  1810. (1717 (template-uid . 60))
  1811. (1718 (set-template-uid! . 60))
  1812. (1719 (debug-flag-names . 60))
  1813. (1720 (type/debug-flags . 60))
  1814. (1721 (make-debug-flags . 60))
  1815. (1722 ($debug-flags . 60))
  1816. (1723 (debug-flag-accessor . 60))
  1817. (1724 (debug-flag-modifier . 60))
  1818. (1725 (keep-source-code? . 60))
  1819. (1726 (keep-environment-maps? . 60))
  1820. (1727 (keep-procedure-names? . 60))
  1821. (1728 (keep-file-names? . 60))
  1822. (1729 (tabulate-debug-data? . 60))
  1823. (1730 (debug-data-table . 60))
  1824. (1731 (with-fresh-compiler-state . 60))
  1825. (1732 (saving-and-restoring . 60))
  1826. (1733 (debug-data->info . 60))
  1827. (1734 (get-debug-data . 60))
  1828. (1735 (note-debug-data! . 60))
  1829. (1736 (new-debug-data . 60))
  1830. (1737 (:frame . 65))
  1831. (1738 (really-make-frame . 65))
  1832. (1739 (frame-debug-data . 65))
  1833. (1740 (frame-count . 65))
  1834. (1741 (set-frame-count! . 65))
  1835. (1742 (frame-literals . 65))
  1836. (1743 (set-frame-literals! . 65))
  1837. (1744 (frame-size . 65))
  1838. (1745 (set-frame-size! . 65))
  1839. (1746 (frame-template-index . 65))
  1840. (1747 (frame-env-index . 65))
  1841. (1748 (frame? . 65))
  1842. (1749 (make-frame . 65))
  1843. (1750 (adjust-procedure-name . 65))
  1844. (1751 (index->offset . 65))
  1845. (1752 (template-offset . 65))
  1846. (1753 (environment-offset . 65))
  1847. (1754 (depth-check! . 65))
  1848. (1755 (binding->index . 65))
  1849. (1756 (literal->index . 65))
  1850. (1757 (literal-position . 65))
  1851. (1758 (position . 65))
  1852. (1759 (make-segment . 61))
  1853. (1760 (segment-size . 61))
  1854. (1761 (segment-emitter . 61))
  1855. (1762 (segment->cv . 61))
  1856. (1763 (segment->template . 61))
  1857. (1764 (segment-data->template . 61))
  1858. (1765 ($package-key . 61))
  1859. (1766 (with-package-key . 61))
  1860. (1767 (check-stack-use . 61))
  1861. (1768 (add-big-stack-protocol! . 61))
  1862. (1769 (:assembly-state . 61))
  1863. (1770 (make-assembly-state . 61))
  1864. (1771 (astate-env-maps . 61))
  1865. (1772 (set-astate-env-maps! . 61))
  1866. (1773 (astate-pc . 61))
  1867. (1774 (set-astate-pc! . 61))
  1868. (1775 (astate-code-vector . 61))
  1869. (1776 (make-astate . 61))
  1870. (1777 (emit-byte! . 61))
  1871. (1778 (emit-segment! . 61))
  1872. (1779 (empty-segment . 61))
  1873. (1780 (instruction . 61))
  1874. (1781 (sequentially . 61))
  1875. (1782 (sequentially-2 . 61))
  1876. (1783 (continuation-data . 61))
  1877. (1784 (live-mask . 61))
  1878. (1785 (bits->bytes . 61))
  1879. (1786 (make-push-byte . 61))
  1880. (1787 (lambda-protocol . 61))
  1881. (1788 (nary-lambda-protocol . 61))
  1882. (1789 (nary-primitive-protocol . 61))
  1883. (1790 (dispatch-protocol-size . 61))
  1884. (1791 (make-dispatch-protocol . 61))
  1885. (1792 (continuation-protocol . 61))
  1886. (1793 (cwv-continuation-protocol . 61))
  1887. (1794 (make-label . 61))
  1888. (1795 (label-reference . 61))
  1889. (1796 (jump-instruction . 61))
  1890. (1797 (instruction-using-label . 61))
  1891. (1798 (optional-label-reference . 61))
  1892. (1799 (using-optional-label . 61))
  1893. (1800 (bytes->segment . 61))
  1894. (1801 (computed-goto-label-size . 61))
  1895. (1802 (computed-goto-instruction . 61))
  1896. (1803 (attach-label . 61))
  1897. (1804 (insert-label! . 61))
  1898. (1805 (code-vector-set2! . 61))
  1899. (1806 (high-byte . 61))
  1900. (1807 (low-byte . 61))
  1901. (1808 (note-source-code . 61))
  1902. (1809 (note-environment . 61))
  1903. (1810 (empty-segment? . 61))
  1904. (1811 (optimizers-table . 71))
  1905. (1812 (set-optimizer! . 71))
  1906. (1813 (get-optimizer . 71))
  1907. (1814 (apply-optimizers . 71))
  1908. (1815 (flatten-form . 67))
  1909. (1816 (flatten-node . 67))
  1910. (1817 (flatteners . 67))
  1911. (1818 (define-flattener . 67))
  1912. (1819 (flatten-list . 67))
  1913. (1820 (no-free-vars . 67))
  1914. (1821 (flatten-lambda . 67))
  1915. (1822 (convert-lambda-body . 67))
  1916. (1823 (add-cells . 67))
  1917. (1824 (flatten-letrec . 67))
  1918. (1825 (flatten-pure-letrec . 67))
  1919. (1826 (flatten-impure-letrec . 67))
  1920. (1827 (assigned? . 67))
  1921. (1828 (mark-set-variables! . 67))
  1922. (1829 (mark-sets . 67))
  1923. (1830 (define-set-marker . 67))
  1924. (1831 (no-sets . 67))
  1925. (1832 (mark-letrec-sets . 67))
  1926. (1833 (make-make-cell . 67))
  1927. (1834 (make-unassigned-cell . 67))
  1928. (1835 (make-cell-ref . 67))
  1929. (1836 (really-make-cell-ref . 67))
  1930. (1837 (make-cell-set! . 67))
  1931. (1838 (make-primop-call . 67))
  1932. (1839 (operator/flat-lambda . 67))
  1933. (1840 (operator/lambda . 67))
  1934. (1841 (operator/name . 67))
  1935. (1842 (operator/letrec . 67))
  1936. (1843 (operator/pure-letrec . 67))
  1937. (1844 (operator/begin . 67))
  1938. (1845 (operator/literal . 67))
  1939. (1846 (operator/call . 67))
  1940. (1847 (operator/unassigned . 67))
  1941. (1848 (operator/set! . 67))
  1942. (1849 (define-node? . 67))
  1943. (1850 (lambda-node? . 67))
  1944. (1851 (flat-lambda-node? . 67))
  1945. (1852 (define-primop . 67))
  1946. (1853 (temp0 . 67))
  1947. (1854 (make-cell-primop . 67))
  1948. (1855 (temp1 . 67))
  1949. (1856 (cell-ref-primop . 67))
  1950. (1857 (temp2 . 67))
  1951. (1858 (cell-set!-primop . 67))
  1952. (1859 (temp3 . 67))
  1953. (1860 (unassigned-check-primop . 67))
  1954. (1861 (install-new-set! . 67))
  1955. (1862 (install-set! . 67))
  1956. (1863 (set->list . 67))
  1957. (1864 (set-add-element! . 67))
  1958. (1865 (set-union! . 67))
  1959. (1866 (set-difference! . 67))
  1960. (1867 (clean-var-list . 67))
  1961. (1868 (clear-var-set! . 67))
  1962. (1869 (node-type . 63))
  1963. (1870 (reconstruct-type . 63))
  1964. (1871 (reconstruct . 63))
  1965. (1872 (examine . 63))
  1966. (1873 (reconstructors . 63))
  1967. (1874 (define-reconstructor . 63))
  1968. (1875 (reconstruct-lambda . 63))
  1969. (1876 (careful-codomain . 63))
  1970. (1877 (reconstruct-name . 63))
  1971. (1878 (proc->reconstructor . 63))
  1972. (1879 (reconstruct-call . 63))
  1973. (1880 (fork-constraints . 63))
  1974. (1881 (reconstruct-letrec . 63))
  1975. (1882 (node->type . 63))
  1976. (1883 (name-node? . 63))
  1977. (1884 (lambda-node? . 63))
  1978. (1885 (literal-node? . 63))
  1979. (1886 (primop-reconstructors . 63))
  1980. (1887 (define-primop-reconstructor . 63))
  1981. (1888 (reconstruct-apply . 63))
  1982. (1889 (constant-type . 63))
  1983. (1890 (compile-expression . 64))
  1984. (1891 (compile . 64))
  1985. (1892 (compilators . 64))
  1986. (1893 (define-compilator . 64))
  1987. (1894 (compile-constant . 64))
  1988. (1895 (small-integer? . 64))
  1989. (1896 (integer-literal-instruction . 64))
  1990. (1897 (compile-local-name . 64))
  1991. (1898 (index->offset . 64))
  1992. (1899 (maybe-compile-with-push . 64))
  1993. (1900 (constant-with-push . 64))
  1994. (1901 (lexical-ref-with-push . 64))
  1995. (1902 (push+stack-ref-instruction . 64))
  1996. (1903 (push+stack-indirect-instruction . 64))
  1997. (1904 (compile-call . 64))
  1998. (1905 (compile-name-call . 64))
  1999. (1906 (compile-unknown-call . 64))
  2000. (1907 (compile-redex . 64))
  2001. (1908 (compile-inline-body . 64))
  2002. (1909 (letrec-template-maker . 64))
  2003. (1910 (maybe-push-continuation . 64))
  2004. (1911 (push-continuation . 64))
  2005. (1912 (push-continuation-no-protocol . 64))
  2006. (1913 (really-push-continuation . 64))
  2007. (1914 (fixup-source . 64))
  2008. (1915 (push-arguments . 64))
  2009. (1916 (push-all-but-last . 64))
  2010. (1917 (push-all-with-names . 64))
  2011. (1918 (push-argument . 64))
  2012. (1919 (really-push-arguments . 64))
  2013. (1920 (compile-argument . 64))
  2014. (1921 (pre-push . 64))
  2015. (1922 (push-instruction . 64))
  2016. (1923 (call-instruction . 64))
  2017. (1924 (stack-ref-instruction . 64))
  2018. (1925 (stack-set!-instruction . 64))
  2019. (1926 (stack-indirect-instruction . 64))
  2020. (1927 (make-cont . 64))
  2021. (1928 (cont-kind . 64))
  2022. (1929 (cont-source-info . 64))
  2023. (1930 (return-cont . 64))
  2024. (1931 (return-cont? . 64))
  2025. (1932 (fall-through-cont . 64))
  2026. (1933 (plain-fall-through-cont . 64))
  2027. (1934 (fall-through-cont? . 64))
  2028. (1935 (ignore-values-segment . 64))
  2029. (1936 (ignore-values-cont . 64))
  2030. (1937 (ignore-values-cont? . 64))
  2031. (1938 (accept-values-cont . 64))
  2032. (1939 (accept-values-cont? . 64))
  2033. (1940 (deliver-value . 64))
  2034. (1941 (named-cont . 64))
  2035. (1942 (cont-name . 64))
  2036. (1943 (name-node-binding . 64))
  2037. (1944 (generate-trap . 64))
  2038. (1945 (type-check . 64))
  2039. (1946 (set-type-check?! . 64))
  2040. (1947 (*type-check?* . 64))
  2041. (1948 (diagnose-call-error . 64))
  2042. (1949 (lambda-node? . 64))
  2043. (1950 (flat-lambda-node? . 64))
  2044. (1951 (name-node? . 64))
  2045. (1952 (literal-node? . 64))
  2046. (1953 (quote-node? . 64))
  2047. (1954 (operator/lambda . 64))
  2048. (1955 (operator/set! . 64))
  2049. (1956 (operator/call . 64))
  2050. (1957 (operator/begin . 64))
  2051. (1958 (receive . 64))
  2052. (1959 (compile-flat-lambda . 64))
  2053. (1960 (really-compile-flat-lambda . 64))
  2054. (1961 (compile-lambda . 64))
  2055. (1962 (set-lexical-offsets! . 64))
  2056. (1963 (compile-lambda-code . 64))
  2057. (1964 (set-frame-locations! . 64))
  2058. (1965 (name-node->symbol . 64))
  2059. (1966 (compile-environment . 64))
  2060. (1967 (compile-recursive-environment . 64))
  2061. (1968 (finish-flat-env . 64))
  2062. (1969 (one-byte->two-byte . 64))
  2063. (1970 (flat-environment-code . 64))
  2064. (1971 (get-variables-locations . 64))
  2065. (1972 (add-variable . 64))
  2066. (1973 (figure-env-data . 64))
  2067. (1974 (primop-closed-template . 64))
  2068. (1975 (direct-compilator . 64))
  2069. (1976 (direct-closed-compilator . 64))
  2070. (1977 (nargs->domain . 64))
  2071. (1978 (get-primop-type . 64))
  2072. (1979 (primop-types . 64))
  2073. (1980 (define-simple-primitive . 64))
  2074. (1981 (simple-compilator . 64))
  2075. (1982 (simple-closed-compilator . 64))
  2076. (1983 (symbol-append . 64))
  2077. (1984 (define-stob-predicate . 64))
  2078. (1985 (define-data-struct-primitives . 64))
  2079. (1986 (define-vector-primitives . 64))
  2080. (1987 (define-more-vector-primitives . 64))
  2081. (1988 (thunk-node? . 64))
  2082. (1989 (thunk-body . 64))
  2083. (1990 (unflatten-form . 64))
  2084. (1991 (define-n-ary-compiler-primitive . 64))
  2085. (1992 (n-ary-primitive-compilator . 64))
  2086. (1993 (evaluate-arguments-for-effect . 64))
  2087. (1994 (call-on-arg-and-id . 64))
  2088. (1995 (call-on-args . 64))
  2089. (1996 (push-and-compile . 64))
  2090. (1997 (op/unspecific . 64))
  2091. (1998 (op/literal . 64))
  2092. (1999 (compile-forms . 64))
  2093. (2000 (compile-forms-loop . 64))
  2094. (2001 (compile-form . 64))
  2095. (2002 (call-template-inst . 64))
  2096. (2003 (template-call . 64))
  2097. (2004 (define-node? . 64))
  2098. (2005 (compile-definition . 64))
  2099. (2006 (location-contents-offset . 64))
  2100. (2007 (make-startup-procedure . 64))
  2101. (2008 (append-templates . 64))
  2102. (2009 (an-ignore-values-cont . 64))
  2103. (2010 (eval . 83))
  2104. (2011 (load-into . 83))
  2105. (2012 (load-script-into . 83))
  2106. (2013 (eval-from-file . 83))
  2107. (2014 (load . 83))
  2108. (2015 (really-load-into . 83))
  2109. (2016 (compile-and-run . 83))
  2110. (2017 (display-condition . 50))
  2111. (2018 (really-display-condition . 50))
  2112. (2019 (*depth* . 50))
  2113. (2020 (*length* . 50))
  2114. (2021 (&disclose-condition . 50))
  2115. (2022 (disclose-condition . 50))
  2116. (2023 (limited-write . 50))
  2117. (2024 (command-processor . 87))
  2118. (2025 (mini-load . 87))
  2119. (2026 (read-string . 87))
  2120. (2027 (enum-case . 45))
  2121. (2028 (run-threads . 43))
  2122. (2029 (run-threads-with-housekeeper . 43))
  2123. (2030 (round-robin-event-handler . 43))
  2124. (2031 (make-counter . 43))
  2125. (2032 (counter-value . 43))
  2126. (2033 (increment-counter! . 43))
  2127. (2034 (decrement-counter! . 43))
  2128. (2035 (root-scheduler . 44))
  2129. (2036 (make-root-event-handler . 44))
  2130. (2037 (root-handler . 44))
  2131. (2038 (cheap-display-condition . 44))
  2132. (2039 (abort-token . 44))
  2133. (2040 (scheme-exit-now . 44))
  2134. (2041 (root-wait . 44))
  2135. (2042 (do-some-waiting . 44))
  2136. (2043 (one-minute-of-milliseconds . 44))
  2137. (2044 (one-day-of-milliseconds . 44))
  2138. (2045 (one-year-of-minutes . 44))
  2139. (2046 (deadlock-handler . 44))
  2140. (2047 (call-when-deadlocked! . 44))
  2141. (2048 (spawn-output-forcers . 44))
  2142. (2049 (make-usual-resumer . 48))
  2143. (2050 (usual-resumer . 48))
  2144. (2051 (warn-about-undefined-imported-bindings . 48))
  2145. (2052 (initialize-rts . 48))
  2146. (2053 (*initialization-thunks* . 48))
  2147. (2054 (add-initialization-thunk! . 48))
  2148. (2055 (run-initialization-thunks . 48))
  2149. (2056 (start . 88))
  2150. (2057 (make-built-in-structures . 88))
  2151. (2058 (initialize-interaction-environment! . 88))
  2152. (2059 (make-initial-package . 88))
  2153. (2060 (make-tower . 88))
  2154. (2061 (the-usual-transforms . 58))
  2155. (2062 (define-usual-macro . 58))
  2156. (2063 (usual-transform . 58))
  2157. (2064 (do-spec? . 58))
  2158. (2065 (specs? . 58))
  2159. (2066 (case-clause? . 58))
  2160. (2067 (process-rules . 58))
  2161. (2068 (segment-pattern? . 58))
  2162. (2069 (segment-template? . 58))
  2163. (2070 (segment-depth . 58))
  2164. (2071 (segment-tail . 58))
  2165. (2072 (indicators-for-zero-or-more . 58))
  2166. (2073 (find-free-names-in-syntax-rules . 58))
  2167. (2074 (strongly-connected-components . 79))
  2168. (2075 (find-next-vertex . 79))
  2169. (2076 (:vertex . 79))
  2170. (2077 (really-make-vertex . 79))
  2171. (2078 (vertex-lowpoint . 79))
  2172. (2079 (set-vertex-lowpoint! . 79))
  2173. (2080 (vertex-parent . 79))
  2174. (2081 (set-vertex-parent! . 79))
  2175. (2082 (vertex-index . 79))
  2176. (2083 (set-vertex-index! . 79))
  2177. (2084 (vertex-stack . 79))
  2178. (2085 (set-vertex-stack! . 79))
  2179. (2086 (vertex-edges . 79))
  2180. (2087 (set-vertex-edges! . 79))
  2181. (2088 (vertex-data . 79))
  2182. (2089 (vertex? . 79))
  2183. (2090 (make-vertex . 79))
  2184. (2091 (make-vertices . 79))
  2185. (2092 (do-vertex . 79))
  2186. (2093 (get-strong . 79))
  2187. (2094 (end-vertex . 79))
  2188. (2095 (unwind-stack . 79))
  2189. (2096 (follow-edge . 79))
  2190. (2097 (pop-vertex-edge! . 79))
  2191. (2098 (find-usages . 76))
  2192. (2099 (maybe-update-known-type . 76))
  2193. (2100 (find-node-usages . 76))
  2194. (2101 (analyze . 76))
  2195. (2102 (analyze-nodes . 76))
  2196. (2103 (usage-analyzers . 76))
  2197. (2104 (define-usage-analyzer . 76))
  2198. (2105 (nothing . 76))
  2199. (2106 (add-if-free . 76))
  2200. (2107 (analyze-letrec . 76))
  2201. (2108 (:usage . 76))
  2202. (2109 (really-make-usage . 76))
  2203. (2110 (usage-assignment-count . 76))
  2204. (2111 (set-assignment! . 76))
  2205. (2112 (usage-operator-count . 76))
  2206. (2113 (set-operator! . 76))
  2207. (2114 (usage-reference-count . 76))
  2208. (2115 (set-reference! . 76))
  2209. (2116 (usage-name-node . 76))
  2210. (2117 (usage? . 76))
  2211. (2118 (make-usage . 76))
  2212. (2119 (make-package-usage . 76))
  2213. (2120 (package-usage? . 76))
  2214. (2121 (usage-incrementator . 76))
  2215. (2122 (note-reference! . 76))
  2216. (2123 (note-operator! . 76))
  2217. (2124 (note-assignment! . 76))
  2218. (2125 (lambda-node? . 76))
  2219. (2126 (quote-node? . 76))
  2220. (2127 (literal-node? . 76))
  2221. (2128 (call-node? . 76))
  2222. (2129 (name-node? . 76))
  2223. (2130 (define-node? . 76))
  2224. (2131 (sort-forms . 76))
  2225. (2132 (stuff-count . 76))
  2226. (2133 (maybe-make-aliased . 76))
  2227. (2134 (topologically-sort . 76))
  2228. (2135 (:form . 76))
  2229. (2136 (really-make-form . 76))
  2230. (2137 (form-temp . 76))
  2231. (2138 (set-form-temp! . 76))
  2232. (2139 (form-free . 76))
  2233. (2140 (set-form-free! . 76))
  2234. (2141 (form-unaliased? . 76))
  2235. (2142 (set-form-unaliased?! . 76))
  2236. (2143 (form-aliases . 76))
  2237. (2144 (set-form-aliases! . 76))
  2238. (2145 (form-node . 76))
  2239. (2146 (form? . 76))
  2240. (2147 (make-form . 76))
  2241. (2148 (insert-aliases . 76))
  2242. (2149 (make-inline-transform . 78))
  2243. (2150 (clean-node . 78))
  2244. (2151 (clean-lambda . 78))
  2245. (2152 (clean-lookup . 78))
  2246. (2153 (unused-name . 78))
  2247. (2154 (remove-bindings . 78))
  2248. (2155 (inline-transform . 78))
  2249. (2156 (make-substitution . 78))
  2250. (2157 (reconstitute . 78))
  2251. (2158 (reconstitute-name . 78))
  2252. (2159 (operator/name . 78))
  2253. (2160 (operator/literal . 78))
  2254. (2161 (qualified->name . 78))
  2255. (2162 (get-qualified-env . 78))
  2256. (2163 (quote-node? . 78))
  2257. (2164 (call-node? . 78))
  2258. (2165 (lambda-node? . 78))
  2259. (2166 (name-node? . 78))
  2260. (2167 (loophole-node? . 78))
  2261. (2168 (operator . 85))
  2262. (2169 (primop . 85))
  2263. (2170 (simple-interface . 85))
  2264. (2171 (package . 85))
  2265. (2172 (transform . 85))
  2266. (2173 (package-define-static! . 85))
  2267. (2174 (:syntax . 74))
  2268. (2175 (:values . 74))
  2269. (2176 (:arguments . 74))
  2270. (2177 (:value . 74))
  2271. (2178 (procedure . 74))
  2272. (2179 (:boolean . 74))
  2273. (2180 (:char . 74))
  2274. (2181 (:null . 74))
  2275. (2182 (:unspecific . 74))
  2276. (2183 (:number . 74))
  2277. (2184 (:complex . 74))
  2278. (2185 (:real . 74))
  2279. (2186 (:rational . 74))
  2280. (2187 (:integer . 74))
  2281. (2188 (:exact-integer . 74))
  2282. (2189 (:pair . 74))
  2283. (2190 (:string . 74))
  2284. (2191 (:symbol . 74))
  2285. (2192 (:vector . 74))
  2286. (2193 (:procedure . 74))
  2287. (2194 (:input-port . 74))
  2288. (2195 (:output-port . 74))
  2289. (2196 (:error . 74))
  2290. (2197 (:escape . 74))
  2291. (2198 (:structure . 74))
  2292. (2199 (:type . 74))
  2293. (2200 (def . 73))
  2294. (2201 (really-def . 73))
  2295. (2202 (define-multiple . 73))
  2296. (2203 (define-interface . 73))
  2297. (2204 (compound-interface . 73))
  2298. (2205 (export . 73))
  2299. (2206 (define-structure . 73))
  2300. (2207 (define-structures . 73))
  2301. (2208 (structure . 73))
  2302. (2209 (structures . 73))
  2303. (2210 (modify . 73))
  2304. (2211 (subset . 73))
  2305. (2212 (with-prefix . 73))
  2306. (2213 (a-package . 73))
  2307. (2214 (receive . 73))
  2308. (2215 (define-reflective-tower-maker . 73))
  2309. (2216 (export-reflective-tower-maker . 73))
  2310. (2217 (define-module . 73))
  2311. (2218 (make-a-package . 73))
  2312. (2219 (loser . 73))
  2313. (2220 (interface-of . 73))
  2314. (2221 (*verify-later!* . 73))
  2315. (2222 (verify-later! . 73))
  2316. (2223 (set-verify-later! . 73))
  2317. (2224 (note-name! . 73))
  2318. (2225 (collect-packages . 70))
  2319. (2226 (package-source . 70))
  2320. (2227 (read-files . 70))
  2321. (2228 (package-optimizer-names . 70))
  2322. (2229 (check-structure . 70))
  2323. (2230 (compile-package . 72))
  2324. (2231 (expand-package . 72))
  2325. (2232 (define-usual-transform . 72))
  2326. (2233 (define-primitives . 72))
  2327. (2234 (operator/define . 72))
  2328. (2235 (operator/primitive-procedure . 72))
  2329. (2236 (operator/call . 72))
  2330. (2237 (operator/literal . 72))
  2331. (2238 (analyze-forms . 77))
  2332. (2239 (analyze-form . 77))
  2333. (2240 (inlinable-rhs? . 77))
  2334. (2241 (simple-lambda? . 77))
  2335. (2242 (operator/name . 77))
  2336. (2243 (simple? . 77))
  2337. (2244 (simple-list? . 77))
  2338. (2245 (analyzers . 77))
  2339. (2246 (define-analyzer . 77))
  2340. (2247 (static-value . 77))
  2341. (2248 (really-simple-call? . 77))
  2342. (2249 (primitive-proc? . 77))
  2343. (2250 (no-ret . 77))
  2344. (2251 (ret . 77))
  2345. (2252 (simple-literal? . 77))
  2346. (2253 (require . 77))
  2347. (2254 (*debug?* . 77))
  2348. (2255 (package-lookup-type . 77))
  2349. (2256 (lambda-node? . 77))
  2350. (2257 (name-node? . 77))
  2351. (2258 (loophole-node? . 77))
  2352. (2259 (define-node? . 77))
  2353. (2260 (literal-node? . 77))
  2354. (2261 (ensure-loaded . 84))
  2355. -
  2356. ; Template uid -> name, parent, env maps
  2357. (0 scheme-level-0 #f ())
  2358. (1 scheme-level-0 #f ())
  2359. (2 atan #f ())
  2360. (3 scheme-level-0 #f ())
  2361. (4 scheme-level-0 #f ())
  2362. (5 set-location-defined?! #f ())
  2363. (6 scheme-level-0 #f ())
  2364. (7 scheme-level-0 #f ())
  2365. (8 acos #f ())
  2366. (9 scheme-level-0 #f ())
  2367. (10 scheme-level-0 #f ())
  2368. (11 vm-extension #f ())
  2369. (12 scheme-level-0 #f ())
  2370. (13 scheme-level-0 #f ())
  2371. (14 asin #f ())
  2372. (15 scheme-level-0 #f ())
  2373. (16 scheme-level-0 #f ())
  2374. (17 location-defined? #f ())
  2375. (18 scheme-level-0 #f ())
  2376. (19 scheme-level-0 #f ())
  2377. (20 time #f ())
  2378. (21 scheme-level-0 #f ())
  2379. (22 scheme-level-0 #f ())
  2380. (23 template-set! #f ())
  2381. (24 scheme-level-0 #f ())
  2382. (25 scheme-level-0 #f ())
  2383. (26 set-current-proposal! #f ())
  2384. (27 scheme-level-0 #f ())
  2385. (28 scheme-level-0 #f ())
  2386. (29 scheme-level-0 #f ())
  2387. (30 cons #f ())
  2388. (31 scheme-level-0 #f ())
  2389. (32 scheme-level-0 #f ())
  2390. (33 wait #f ())
  2391. (34 scheme-level-0 #f ())
  2392. (35 scheme-level-0 #f ())
  2393. (36 trap #f ())
  2394. (37 scheme-level-0 #f ())
  2395. (38 scheme-level-0 #f ())
  2396. (39 assq #f ())
  2397. (40 scheme-level-0 #f ())
  2398. (41 scheme-level-0 #f ())
  2399. (42 current-proposal #f ())
  2400. (43 scheme-level-0 #f ())
  2401. (44 scheme-level-0 #f ())
  2402. (45 make-weak-pointer #f ())
  2403. (46 scheme-level-0 #f ())
  2404. (47 scheme-level-0 #f ())
  2405. (48 lookup-shared-binding #f ())
  2406. (49 scheme-level-0 #f ())
  2407. (50 scheme-level-0 #f ())
  2408. (51 push #f ())
  2409. (52 scheme-level-0 #f ())
  2410. (53 scheme-level-0 #f ())
  2411. (54 provisional-set-contents! #f ())
  2412. (55 scheme-level-0 #f ())
  2413. (56 scheme-level-0 #f ())
  2414. (57 set-contents! #f ())
  2415. (58 scheme-level-0 #f ())
  2416. (59 scheme-level-0 #f ())
  2417. (60 read-char #f ())
  2418. (61 scheme-level-0 #f ())
  2419. (62 scheme-level-0 #f ())
  2420. (63 provisional-contents #f ())
  2421. (64 scheme-level-0 #f ())
  2422. (65 scheme-level-0 #f ())
  2423. (66 make-cell #f ())
  2424. (67 scheme-level-0 #f ())
  2425. (68 scheme-level-0 #f ())
  2426. (69 sqrt #f ())
  2427. (70 scheme-level-0 #f ())
  2428. (71 scheme-level-0 #f ())
  2429. (72 * #f ())
  2430. (73 scheme-level-0 #f ())
  2431. (74 scheme-level-0 #f ())
  2432. (75 contents #f ())
  2433. (76 scheme-level-0 #f ())
  2434. (77 scheme-level-0 #f ())
  2435. (78 + #f ())
  2436. (79 scheme-level-0 #f ())
  2437. (80 scheme-level-0 #f ())
  2438. (81 peek-char #f ())
  2439. (82 scheme-level-0 #f ())
  2440. (83 scheme-level-0 #f ())
  2441. (84 - #f ())
  2442. (85 scheme-level-0 #f ())
  2443. (86 scheme-level-0 #f ())
  2444. (87 continuation-set! #f ())
  2445. (88 scheme-level-0 #f ())
  2446. (89 scheme-level-0 #f ())
  2447. (90 / #f ())
  2448. (91 scheme-level-0 #f ())
  2449. (92 scheme-level-0 #f ())
  2450. (93 weak-pointer? #f ())
  2451. (94 scheme-level-0 #f ())
  2452. (95 scheme-level-0 #f ())
  2453. (96 atan1 #f ())
  2454. (97 scheme-level-0 #f ())
  2455. (98 scheme-level-0 #f ())
  2456. (99 atan2 #f ())
  2457. (100 scheme-level-0 #f ())
  2458. (101 scheme-level-0 #f ())
  2459. (102 quotient #f ())
  2460. (103 scheme-level-0 #f ())
  2461. (104 scheme-level-0 #f ())
  2462. (105 close-channel #f ())
  2463. (106 scheme-level-0 #f ())
  2464. (107 scheme-level-0 #f ())
  2465. (108 channel-abort #f ())
  2466. (109 scheme-level-0 #f ())
  2467. (110 scheme-level-0 #f ())
  2468. (111 char? #f ())
  2469. (112 scheme-level-0 #f ())
  2470. (113 scheme-level-0 #f ())
  2471. (114 < #f ())
  2472. (115 scheme-level-0 #f ())
  2473. (116 scheme-level-0 #f ())
  2474. (117 = #f ())
  2475. (118 scheme-level-0 #f ())
  2476. (119 scheme-level-0 #f ())
  2477. (120 provisional-set-port-data! #f ())
  2478. (121 scheme-level-0 #f ())
  2479. (122 scheme-level-0 #f ())
  2480. (123 cell? #f ())
  2481. (124 scheme-level-0 #f ())
  2482. (125 scheme-level-0 #f ())
  2483. (126 > #f ())
  2484. (127 scheme-level-0 #f ())
  2485. (128 scheme-level-0 #f ())
  2486. (129 make-location #f ())
  2487. (130 scheme-level-0 #f ())
  2488. (131 scheme-level-0 #f ())
  2489. (132 imag-part #f ())
  2490. (133 scheme-level-0 #f ())
  2491. (134 scheme-level-0 #f ())
  2492. (135 set-port-data! #f ())
  2493. (136 scheme-level-0 #f ())
  2494. (137 scheme-level-0 #f ())
  2495. (138 make-template #f ())
  2496. (139 scheme-level-0 #f ())
  2497. (140 scheme-level-0 #f ())
  2498. (141 real? #f ())
  2499. (142 scheme-level-0 #f ())
  2500. (143 scheme-level-0 #f ())
  2501. (144 real-part #f ())
  2502. (145 scheme-level-0 #f ())
  2503. (146 scheme-level-0 #f ())
  2504. (147 provisional-port-data #f ())
  2505. (148 scheme-level-0 #f ())
  2506. (149 scheme-level-0 #f ())
  2507. (150 record-length #f ())
  2508. (151 scheme-level-0 #f ())
  2509. (152 scheme-level-0 #f ())
  2510. (153 port-data #f ())
  2511. (154 scheme-level-0 #f ())
  2512. (155 scheme-level-0 #f ())
  2513. (156 pair? #f ())
  2514. (157 scheme-level-0 #f ())
  2515. (158 scheme-level-0 #f ())
  2516. (159 provisional-set-port-lock! #f ())
  2517. (160 scheme-level-0 #f ())
  2518. (161 scheme-level-0 #f ())
  2519. (162 make-port #f ())
  2520. (163 scheme-level-0 #f ())
  2521. (164 scheme-level-0 #f ())
  2522. (165 set-port-lock! #f ())
  2523. (166 scheme-level-0 #f ())
  2524. (167 scheme-level-0 #f ())
  2525. (168 bit-count #f ())
  2526. (169 scheme-level-0 #f ())
  2527. (170 scheme-level-0 #f ())
  2528. (171 provisional-checked-record-ref #f ())
  2529. (172 scheme-level-0 #f ())
  2530. (173 scheme-level-0 #f ())
  2531. (174 return-from-exception #f ())
  2532. (175 scheme-level-0 #f ())
  2533. (176 scheme-level-0 #f ())
  2534. (177 provisional-port-lock #f ())
  2535. (178 scheme-level-0 #f ())
  2536. (179 scheme-level-0 #f ())
  2537. (180 location? #f ())
  2538. (181 scheme-level-0 #f ())
  2539. (182 scheme-level-0 #f ())
  2540. (183 checked-record-ref #f ())
  2541. (184 scheme-level-0 #f ())
  2542. (185 scheme-level-0 #f ())
  2543. (186 channel-maybe-read #f ())
  2544. (187 scheme-level-0 #f ())
  2545. (188 scheme-level-0 #f ())
  2546. (189 add-finalizer! #f ())
  2547. (190 scheme-level-0 #f ())
  2548. (191 scheme-level-0 #f ())
  2549. (192 rational? #f ())
  2550. (193 scheme-level-0 #f ())
  2551. (194 scheme-level-0 #f ())
  2552. (195 template? #f ())
  2553. (196 scheme-level-0 #f ())
  2554. (197 scheme-level-0 #f ())
  2555. (198 port-lock #f ())
  2556. (199 scheme-level-0 #f ())
  2557. (200 scheme-level-0 #f ())
  2558. (201 vector-length #f ())
  2559. (202 scheme-level-0 #f ())
  2560. (203 scheme-level-0 #f ())
  2561. (204 make-continuation #f ())
  2562. (205 scheme-level-0 #f ())
  2563. (206 scheme-level-0 #f ())
  2564. (207 provisional-shared-binding-ref #f ())
  2565. (208 scheme-level-0 #f ())
  2566. (209 scheme-level-0 #f ())
  2567. (210 string-length #f ())
  2568. (211 scheme-level-0 #f ())
  2569. (212 scheme-level-0 #f ())
  2570. (213 shared-binding-ref #f ())
  2571. (214 scheme-level-0 #f ())
  2572. (215 scheme-level-0 #f ())
  2573. (216 port? #f ())
  2574. (217 scheme-level-0 #f ())
  2575. (218 scheme-level-0 #f ())
  2576. (219 angle #f ())
  2577. (220 scheme-level-0 #f ())
  2578. (221 scheme-level-0 #f ())
  2579. (222 false #f ())
  2580. (223 scheme-level-0 #f ())
  2581. (224 scheme-level-0 #f ())
  2582. (225 remainder #f ())
  2583. (226 scheme-level-0 #f ())
  2584. (227 scheme-level-0 #f ())
  2585. (228 continuation? #f ())
  2586. (229 scheme-level-0 #f ())
  2587. (230 scheme-level-0 #f ())
  2588. (231 channel-ready? #f ())
  2589. (232 scheme-level-0 #f ())
  2590. (233 scheme-level-0 #f ())
  2591. (234 binary-reduce1 #f ())
  2592. (235 scheme-level-0 #f ())
  2593. (236 scheme-level-0 #f ())
  2594. (237 binary-reduce2 #f ())
  2595. (238 scheme-level-0 #f ())
  2596. (239 scheme-level-0 #f ())
  2597. (240 char<? #f ())
  2598. (241 scheme-level-0 #f ())
  2599. (242 scheme-level-0 #f ())
  2600. (243 char=? #f ())
  2601. (244 scheme-level-0 #f ())
  2602. (245 scheme-level-0 #f ())
  2603. (246 <= #f ())
  2604. (247 scheme-level-0 #f ())
  2605. (248 scheme-level-0 #f ())
  2606. (249 magnitude #f ())
  2607. (250 scheme-level-0 #f ())
  2608. (251 scheme-level-0 #f ())
  2609. (252 >= #f ())
  2610. (253 scheme-level-0 #f ())
  2611. (254 scheme-level-0 #f ())
  2612. (255 with-continuation #f ())
  2613. (256 scheme-level-0 #f ())
  2614. (257 scheme-level-0 #f ())
  2615. (258 floor #f ())
  2616. (259 scheme-level-0 #f ())
  2617. (260 scheme-level-0 #f ())
  2618. (261 provisional-checked-record-set! #f ())
  2619. (262 scheme-level-0 #f ())
  2620. (263 scheme-level-0 #f ())
  2621. (264 apply #f ())
  2622. (265 scheme-level-0 #f ())
  2623. (266 scheme-level-0 #f ())
  2624. (267 memory-status #f ())
  2625. (268 scheme-level-0 #f ())
  2626. (269 scheme-level-0 #f ())
  2627. (270 checked-record-set! #f ())
  2628. (271 scheme-level-0 #f ())
  2629. (272 scheme-level-0 #f ())
  2630. (273 exact->inexact #f ())
  2631. (274 scheme-level-0 #f ())
  2632. (275 scheme-level-0 #f ())
  2633. (276 inexact->exact #f ())
  2634. (277 scheme-level-0 #f ())
  2635. (278 scheme-level-0 #f ())
  2636. (279 extended-number-length #f ())
  2637. (280 scheme-level-0 #f ())
  2638. (281 scheme-level-0 #f ())
  2639. (282 open-channels-list #f ())
  2640. (283 scheme-level-0 #f ())
  2641. (284 scheme-level-0 #f ())
  2642. (285 provisional-shared-binding-set! #f ())
  2643. (286 scheme-level-0 #f ())
  2644. (287 scheme-level-0 #f ())
  2645. (288 channel-id #f ())
  2646. (289 scheme-level-0 #f ())
  2647. (290 scheme-level-0 #f ())
  2648. (291 shared-binding-set! #f ())
  2649. (292 scheme-level-0 #f ())
  2650. (293 scheme-level-0 #f ())
  2651. (294 numerator #f ())
  2652. (295 scheme-level-0 #f ())
  2653. (296 scheme-level-0 #f ())
  2654. (297 eof-object #f ())
  2655. (298 scheme-level-0 #f ())
  2656. (299 scheme-level-0 #f ())
  2657. (300 byte-vector-length #f ())
  2658. (301 scheme-level-0 #f ())
  2659. (302 scheme-level-0 #f ())
  2660. (303 record-ref #f ())
  2661. (304 scheme-level-0 #f ())
  2662. (305 scheme-level-0 #f ())
  2663. (306 make-polar #f ())
  2664. (307 scheme-level-0 #f ())
  2665. (308 scheme-level-0 #f ())
  2666. (309 write-char #f ())
  2667. (310 scheme-level-0 #f ())
  2668. (311 scheme-level-0 #f ())
  2669. (312 symbol->string #f ())
  2670. (313 scheme-level-0 #f ())
  2671. (314 scheme-level-0 #f ())
  2672. (315 exact? #f ())
  2673. (316 scheme-level-0 #f ())
  2674. (317 scheme-level-0 #f ())
  2675. (318 push-false #f ())
  2676. (319 scheme-level-0 #f ())
  2677. (320 scheme-level-0 #f ())
  2678. (321 provisional-vector-ref #f ())
  2679. (322 scheme-level-0 #f ())
  2680. (323 scheme-level-0 #f ())
  2681. (324 vector-ref #f ())
  2682. (325 scheme-level-0 #f ())
  2683. (326 scheme-level-0 #f ())
  2684. (327 set-current-thread! #f ())
  2685. (328 scheme-level-0 #f ())
  2686. (329 scheme-level-0 #f ())
  2687. (330 provisional-set-port-index! #f ())
  2688. (331 scheme-level-0 #f ())
  2689. (332 scheme-level-0 #f ())
  2690. (333 immutable? #f ())
  2691. (334 scheme-level-0 #f ())
  2692. (335 scheme-level-0 #f ())
  2693. (336 set-exception-handlers! #f ())
  2694. (337 scheme-level-0 #f ())
  2695. (338 scheme-level-0 #f ())
  2696. (339 string-ref #f ())
  2697. (340 scheme-level-0 #f ())
  2698. (341 scheme-level-0 #f ())
  2699. (342 set-port-index! #f ())
  2700. (343 scheme-level-0 #f ())
  2701. (344 scheme-level-0 #f ())
  2702. (345 provisional-set-port-limit! #f ())
  2703. (346 scheme-level-0 #f ())
  2704. (347 scheme-level-0 #f ())
  2705. (348 make-shared-binding #f ())
  2706. (349 scheme-level-0 #f ())
  2707. (350 scheme-level-0 #f ())
  2708. (351 current-thread #f ())
  2709. (352 scheme-level-0 #f ())
  2710. (353 scheme-level-0 #f ())
  2711. (354 provisional-port-index #f ())
  2712. (355 scheme-level-0 #f ())
  2713. (356 scheme-level-0 #f ())
  2714. (357 channel-status #f ())
  2715. (358 scheme-level-0 #f ())
  2716. (359 scheme-level-0 #f ())
  2717. (360 set-port-limit! #f ())
  2718. (361 scheme-level-0 #f ())
  2719. (362 scheme-level-0 #f ())
  2720. (363 shared-binding-name #f ())
  2721. (364 scheme-level-0 #f ())
  2722. (365 scheme-level-0 #f ())
  2723. (366 port-index #f ())
  2724. (367 scheme-level-0 #f ())
  2725. (368 scheme-level-0 #f ())
  2726. (369 make-immutable! #f ())
  2727. (370 scheme-level-0 #f ())
  2728. (371 scheme-level-0 #f ())
  2729. (372 byte-vector-logging-ref #f ())
  2730. (373 scheme-level-0 #f ())
  2731. (374 scheme-level-0 #f ())
  2732. (375 set-enabled-interrupts! #f ())
  2733. (376 scheme-level-0 #f ())
  2734. (377 scheme-level-0 #f ())
  2735. (378 provisional-port-limit #f ())
  2736. (379 scheme-level-0 #f ())
  2737. (380 scheme-level-0 #f ())
  2738. (381 port-limit #f ())
  2739. (382 scheme-level-0 #f ())
  2740. (383 scheme-level-0 #f ())
  2741. (384 ascii->char #f ())
  2742. (385 scheme-level-0 #f ())
  2743. (386 scheme-level-0 #f ())
  2744. (387 char->ascii #f ())
  2745. (388 scheme-level-0 #f ())
  2746. (389 scheme-level-0 #f ())
  2747. (390 undefine-shared-binding #f ())
  2748. (391 scheme-level-0 #f ())
  2749. (392 scheme-level-0 #f ())
  2750. (393 channel-close-silently? #f ())
  2751. (394 scheme-level-0 #f ())
  2752. (395 scheme-level-0 #f ())
  2753. (396 attempt-copy-bytes! #f ())
  2754. (397 scheme-level-0 #f ())
  2755. (398 scheme-level-0 #f ())
  2756. (399 record-set! #f ())
  2757. (400 scheme-level-0 #f ())
  2758. (401 scheme-level-0 #f ())
  2759. (402 shared-binding? #f ())
  2760. (403 scheme-level-0 #f ())
  2761. (404 scheme-level-0 #f ())
  2762. (405 eof-object? #f ())
  2763. (406 scheme-level-0 #f ())
  2764. (407 scheme-level-0 #f ())
  2765. (408 set-interrupt-handlers! #f ())
  2766. (409 scheme-level-0 #f ())
  2767. (410 scheme-level-0 #f ())
  2768. (411 record #f ())
  2769. (412 scheme-level-0 #f ())
  2770. (413 scheme-level-0 #f ())
  2771. (414 schedule-interrupt #f ())
  2772. (415 scheme-level-0 #f ())
  2773. (416 scheme-level-0 #f ())
  2774. (417 channel-maybe-write #f ())
  2775. (418 scheme-level-0 #f ())
  2776. (419 scheme-level-0 #f ())
  2777. (420 unspecific #f ())
  2778. (421 scheme-level-0 #f ())
  2779. (422 scheme-level-0 #f ())
  2780. (423 provisional-vector-set! #f ())
  2781. (424 scheme-level-0 #f ())
  2782. (425 scheme-level-0 #f ())
  2783. (426 extended-number-ref #f ())
  2784. (427 scheme-level-0 #f ())
  2785. (428 scheme-level-0 #f ())
  2786. (429 vector-set! #f ())
  2787. (430 scheme-level-0 #f ())
  2788. (431 scheme-level-0 #f ())
  2789. (432 copy-bytes! #f ())
  2790. (433 scheme-level-0 #f ())
  2791. (434 scheme-level-0 #f ())
  2792. (435 string-set! #f ())
  2793. (436 scheme-level-0 #f ())
  2794. (437 scheme-level-0 #f ())
  2795. (438 unassigned #f ())
  2796. (439 scheme-level-0 #f ())
  2797. (440 scheme-level-0 #f ())
  2798. (441 call-external-value #f ())
  2799. (442 scheme-level-0 #f ())
  2800. (443 scheme-level-0 #f ())
  2801. (444 values #f ())
  2802. (445 scheme-level-0 #f ())
  2803. (446 scheme-level-0 #f ())
  2804. (447 intern #f ())
  2805. (448 scheme-level-0 #f ())
  2806. (449 scheme-level-0 #f ())
  2807. (450 vector #f ())
  2808. (451 scheme-level-0 #f ())
  2809. (452 scheme-level-0 #f ())
  2810. (453 write-image-low #f ())
  2811. (454 scheme-level-0 #f ())
  2812. (455 scheme-level-0 #f ())
  2813. (456 provisional-byte-vector-ref #f ())
  2814. (457 scheme-level-0 #f ())
  2815. (458 scheme-level-0 #f ())
  2816. (459 byte-vector-logging-set! #f ())
  2817. (460 scheme-level-0 #f ())
  2818. (461 scheme-level-0 #f ())
  2819. (462 byte-vector-ref #f ())
  2820. (463 scheme-level-0 #f ())
  2821. (464 scheme-level-0 #f ())
  2822. (465 make-double #f ())
  2823. (466 scheme-level-0 #f ())
  2824. (467 scheme-level-0 #f ())
  2825. (468 provisional-set-location-id! #f ())
  2826. (469 scheme-level-0 #f ())
  2827. (470 scheme-level-0 #f ())
  2828. (471 make-record #f ())
  2829. (472 scheme-level-0 #f ())
  2830. (473 scheme-level-0 #f ())
  2831. (474 set-location-id! #f ())
  2832. (475 scheme-level-0 #f ())
  2833. (476 scheme-level-0 #f ())
  2834. (477 provisional-location-id #f ())
  2835. (478 scheme-level-0 #f ())
  2836. (479 scheme-level-0 #f ())
  2837. (480 location-id #f ())
  2838. (481 scheme-level-0 #f ())
  2839. (482 scheme-level-0 #f ())
  2840. (483 bitwise-and #f ())
  2841. (484 scheme-level-0 #f ())
  2842. (485 scheme-level-0 #f ())
  2843. (486 eq? #f ())
  2844. (487 scheme-level-0 #f ())
  2845. (488 scheme-level-0 #f ())
  2846. (489 double? #f ())
  2847. (490 scheme-level-0 #f ())
  2848. (491 scheme-level-0 #f ())
  2849. (492 extended-number-set! #f ())
  2850. (493 scheme-level-0 #f ())
  2851. (494 scheme-level-0 #f ())
  2852. (495 make-vector #f ())
  2853. (496 scheme-level-0 #f ())
  2854. (497 scheme-level-0 #f ())
  2855. (498 record? #f ())
  2856. (499 scheme-level-0 #f ())
  2857. (500 scheme-level-0 #f ())
  2858. (501 provisional-set-port-buffer! #f ())
  2859. (502 scheme-level-0 #f ())
  2860. (503 scheme-level-0 #f ())
  2861. (504 make-string #f ())
  2862. (505 scheme-level-0 #f ())
  2863. (506 scheme-level-0 #f ())
  2864. (507 find-undefined-imported-bindings #f ())
  2865. (508 scheme-level-0 #f ())
  2866. (509 scheme-level-0 #f ())
  2867. (510 set-port-buffer! #f ())
  2868. (511 scheme-level-0 #f ())
  2869. (512 scheme-level-0 #f ())
  2870. (513 primitive-catch #f ())
  2871. (514 scheme-level-0 #f ())
  2872. (515 scheme-level-0 #f ())
  2873. (516 string-hash #f ())
  2874. (517 scheme-level-0 #f ())
  2875. (518 scheme-level-0 #f ())
  2876. (519 provisional-byte-vector-set! #f ())
  2877. (520 scheme-level-0 #f ())
  2878. (521 scheme-level-0 #f ())
  2879. (522 template-length #f ())
  2880. (523 scheme-level-0 #f ())
  2881. (524 scheme-level-0 #f ())
  2882. (525 provisional-port-buffer #f ())
  2883. (526 scheme-level-0 #f ())
  2884. (527 scheme-level-0 #f ())
  2885. (528 number? #f ())
  2886. (529 scheme-level-0 #f ())
  2887. (530 scheme-level-0 #f ())
  2888. (531 port-buffer #f ())
  2889. (532 scheme-level-0 #f ())
  2890. (533 scheme-level-0 #f ())
  2891. (534 byte-vector-set! #f ())
  2892. (535 scheme-level-0 #f ())
  2893. (536 scheme-level-0 #f ())
  2894. (537 bitwise-ior #f ())
  2895. (538 scheme-level-0 #f ())
  2896. (539 scheme-level-0 #f ())
  2897. (540 provisional-set-car! #f ())
  2898. (541 scheme-level-0 #f ())
  2899. (542 scheme-level-0 #f ())
  2900. (543 provisional-set-cdr! #f ())
  2901. (544 scheme-level-0 #f ())
  2902. (545 scheme-level-0 #f ())
  2903. (546 set-car! #f ())
  2904. (547 scheme-level-0 #f ())
  2905. (548 scheme-level-0 #f ())
  2906. (549 closure-env #f ())
  2907. (550 scheme-level-0 #f ())
  2908. (551 scheme-level-0 #f ())
  2909. (552 vector? #f ())
  2910. (553 scheme-level-0 #f ())
  2911. (554 scheme-level-0 #f ())
  2912. (555 bitwise-not #f ())
  2913. (556 scheme-level-0 #f ())
  2914. (557 scheme-level-0 #f ())
  2915. (558 set-cdr! #f ())
  2916. (559 scheme-level-0 #f ())
  2917. (560 scheme-level-0 #f ())
  2918. (561 provisional-car #f ())
  2919. (562 scheme-level-0 #f ())
  2920. (563 scheme-level-0 #f ())
  2921. (564 symbol? #f ())
  2922. (565 scheme-level-0 #f ())
  2923. (566 scheme-level-0 #f ())
  2924. (567 string? #f ())
  2925. (568 scheme-level-0 #f ())
  2926. (569 scheme-level-0 #f ())
  2927. (570 provisional-cdr #f ())
  2928. (571 scheme-level-0 #f ())
  2929. (572 scheme-level-0 #f ())
  2930. (573 car #f ())
  2931. (574 scheme-level-0 #f ())
  2932. (575 scheme-level-0 #f ())
  2933. (576 bitwise-xor #f ())
  2934. (577 scheme-level-0 #f ())
  2935. (578 scheme-level-0 #f ())
  2936. (579 cdr #f ())
  2937. (580 scheme-level-0 #f ())
  2938. (581 scheme-level-0 #f ())
  2939. (582 find-all-records #f ())
  2940. (583 scheme-level-0 #f ())
  2941. (584 scheme-level-0 #f ())
  2942. (585 continuation-length #f ())
  2943. (586 scheme-level-0 #f ())
  2944. (587 scheme-level-0 #f ())
  2945. (588 log #f ())
  2946. (589 scheme-level-0 #f ())
  2947. (590 scheme-level-0 #f ())
  2948. (591 message #f ())
  2949. (592 scheme-level-0 #f ())
  2950. (593 scheme-level-0 #f ())
  2951. (594 tan #f ())
  2952. (595 scheme-level-0 #f ())
  2953. (596 scheme-level-0 #f ())
  2954. (597 collect #f ())
  2955. (598 scheme-level-0 #f ())
  2956. (599 scheme-level-0 #f ())
  2957. (600 cos #f ())
  2958. (601 scheme-level-0 #f ())
  2959. (602 scheme-level-0 #f ())
  2960. (603 channel-os-index #f ())
  2961. (604 scheme-level-0 #f ())
  2962. (605 scheme-level-0 #f ())
  2963. (606 provisional-set-port-status! #f ())
  2964. (607 scheme-level-0 #f ())
  2965. (608 scheme-level-0 #f ())
  2966. (609 make-extended-number #f ())
  2967. (610 scheme-level-0 #f ())
  2968. (611 scheme-level-0 #f ())
  2969. (612 set-port-status! #f ())
  2970. (613 scheme-level-0 #f ())
  2971. (614 scheme-level-0 #f ())
  2972. (615 sin #f ())
  2973. (616 scheme-level-0 #f ())
  2974. (617 scheme-level-0 #f ())
  2975. (618 exp #f ())
  2976. (619 scheme-level-0 #f ())
  2977. (620 scheme-level-0 #f ())
  2978. (621 provisional-port-status #f ())
  2979. (622 scheme-level-0 #f ())
  2980. (623 scheme-level-0 #f ())
  2981. (624 pop #f ())
  2982. (625 scheme-level-0 #f ())
  2983. (626 scheme-level-0 #f ())
  2984. (627 port-status #f ())
  2985. (628 scheme-level-0 #f ())
  2986. (629 scheme-level-0 #f ())
  2987. (630 return-from-callback #f ())
  2988. (631 scheme-level-0 #f ())
  2989. (632 scheme-level-0 #f ())
  2990. (633 make-byte-vector #f ())
  2991. (634 scheme-level-0 #f ())
  2992. (635 scheme-level-0 #f ())
  2993. (636 weak-pointer-ref #f ())
  2994. (637 scheme-level-0 #f ())
  2995. (638 scheme-level-0 #f ())
  2996. (639 call-with-values #f ())
  2997. (640 scheme-level-0 #f ())
  2998. (641 scheme-level-0 #f ())
  2999. (642 denominator #f ())
  3000. (643 scheme-level-0 #f ())
  3001. (644 scheme-level-0 #f ())
  3002. (645 reverse-list->string #f ())
  3003. (646 scheme-level-0 #f ())
  3004. (647 scheme-level-0 #f ())
  3005. (648 extended-number? #f ())
  3006. (649 scheme-level-0 #f ())
  3007. (650 scheme-level-0 #f ())
  3008. (651 shared-binding-is-import? #f ())
  3009. (652 scheme-level-0 #f ())
  3010. (653 scheme-level-0 #f ())
  3011. (654 return-from-native-exception #f ())
  3012. (655 scheme-level-0 #f ())
  3013. (656 scheme-level-0 #f ())
  3014. (657 provisional-cell-ref #f ())
  3015. (658 scheme-level-0 #f ())
  3016. (659 scheme-level-0 #f ())
  3017. (660 os-error-message #f ())
  3018. (661 scheme-level-0 #f ())
  3019. (662 scheme-level-0 #f ())
  3020. (663 find-all #f ())
  3021. (664 scheme-level-0 #f ())
  3022. (665 scheme-level-0 #f ())
  3023. (666 cell-ref #f ())
  3024. (667 scheme-level-0 #f ())
  3025. (668 scheme-level-0 #f ())
  3026. (669 byte-vector? #f ())
  3027. (670 scheme-level-0 #f ())
  3028. (671 scheme-level-0 #f ())
  3029. (672 string=? #f ())
  3030. (673 scheme-level-0 #f ())
  3031. (674 scheme-level-0 #f ())
  3032. (675 open-channel #f ())
  3033. (676 scheme-level-0 #f ())
  3034. (677 scheme-level-0 #f ())
  3035. (678 channel? #f ())
  3036. (679 scheme-level-0 #f ())
  3037. (680 scheme-level-0 #f ())
  3038. (681 unassigned-check #f ())
  3039. (682 scheme-level-0 #f ())
  3040. (683 scheme-level-0 #f ())
  3041. (684 make-rectangular #f ())
  3042. (685 scheme-level-0 #f ())
  3043. (686 scheme-level-0 #f ())
  3044. (687 set-session-data! #f ())
  3045. (688 scheme-level-0 #f ())
  3046. (689 scheme-level-0 #f ())
  3047. (690 maybe-commit #f ())
  3048. (691 scheme-level-0 #f ())
  3049. (692 scheme-level-0 #f ())
  3050. (693 template-ref #f ())
  3051. (694 scheme-level-0 #f ())
  3052. (695 scheme-level-0 #f ())
  3053. (696 make-closure #f ())
  3054. (697 scheme-level-0 #f ())
  3055. (698 scheme-level-0 #f ())
  3056. (699 session-data #f ())
  3057. (700 scheme-level-0 #f ())
  3058. (701 scheme-level-0 #f ())
  3059. (702 integer? #f ())
  3060. (703 scheme-level-0 #f ())
  3061. (704 scheme-level-0 #f ())
  3062. (705 signal-condition #f ())
  3063. (706 scheme-level-0 #f ())
  3064. (707 scheme-level-0 #f ())
  3065. (708 provisional-set-port-pending-eof?! #f ())
  3066. (709 scheme-level-0 #f ())
  3067. (710 scheme-level-0 #f ())
  3068. (711 port-handler #f ())
  3069. (712 scheme-level-0 #f ())
  3070. (713 scheme-level-0 #f ())
  3071. (714 set-port-pending-eof?! #f ())
  3072. (715 scheme-level-0 #f ())
  3073. (716 scheme-level-0 #f ())
  3074. (717 arithmetic-shift #f ())
  3075. (718 scheme-level-0 #f ())
  3076. (719 scheme-level-0 #f ())
  3077. (720 provisional-port-pending-eof? #f ())
  3078. (721 scheme-level-0 #f ())
  3079. (722 scheme-level-0 #f ())
  3080. (723 provisional-cell-set! #f ())
  3081. (724 scheme-level-0 #f ())
  3082. (725 scheme-level-0 #f ())
  3083. (726 complex? #f ())
  3084. (727 scheme-level-0 #f ())
  3085. (728 scheme-level-0 #f ())
  3086. (729 port-pending-eof? #f ())
  3087. (730 scheme-level-0 #f ())
  3088. (731 scheme-level-0 #f ())
  3089. (732 cell-set! #f ())
  3090. (733 scheme-level-0 #f ())
  3091. (734 scheme-level-0 #f ())
  3092. (735 scheme-level-0 #f ())
  3093. (736 closure? #f ())
  3094. (737 scheme-level-0 #f ())
  3095. (738 scheme-level-0 #f ())
  3096. (739 continuation-ref #f ())
  3097. (740 scheme-level-0 #f ())
  3098. (741 scheme-level-0 #f ())
  3099. (742 closure-template #f ())
  3100. (743 scheme-level-0 #f ())
  3101. (744 scheme-level-0 #f ())
  3102. (745 current-cont #f ())
  3103. (746 scheme-level-0 #f ())
  3104. (747 scheme-level-0 #f ())
  3105. (748 char->integer 747 ())
  3106. (749 scheme-level-0 #f ())
  3107. (750 integer->char 749 ())
  3108. (751 scheme-level-0 #f ())
  3109. (752 invoke-closure 751 ())
  3110. (753 scheme-level-0 #f ())
  3111. (754 primitive-cwcc 753 ())
  3112. (755 #f 754 ())
  3113. (756 scheme-level-0 #f ())
  3114. (757 make-undefined-location 756 ())
  3115. (758 scheme-level-0 #f ())
  3116. (759 location-assigned? 758 ())
  3117. (760 scheme-level-0 #f ())
  3118. (761 cell-unassigned? 760 ())
  3119. (762 scheme-level-0 #f ())
  3120. (763 vector-unassigned? 762 ())
  3121. (764 scheme-level-0 #f ())
  3122. (765 string-copy 764 ())
  3123. (766 scheme-level-0 #f ())
  3124. (767 string->symbol 766 ())
  3125. (768 scheme-level-0 #f ())
  3126. (769 input-port? 768 ())
  3127. (770 scheme-level-0 #f ())
  3128. (771 output-port? 770 ())
  3129. (772 scheme-level-0 #f ())
  3130. (773 record-type 772 ())
  3131. (774 scheme-level-0 #f ())
  3132. (775 make-code-vector 774 ())
  3133. (776 scheme-level-0 #f ())
  3134. (777 code-vector? 776 ())
  3135. (778 scheme-level-0 #f ())
  3136. (779 code-vector-length 778 ())
  3137. (780 scheme-level-0 #f ())
  3138. (781 code-vector-ref 780 ())
  3139. (782 scheme-level-0 #f ())
  3140. (783 code-vector-set! 782 ())
  3141. (784 scheme-level-0 #f ())
  3142. (785 lookup-imported-binding 784 ())
  3143. (786 scheme-level-0 #f ())
  3144. (787 lookup-exported-binding 786 ())
  3145. (788 scheme-level-0 #f ())
  3146. (789 define-imported-binding 788 ())
  3147. (790 scheme-level-0 #f ())
  3148. (791 define-exported-binding 790 ())
  3149. (792 scheme-level-0 #f ())
  3150. (793 undefine-imported-binding 792 ())
  3151. (794 scheme-level-0 #f ())
  3152. (795 undefine-exported-binding 794 ())
  3153. (796 scheme-level-0 #f ())
  3154. (797 secret-length 796 ())
  3155. (798 scheme-level-0 #f ())
  3156. (799 byte-vector 798 ())
  3157. (800 loop##0 799 ())
  3158. (801 scheme-level-0 #f ())
  3159. (802 debug-message 801 ())
  3160. (803 scheme-level-0 #f ())
  3161. (804 signal 803 ())
  3162. (805 scheme-level-0 #f ())
  3163. (806 vector-prefix->list 805 ())
  3164. (807 loop##1 806 ())
  3165. (808 scheme-level-0 #f ())
  3166. (809 write-image 808 ())
  3167. (810 scheme-level-0 #f ())
  3168. (811 make-proposal 810 ())
  3169. (812 scheme-level-0 #f ())
  3170. (813 error 812 ())
  3171. (814 scheme-level-0 #f ())
  3172. (815 warn 814 ())
  3173. (816 scheme-level-0 #f ())
  3174. (817 note 816 ())
  3175. (818 scheme-level-0 #f ())
  3176. (819 syntax-error 818 ())
  3177. (820 scheme-level-0 #f ())
  3178. (821 call-error 820 ())
  3179. (822 scheme-level-0 #f ())
  3180. (823 scheme-level-0 #f ())
  3181. (824 scheme-level-0 #f ())
  3182. (825 scheme-level-1 #f ())
  3183. (826 scheme-level-1 #f ())
  3184. (827 scheme-level-1 #f ())
  3185. (828 scheme-level-1 #f ())
  3186. (829 scheme-level-1 #f ())
  3187. (830 scheme-level-1 #f ())
  3188. (831 scheme-level-1 #f ())
  3189. (832 scheme-level-1 #f ())
  3190. (833 scheme-level-1 #f ())
  3191. (834 scheme-level-1 #f ())
  3192. (835 scheme-level-1 #f ())
  3193. (836 scheme-level-1 #f ())
  3194. (837 #f 836 ())
  3195. (838 scheme-level-1 #f ())
  3196. (839 #f 838 ())
  3197. (840 scheme-level-1 #f ())
  3198. (841 scheme-level-1 #f ())
  3199. (842 scheme-level-1 #f ())
  3200. (843 scheme-level-1 #f ())
  3201. (844 scheme-level-1 #f ())
  3202. (845 scheme-level-1 #f ())
  3203. (846 scheme-level-1 #f ())
  3204. (847 not 846 ())
  3205. (848 scheme-level-1 #f ())
  3206. (849 boolean? 848 ())
  3207. (850 scheme-level-1 #f ())
  3208. (851 eqv? 850 ())
  3209. (852 scheme-level-1 #f ())
  3210. (853 equal? 852 ())
  3211. (854 loop 853 ())
  3212. (855 scheme-level-1 #f ())
  3213. (856 null? 855 ())
  3214. (857 scheme-level-1 #f ())
  3215. (858 inexact? 857 ())
  3216. (859 scheme-level-1 #f ())
  3217. (860 max-or-min 859 ())
  3218. (861 loop 860 ())
  3219. (862 scheme-level-1 #f ())
  3220. (863 max 862 ())
  3221. (864 scheme-level-1 #f ())
  3222. (865 min 864 ())
  3223. (866 scheme-level-1 #f ())
  3224. (867 abs 866 ())
  3225. (868 scheme-level-1 #f ())
  3226. (869 zero? 868 ())
  3227. (870 scheme-level-1 #f ())
  3228. (871 positive? 870 ())
  3229. (872 scheme-level-1 #f ())
  3230. (873 negative? 872 ())
  3231. (874 scheme-level-1 #f ())
  3232. (875 even? 874 ())
  3233. (876 scheme-level-1 #f ())
  3234. (877 odd? 876 ())
  3235. (878 scheme-level-1 #f ())
  3236. (879 caar 878 ())
  3237. (880 scheme-level-1 #f ())
  3238. (881 cadr 880 ())
  3239. (882 scheme-level-1 #f ())
  3240. (883 cdar 882 ())
  3241. (884 scheme-level-1 #f ())
  3242. (885 cddr 884 ())
  3243. (886 scheme-level-1 #f ())
  3244. (887 caaar 886 ())
  3245. (888 scheme-level-1 #f ())
  3246. (889 caadr 888 ())
  3247. (890 scheme-level-1 #f ())
  3248. (891 cadar 890 ())
  3249. (892 scheme-level-1 #f ())
  3250. (893 caddr 892 ())
  3251. (894 scheme-level-1 #f ())
  3252. (895 cdaar 894 ())
  3253. (896 scheme-level-1 #f ())
  3254. (897 cdadr 896 ())
  3255. (898 scheme-level-1 #f ())
  3256. (899 cddar 898 ())
  3257. (900 scheme-level-1 #f ())
  3258. (901 cdddr 900 ())
  3259. (902 scheme-level-1 #f ())
  3260. (903 caaaar 902 ())
  3261. (904 scheme-level-1 #f ())
  3262. (905 caaadr 904 ())
  3263. (906 scheme-level-1 #f ())
  3264. (907 caadar 906 ())
  3265. (908 scheme-level-1 #f ())
  3266. (909 caaddr 908 ())
  3267. (910 scheme-level-1 #f ())
  3268. (911 cadaar 910 ())
  3269. (912 scheme-level-1 #f ())
  3270. (913 cadadr 912 ())
  3271. (914 scheme-level-1 #f ())
  3272. (915 caddar 914 ())
  3273. (916 scheme-level-1 #f ())
  3274. (917 cadddr 916 ())
  3275. (918 scheme-level-1 #f ())
  3276. (919 cdaaar 918 ())
  3277. (920 scheme-level-1 #f ())
  3278. (921 cdaadr 920 ())
  3279. (922 scheme-level-1 #f ())
  3280. (923 cdadar 922 ())
  3281. (924 scheme-level-1 #f ())
  3282. (925 cdaddr 924 ())
  3283. (926 scheme-level-1 #f ())
  3284. (927 cddaar 926 ())
  3285. (928 scheme-level-1 #f ())
  3286. (929 cddadr 928 ())
  3287. (930 scheme-level-1 #f ())
  3288. (931 cdddar 930 ())
  3289. (932 scheme-level-1 #f ())
  3290. (933 cddddr 932 ())
  3291. (934 scheme-level-1 #f ())
  3292. (935 list 934 ())
  3293. (936 scheme-level-1 #f ())
  3294. (937 real-length 936 ())
  3295. (938 scheme-level-1 #f ())
  3296. (939 length 938 ())
  3297. (940 scheme-level-1 #f ())
  3298. (941 reduce 940 ())
  3299. (942 scheme-level-1 #f ())
  3300. (943 append 942 ())
  3301. (944 recur 943 ())
  3302. (945 scheme-level-1 #f ())
  3303. (946 append-reverse 945 ())
  3304. (947 scheme-level-1 #f ())
  3305. (948 reverse 947 ())
  3306. (949 scheme-level-1 #f ())
  3307. (950 list-tail 949 ())
  3308. (951 scheme-level-1 #f ())
  3309. (952 list-ref 951 ())
  3310. (953 scheme-level-1 #f ())
  3311. (954 mem 953 ())
  3312. (955 #f 954 ())
  3313. (956 loop 955 ())
  3314. (957 scheme-level-1 #f ())
  3315. (958 ass 957 ())
  3316. (959 #f 958 ())
  3317. (960 loop 959 ())
  3318. (961 scheme-level-1 #f ())
  3319. (962 list? 961 ())
  3320. (963 recur 962 ())
  3321. (964 scheme-level-1 #f ())
  3322. (965 char>? 964 ())
  3323. (966 scheme-level-1 #f ())
  3324. (967 char>=? 966 ())
  3325. (968 scheme-level-1 #f ())
  3326. (969 char<=? 968 ())
  3327. (970 scheme-level-1 #f ())
  3328. (971 char-whitespace? 970 ())
  3329. (972 scheme-level-1 #f ())
  3330. (973 char-lower-case? 972 ())
  3331. (974 scheme-level-1 #f ())
  3332. (975 char-upper-case? 974 ())
  3333. (976 scheme-level-1 #f ())
  3334. (977 char-numeric? 976 ())
  3335. (978 scheme-level-1 #f ())
  3336. (979 char-alphabetic? 978 ())
  3337. (980 scheme-level-1 #f ())
  3338. (981 make-character-map 980 ())
  3339. (982 loop##9 981 ())
  3340. (983 scheme-level-1 #f ())
  3341. (984 char-upcase 983 ())
  3342. (985 scheme-level-1 #f ())
  3343. (986 char-downcase 985 ())
  3344. (987 scheme-level-1 #f ())
  3345. (988 char-ci-compare 987 ())
  3346. (989 #f 988 ())
  3347. (990 scheme-level-1 #f ())
  3348. (991 list->string 990 ())
  3349. (992 loop##11 991 ())
  3350. (993 scheme-level-1 #f ())
  3351. (994 string 993 ())
  3352. (995 scheme-level-1 #f ())
  3353. (996 substring 995 ())
  3354. (997 loop##12 996 ())
  3355. (998 scheme-level-1 #f ())
  3356. (999 string-append 998 ())
  3357. (1000 #f 999 ())
  3358. (1001 loop 999 ())
  3359. (1002 loop##13 1001 ())
  3360. (1003 scheme-level-1 #f ())
  3361. (1004 string->list 1003 ())
  3362. (1005 loop##14 1004 ())
  3363. (1006 scheme-level-1 #f ())
  3364. (1007 unspecific 1006 ())
  3365. (1008 scheme-level-1 #f ())
  3366. (1009 string-fill! 1008 ())
  3367. (1010 loop##15 1009 ())
  3368. (1011 scheme-level-1 #f ())
  3369. (1012 make-string=? 1011 ())
  3370. (1013 #f 1012 ())
  3371. (1014 loop 1013 ())
  3372. (1015 scheme-level-1 #f ())
  3373. (1016 make-string<? 1015 ())
  3374. (1017 #f 1016 ())
  3375. (1018 loop 1017 ())
  3376. (1019 scheme-level-1 #f ())
  3377. (1020 string>? 1019 ())
  3378. (1021 scheme-level-1 #f ())
  3379. (1022 string<=? 1021 ())
  3380. (1023 scheme-level-1 #f ())
  3381. (1024 string>=? 1023 ())
  3382. (1025 scheme-level-1 #f ())
  3383. (1026 string-ci>? 1025 ())
  3384. (1027 scheme-level-1 #f ())
  3385. (1028 string-ci<=? 1027 ())
  3386. (1029 scheme-level-1 #f ())
  3387. (1030 string-ci>=? 1029 ())
  3388. (1031 scheme-level-1 #f ())
  3389. (1032 vector->list 1031 ())
  3390. (1033 loop##17 1032 ())
  3391. (1034 scheme-level-1 #f ())
  3392. (1035 list->vector 1034 ())
  3393. (1036 loop##18 1035 ())
  3394. (1037 scheme-level-1 #f ())
  3395. (1038 vector-fill! 1037 ())
  3396. (1039 loop##19 1038 ())
  3397. (1040 scheme-level-1 #f ())
  3398. (1041 map1 1040 ())
  3399. (1042 scheme-level-1 #f ())
  3400. (1043 any 1042 ())
  3401. (1044 scheme-level-1 #f ())
  3402. (1045 map2+ 1044 ())
  3403. (1046 scheme-level-1 #f ())
  3404. (1047 map 1046 ())
  3405. (1048 scheme-level-1 #f ())
  3406. (1049 for-each1 1048 ())
  3407. (1050 loop 1049 ())
  3408. (1051 scheme-level-1 #f ())
  3409. (1052 for-each2+ 1051 ())
  3410. (1053 loop 1052 ())
  3411. (1054 scheme-level-1 #f ())
  3412. (1055 for-each 1054 ())
  3413. (1056 scheme-level-1 #f ())
  3414. (1057 make-promise 1056 ())
  3415. (1058 #f 1057 ())
  3416. (1059 scheme-level-1 #f ())
  3417. (1060 force 1059 ())
  3418. (1061 scheme-level-1 #f ())
  3419. (1062 filter 1061 ())
  3420. (1063 #f 1062 ())
  3421. (1064 scheme-level-1 #f ())
  3422. (1065 pos 1064 ())
  3423. (1066 #f 1065 ())
  3424. (1067 loop 1066 ())
  3425. (1068 scheme-level-1 #f ())
  3426. (1069 every 1068 ())
  3427. (1070 scheme-level-1 #f ())
  3428. (1071 sublist 1070 ())
  3429. (1072 recur 1071 ())
  3430. (1073 scheme-level-1 #f ())
  3431. (1074 last 1073 ())
  3432. (1075 scheme-level-1 #f ())
  3433. (1076 insert 1075 ())
  3434. (1077 scheme-level-1 #f ())
  3435. (1078 fold 1077 ())
  3436. (1079 loop##23 1078 ())
  3437. (1080 scheme-level-1 #f ())
  3438. (1081 fold->2 1080 ())
  3439. (1082 loop 1081 ())
  3440. (1083 #f 1082 ())
  3441. (1084 #f 1082 ())
  3442. (1085 scheme-level-1 #f ())
  3443. (1086 fold->3 1085 ())
  3444. (1087 loop 1086 ())
  3445. (1088 #f 1087 ())
  3446. (1089 #f 1087 ())
  3447. (1090 scheme-level-1 #f ())
  3448. (1091 modulo 1090 ())
  3449. (1092 scheme-level-1 #f ())
  3450. (1093 ceiling 1092 ())
  3451. (1094 scheme-level-1 #f ())
  3452. (1095 truncate 1094 ())
  3453. (1096 scheme-level-1 #f ())
  3454. (1097 round 1096 ())
  3455. (1098 scheme-level-1 #f ())
  3456. (1099 euclid 1098 ())
  3457. (1100 scheme-level-1 #f ())
  3458. (1101 gcd 1100 ())
  3459. (1102 #f 1101 ())
  3460. (1103 scheme-level-1 #f ())
  3461. (1104 lcm 1103 ())
  3462. (1105 #f 1104 ())
  3463. (1106 scheme-level-1 #f ())
  3464. (1107 raise-to-integer-power 1106 ())
  3465. (1108 loop 1107 ())
  3466. (1109 scheme-level-1 #f ())
  3467. (1110 expt 1109 ())
  3468. (1111 scheme-level-1 #f ())
  3469. (1112 simplest-rational 1111 ())
  3470. (1113 simplest-rational-internal 1112 ())
  3471. (1114 scheme-level-1 #f ())
  3472. (1115 rationalize 1114 ())
  3473. (1116 record-types #f ())
  3474. (1117 #f 1116 ())
  3475. (1118 record-types #f ())
  3476. (1119 record-types #f ())
  3477. (1120 record-types #f ())
  3478. (1121 record-types #f ())
  3479. (1122 record-type-name 1121 ())
  3480. (1123 record-types #f ())
  3481. (1124 make-default-record-discloser 1123 ())
  3482. (1125 #f 1124 ())
  3483. (1126 record-types #f ())
  3484. (1127 make-record-type 1126 ())
  3485. (1128 record-types #f ())
  3486. (1129 record-type? 1128 ())
  3487. (1130 record-types #f ())
  3488. (1131 record-type-resumer 1130 ())
  3489. (1132 record-types #f ())
  3490. (1133 set-record-type-resumer! 1132 ())
  3491. (1134 record-types #f ())
  3492. (1135 record-type-uid 1134 ())
  3493. (1136 record-types #f ())
  3494. (1137 record-type-field-names 1136 ())
  3495. (1138 record-types #f ())
  3496. (1139 record-type-number-of-fields 1138 ())
  3497. (1140 record-types #f ())
  3498. (1141 record-type-discloser 1140 ())
  3499. (1142 record-types #f ())
  3500. (1143 set-record-type-discloser! 1142 ())
  3501. (1144 record-types #f ())
  3502. (1145 record-field-index 1144 ())
  3503. (1146 loop 1145 ())
  3504. (1147 record-types #f ())
  3505. (1148 record-constructor 1147 ())
  3506. (1149 #f 1148 ())
  3507. (1150 #f 1148 ())
  3508. (1151 loop 1150 ())
  3509. (1152 record-types #f ())
  3510. (1153 record-accessor 1152 ())
  3511. (1154 #f 1153 ())
  3512. (1155 record-types #f ())
  3513. (1156 record-modifier 1155 ())
  3514. (1157 #f 1156 ())
  3515. (1158 record-types #f ())
  3516. (1159 record-predicate 1158 ())
  3517. (1160 #f 1159 ())
  3518. (1161 record-types #f ())
  3519. (1162 define-record-discloser 1161 ())
  3520. (1163 record-types #f ())
  3521. (1164 disclose-record 1163 ())
  3522. (1165 record-types #f ())
  3523. (1166 define-record-resumer 1165 ())
  3524. (1167 record-types #f ())
  3525. (1168 resume-record 1167 ())
  3526. (1169 record-types #f ())
  3527. (1170 initialize-records! 1169 ())
  3528. (1171 loop##26 1170 ())
  3529. (1172 record-types #f ())
  3530. (1173 record-types #f ())
  3531. (1174 record-types #f ())
  3532. (1175 record-types #f ())
  3533. (1176 define-record-types #f ())
  3534. (1177 methods #f ())
  3535. (1178 &add-method! 1177 ())
  3536. (1179 methods #f ())
  3537. (1180 &disclose 1179 ())
  3538. (1181 methods #f ())
  3539. (1182 &disclose 1181 ())
  3540. (1183 methods #f ())
  3541. (1184 methods #f ())
  3542. (1185 disclose 1184 ())
  3543. (1186 methods #f ())
  3544. (1187 &same-type? 1186 ())
  3545. (1188 methods #f ())
  3546. (1189 &type-priority 1188 ())
  3547. (1190 methods #f ())
  3548. (1191 &type-predicate 1190 ())
  3549. (1192 methods #f ())
  3550. (1193 #f 1192 ())
  3551. (1194 methods #f ())
  3552. (1195 singleton-value 1194 ())
  3553. (1196 methods #f ())
  3554. (1197 singleton 1196 ())
  3555. (1198 methods #f ())
  3556. (1199 methods #f ())
  3557. (1200 &same-type? 1199 ())
  3558. (1201 methods #f ())
  3559. (1202 &same-type? 1201 ())
  3560. (1203 methods #f ())
  3561. (1204 methods #f ())
  3562. (1205 same-type? 1204 ())
  3563. (1206 methods #f ())
  3564. (1207 &type-superiors 1206 ())
  3565. (1208 methods #f ())
  3566. (1209 &type-superiors 1208 ())
  3567. (1210 methods #f ())
  3568. (1211 methods #f ())
  3569. (1212 type-superiors 1211 ())
  3570. (1213 methods #f ())
  3571. (1214 &type-priority 1213 ())
  3572. (1215 methods #f ())
  3573. (1216 &type-priority 1215 ())
  3574. (1217 methods #f ())
  3575. (1218 methods #f ())
  3576. (1219 type-priority 1218 ())
  3577. (1220 methods #f ())
  3578. (1221 &type-predicate 1220 ())
  3579. (1222 methods #f ())
  3580. (1223 &type-predicate 1222 ())
  3581. (1224 methods #f ())
  3582. (1225 methods #f ())
  3583. (1226 type-predicate 1225 ())
  3584. (1227 methods #f ())
  3585. (1228 add-method! 1227 ())
  3586. (1229 methods #f ())
  3587. (1230 methods #f ())
  3588. (1231 add-method! 1230 ())
  3589. (1232 methods #f ())
  3590. (1233 #f 1232 ())
  3591. (1234 methods #f ())
  3592. (1235 set-method-table-methods! 1234 ())
  3593. (1236 methods #f ())
  3594. (1237 method-table-methods 1236 ())
  3595. (1238 methods #f ())
  3596. (1239 method-table-prototype 1238 ())
  3597. (1240 methods #f ())
  3598. (1241 make-generic 1240 ())
  3599. (1242 methods #f ())
  3600. (1243 method-table-get-perform 1242 ())
  3601. (1244 methods #f ())
  3602. (1245 method-table-set-perform! 1244 ())
  3603. (1246 methods #f ())
  3604. (1247 method-table-id 1246 ())
  3605. (1248 methods #f ())
  3606. (1249 really-make-method-table 1248 ())
  3607. (1250 methods #f ())
  3608. (1251 methods #f ())
  3609. (1252 #f 1251 ())
  3610. (1253 methods #f ())
  3611. (1254 method-info-types 1253 ())
  3612. (1255 methods #f ())
  3613. (1256 method-info-n-ary? 1255 ())
  3614. (1257 methods #f ())
  3615. (1258 method-info-proc 1257 ())
  3616. (1259 methods #f ())
  3617. (1260 really-make-method-info 1259 ())
  3618. (1261 methods #f ())
  3619. (1262 methods #f ())
  3620. (1263 record-type-priority 1262 ())
  3621. (1264 methods #f ())
  3622. (1265 methods #f ())
  3623. (1266 methods #f ())
  3624. (1267 methods #f ())
  3625. (1268 methods #f ())
  3626. (1269 methods #f ())
  3627. (1270 methods #f ())
  3628. (1271 methods #f ())
  3629. (1272 methods #f ())
  3630. (1273 methods #f ())
  3631. (1274 methods #f ())
  3632. (1275 methods #f ())
  3633. (1276 methods #f ())
  3634. (1277 #f 1276 ())
  3635. (1278 methods #f ())
  3636. (1279 methods #f ())
  3637. (1280 methods #f ())
  3638. (1281 methods #f ())
  3639. (1282 methods #f ())
  3640. (1283 methods #f ())
  3641. (1284 #f 1283 ())
  3642. (1285 methods #f ())
  3643. (1286 methods #f ())
  3644. (1287 methods #f ())
  3645. (1288 methods #f ())
  3646. (1289 #f 1288 ())
  3647. (1290 methods #f ())
  3648. (1291 simple-type-superiors 1290 ())
  3649. (1292 methods #f ())
  3650. (1293 simple-type-predicate 1292 ())
  3651. (1294 methods #f ())
  3652. (1295 simple-type-priority 1294 ())
  3653. (1296 methods #f ())
  3654. (1297 simple-type-id 1296 ())
  3655. (1298 methods #f ())
  3656. (1299 really-make-simple-type 1298 ())
  3657. (1300 methods #f ())
  3658. (1301 methods #f ())
  3659. (1302 simple-type? 1301 ())
  3660. (1303 methods #f ())
  3661. (1304 %type-priority 1303 ())
  3662. (1305 methods #f ())
  3663. (1306 compute-priority 1305 ())
  3664. (1307 methods #f ())
  3665. (1308 make-simple-type 1307 ())
  3666. (1309 methods #f ())
  3667. (1310 %type-predicate 1309 ())
  3668. (1311 methods #f ())
  3669. (1312 %same-type? 1311 ())
  3670. (1313 methods #f ())
  3671. (1314 value? 1313 ())
  3672. (1315 methods #f ())
  3673. (1316 method-info? 1315 ())
  3674. (1317 methods #f ())
  3675. (1318 make-method-info 1317 ())
  3676. (1319 methods #f ())
  3677. (1320 empty-method-list 1319 ())
  3678. (1321 methods #f ())
  3679. (1322 more-specific-type? 1321 ())
  3680. (1323 methods #f ())
  3681. (1324 more-specific? 1323 ())
  3682. (1325 loop 1324 ())
  3683. (1326 methods #f ())
  3684. (1327 every2 1326 ())
  3685. (1328 methods #f ())
  3686. (1329 same-applicability? 1328 ())
  3687. (1330 methods #f ())
  3688. (1331 insert-method 1330 ())
  3689. (1332 recur 1331 ())
  3690. (1333 methods #f ())
  3691. (1334 method-table? 1333 ())
  3692. (1335 methods #f ())
  3693. (1336 last-action 1335 ())
  3694. (1337 #f 1336 ())
  3695. (1338 methods #f ())
  3696. (1339 one-action 1338 ())
  3697. (1340 #f 1339 ())
  3698. (1341 #f 1340 ())
  3699. (1342 methods #f ())
  3700. (1343 check-for-next 1342 ())
  3701. (1344 #f 1343 ())
  3702. (1345 methods #f ())
  3703. (1346 check-next 1345 ())
  3704. (1347 #f 1346 ())
  3705. (1348 methods #f ())
  3706. (1349 argument-sequence-predicate 1348 ())
  3707. (1350 recur 1349 ())
  3708. (1351 methods #f ())
  3709. (1352 methods->perform 1351 ())
  3710. (1353 recur 1352 ())
  3711. (1354 methods #f ())
  3712. (1355 add-to-method-table! 1354 ())
  3713. (1356 methods #f ())
  3714. (1357 set-final-method! 1356 ())
  3715. (1358 methods #f ())
  3716. (1359 make-cell-for-generic 1358 ())
  3717. (1360 #f 1359 ())
  3718. (1361 #f 1359 ())
  3719. (1362 #f 1359 ())
  3720. (1363 methods #f ())
  3721. (1364 make-method-table 1363 ())
  3722. (1365 #f 1364 ())
  3723. (1366 #f 1364 ())
  3724. (1367 methods #f ())
  3725. (1368 apply-generic 1367 ())
  3726. (1369 methods #f ())
  3727. (1370 compare-to 1369 ())
  3728. (1371 #f 1370 ())
  3729. (1372 methods #f ())
  3730. (1373 proc->discloser 1372 ())
  3731. (1374 #f 1373 ())
  3732. (1375 #f 1374 ())
  3733. (1376 methods #f ())
  3734. (1377 number-i/o #f ())
  3735. (1378 #f 1377 ())
  3736. (1379 #f 1377 ())
  3737. (1380 loop 1379 ())
  3738. (1381 #f 1377 ())
  3739. (1382 number-i/o #f ())
  3740. (1383 set-exactness 1382 ())
  3741. (1384 number-i/o #f ())
  3742. (1385 &really-string->number 1384 ())
  3743. (1386 number-i/o #f ())
  3744. (1387 #f 1386 ())
  3745. (1388 loop 1387 ())
  3746. (1389 number-i/o #f ())
  3747. (1390 &really-string->number 1389 ())
  3748. (1391 number-i/o #f ())
  3749. (1392 number-i/o #f ())
  3750. (1393 number-i/o #f ())
  3751. (1394 string->number 1393 ())
  3752. (1395 loop 1394 ())
  3753. (1396 radix-is 1395 ())
  3754. (1397 radix-is 1395 ())
  3755. (1398 loop 1395 ())
  3756. (1399 number-i/o #f ())
  3757. (1400 #f 1399 ())
  3758. (1401 recur 1400 ())
  3759. (1402 #f 1399 ())
  3760. (1403 number-i/o #f ())
  3761. (1404 &number->string 1403 ())
  3762. (1405 number-i/o #f ())
  3763. (1406 &number->string 1405 ())
  3764. (1407 number-i/o #f ())
  3765. (1408 number->string 1407 ())
  3766. (1409 number-i/o #f ())
  3767. (1410 number-i/o #f ())
  3768. (1411 fluids #f ())
  3769. (1412 fluids #f ())
  3770. (1413 set-fluid-top-level-value! 1412 ())
  3771. (1414 fluids #f ())
  3772. (1415 fluid-top-level-value 1414 ())
  3773. (1416 fluids #f ())
  3774. (1417 make-fluid 1416 ())
  3775. (1418 fluids #f ())
  3776. (1419 fluids #f ())
  3777. (1420 thread-dynamic-env 1419 ())
  3778. (1421 fluids #f ())
  3779. (1422 thread-dynamic-point 1421 ())
  3780. (1423 fluids #f ())
  3781. (1424 thread-proposal 1423 ())
  3782. (1425 fluids #f ())
  3783. (1426 make-thread 1425 ())
  3784. (1427 fluids #f ())
  3785. (1428 fluids #f ())
  3786. (1429 get-dynamic-env 1428 ())
  3787. (1430 fluids #f ())
  3788. (1431 set-dynamic-env! 1430 ())
  3789. (1432 fluids #f ())
  3790. (1433 get-dynamic-point 1432 ())
  3791. (1434 fluids #f ())
  3792. (1435 set-dynamic-point! 1434 ())
  3793. (1436 fluids #f ())
  3794. (1437 empty-dynamic-env 1436 ())
  3795. (1438 fluids #f ())
  3796. (1439 initialize-dynamic-state! 1438 ())
  3797. (1440 fluids #f ())
  3798. (1441 with-dynamic-env 1440 ())
  3799. (1442 #f 1441 ())
  3800. (1443 fluids #f ())
  3801. (1444 fluid 1443 ())
  3802. (1445 fluids #f ())
  3803. (1446 set-fluid! 1445 ())
  3804. (1447 fluids #f ())
  3805. (1448 let-fluid 1447 ())
  3806. (1449 fluids #f ())
  3807. (1450 let-fluids 1449 ())
  3808. (1451 loop 1450 ())
  3809. (1452 fluids #f ())
  3810. (1453 fluid-cell-ref 1452 ())
  3811. (1454 fluids #f ())
  3812. (1455 fluid-cell-set! 1454 ())
  3813. (1456 enumerated #f ())
  3814. (1457 lookup-enumerand 1456 ())
  3815. (1458 loop 1457 ())
  3816. (1459 architecture #f ())
  3817. (1460 architecture #f ())
  3818. (1461 architecture #f ())
  3819. (1462 architecture #f ())
  3820. (1463 architecture #f ())
  3821. (1464 architecture #f ())
  3822. (1465 architecture #f ())
  3823. (1466 architecture #f ())
  3824. (1467 architecture #f ())
  3825. (1468 architecture #f ())
  3826. (1469 architecture #f ())
  3827. (1470 architecture #f ())
  3828. (1471 architecture #f ())
  3829. (1472 architecture #f ())
  3830. (1473 architecture #f ())
  3831. (1474 architecture #f ())
  3832. (1475 architecture #f ())
  3833. (1476 architecture #f ())
  3834. (1477 architecture #f ())
  3835. (1478 architecture #f ())
  3836. (1479 architecture #f ())
  3837. (1480 architecture #f ())
  3838. (1481 architecture #f ())
  3839. (1482 architecture #f ())
  3840. (1483 architecture #f ())
  3841. (1484 architecture #f ())
  3842. (1485 architecture #f ())
  3843. (1486 architecture #f ())
  3844. (1487 architecture #f ())
  3845. (1488 architecture #f ())
  3846. (1489 architecture #f ())
  3847. (1490 architecture #f ())
  3848. (1491 architecture #f ())
  3849. (1492 architecture #f ())
  3850. (1493 architecture #f ())
  3851. (1494 architecture #f ())
  3852. (1495 next-protocol 1494 ())
  3853. (1496 architecture #f ())
  3854. (1497 architecture #f ())
  3855. (1498 architecture #f ())
  3856. (1499 architecture #f ())
  3857. (1500 architecture #f ())
  3858. (1501 architecture #f ())
  3859. (1502 architecture #f ())
  3860. (1503 architecture #f ())
  3861. (1504 architecture #f ())
  3862. (1505 architecture #f ())
  3863. (1506 architecture #f ())
  3864. (1507 architecture #f ())
  3865. (1508 architecture #f ())
  3866. (1509 architecture #f ())
  3867. (1510 architecture #f ())
  3868. (1511 proposals #f ())
  3869. (1512 proposals #f ())
  3870. (1513 invalidate-current-proposal! 1512 ())
  3871. (1514 proposals #f ())
  3872. (1515 remove-current-proposal! 1514 ())
  3873. (1516 proposals #f ())
  3874. (1517 call-ensuring-atomicity! 1516 ())
  3875. (1518 proposals #f ())
  3876. (1519 call-ensuring-atomicity 1518 ())
  3877. (1520 proposals #f ())
  3878. (1521 call-atomically! 1520 ())
  3879. (1522 #f 1521 ())
  3880. (1523 #f 1521 ())
  3881. (1524 lose 1523 ())
  3882. (1525 proposals #f ())
  3883. (1526 call-atomically 1525 ())
  3884. (1527 loop 1526 ())
  3885. (1528 #f 1527 ())
  3886. (1529 session-data #f ())
  3887. (1530 make-session-data-slot! 1529 ())
  3888. (1531 session-data #f ())
  3889. (1532 session-data-ref 1531 ())
  3890. (1533 session-data #f ())
  3891. (1534 session-data-set! 1533 ())
  3892. (1535 session-data #f ())
  3893. (1536 initialize-session-data! 1535 ())
  3894. (1537 session-data #f ())
  3895. (1538 simple-conditions #f ())
  3896. (1539 simple-conditions #f ())
  3897. (1540 simple-conditions #f ())
  3898. (1541 simple-conditions #f ())
  3899. (1542 simple-conditions #f ())
  3900. (1543 simple-conditions #f ())
  3901. (1544 simple-conditions #f ())
  3902. (1545 simple-conditions #f ())
  3903. (1546 simple-conditions #f ())
  3904. (1547 make-i/o-error 1546 ())
  3905. (1548 simple-conditions #f ())
  3906. (1549 i/o-error-arguments 1548 ())
  3907. (1550 simple-conditions #f ())
  3908. (1551 i/o-error-operation 1550 ())
  3909. (1552 simple-conditions #f ())
  3910. (1553 i/o-error-message 1552 ())
  3911. (1554 simple-conditions #f ())
  3912. (1555 i/o-error-status 1554 ())
  3913. (1556 simple-conditions #f ())
  3914. (1557 simple-conditions #f ())
  3915. (1558 simple-conditions #f ())
  3916. (1559 make-vm-exception 1558 ())
  3917. (1560 simple-conditions #f ())
  3918. (1561 vm-exception-arguments 1560 ())
  3919. (1562 simple-conditions #f ())
  3920. (1563 vm-exception-reason 1562 ())
  3921. (1564 simple-conditions #f ())
  3922. (1565 vm-exception-opcode 1564 ())
  3923. (1566 simple-conditions #f ())
  3924. (1567 simple-conditions #f ())
  3925. (1568 simple-conditions #f ())
  3926. (1569 simple-conditions #f ())
  3927. (1570 simple-conditions #f ())
  3928. (1571 simple-conditions #f ())
  3929. (1572 simple-conditions #f ())
  3930. (1573 simple-conditions #f ())
  3931. (1574 simple-conditions #f ())
  3932. (1575 condition-predicate 1574 ())
  3933. (1576 #f 1575 ())
  3934. (1577 simple-conditions #f ())
  3935. (1578 condition-stuff 1577 ())
  3936. (1579 #f 1578 ())
  3937. (1580 #f 1578 ())
  3938. (1581 simple-conditions #f ())
  3939. (1582 condition-type 1581 ())
  3940. (1583 #f 1582 ())
  3941. (1584 #f 1582 ())
  3942. (1585 simple-conditions #f ())
  3943. (1586 define-condition-decoder 1585 ())
  3944. (1587 simple-conditions #f ())
  3945. (1588 decode-condition 1587 ())
  3946. (1589 loop 1588 ())
  3947. (1590 simple-conditions #f ())
  3948. (1591 simple-conditions #f ())
  3949. (1592 define-condition-type 1591 ())
  3950. (1593 #f 1592 ())
  3951. (1594 simple-conditions #f ())
  3952. (1595 condition-supertypes 1594 ())
  3953. (1596 simple-conditions #f ())
  3954. (1597 vm-exceptions #f ())
  3955. (1598 extend-opcode! 1597 ())
  3956. (1599 except 1598 ())
  3957. (1600 #f 1598 ())
  3958. (1601 vm-exceptions #f ())
  3959. (1602 #f 1601 ())
  3960. (1603 vm-exceptions #f ())
  3961. (1604 #f 1603 ())
  3962. (1605 vm-exceptions #f ())
  3963. (1606 initialize-vm-exceptions! 1605 ())
  3964. (1607 vm-exceptions #f ())
  3965. (1608 vm-exceptions #f ())
  3966. (1609 signal-vm-exception 1608 ())
  3967. (1610 vm-exceptions #f ())
  3968. (1611 vm-exceptions #f ())
  3969. (1612 define-vm-exception-handler 1611 ())
  3970. (1613 wind #f ())
  3971. (1614 point-depth 1613 ())
  3972. (1615 wind #f ())
  3973. (1616 point-in 1615 ())
  3974. (1617 wind #f ())
  3975. (1618 point-out 1617 ())
  3976. (1619 wind #f ())
  3977. (1620 point-dynamic-env 1619 ())
  3978. (1621 wind #f ())
  3979. (1622 point-parent 1621 ())
  3980. (1623 wind #f ())
  3981. (1624 make-point 1623 ())
  3982. (1625 wind #f ())
  3983. (1626 wind #f ())
  3984. (1627 dynamic-wind 1626 ())
  3985. (1628 wind #f ())
  3986. (1629 travel-to-point! 1628 ())
  3987. (1630 wind #f ())
  3988. (1631 continuation->procedure 1630 ())
  3989. (1632 #f 1631 ())
  3990. (1633 #f 1632 ())
  3991. (1634 wind #f ())
  3992. (1635 call-with-current-continuation 1634 ())
  3993. (1636 #f 1635 ())
  3994. (1637 templates #f ())
  3995. (1638 template-code 1637 ())
  3996. (1639 templates #f ())
  3997. (1640 template-byte-code 1639 ())
  3998. (1641 templates #f ())
  3999. (1642 template-info 1641 ())
  4000. (1643 templates #f ())
  4001. (1644 template-package-id 1643 ())
  4002. (1645 templates #f ())
  4003. (1646 set-template-code! 1645 ())
  4004. (1647 templates #f ())
  4005. (1648 set-template-byte-code! 1647 ())
  4006. (1649 templates #f ())
  4007. (1650 set-template-info! 1649 ())
  4008. (1651 templates #f ())
  4009. (1652 set-template-package-id! 1651 ())
  4010. (1653 templates #f ())
  4011. (1654 more-types #f ())
  4012. (1655 &disclose 1654 ())
  4013. (1656 more-types #f ())
  4014. (1657 more-types #f ())
  4015. (1658 &disclose 1657 ())
  4016. (1659 more-types #f ())
  4017. (1660 more-types #f ())
  4018. (1661 more-types #f ())
  4019. (1662 more-types #f ())
  4020. (1663 more-types #f ())
  4021. (1664 more-types #f ())
  4022. (1665 more-types #f ())
  4023. (1666 more-types #f ())
  4024. (1667 more-types #f ())
  4025. (1668 continuations #f ())
  4026. (1669 &disclose 1668 ())
  4027. (1670 continuations #f ())
  4028. (1671 continuations #f ())
  4029. (1672 continuations #f ())
  4030. (1673 continuations #f ())
  4031. (1674 continuations #f ())
  4032. (1675 continuations #f ())
  4033. (1676 continuations #f ())
  4034. (1677 continuations #f ())
  4035. (1678 make-ref 1677 ())
  4036. (1679 #f 1678 ())
  4037. (1680 continuations #f ())
  4038. (1681 vm-exception-continuation? 1680 ())
  4039. (1682 continuations #f ())
  4040. (1683 call-with-values-continuation? 1682 ())
  4041. (1684 continuations #f ())
  4042. (1685 continuation-pc 1684 ())
  4043. (1686 continuations #f ())
  4044. (1687 continuation-code 1686 ())
  4045. (1688 continuations #f ())
  4046. (1689 continuation-arg 1688 ())
  4047. (1690 continuations #f ())
  4048. (1691 continuation-template 1690 ())
  4049. (1692 loop 1691 ())
  4050. (1693 loop 1691 ())
  4051. (1694 continuations #f ())
  4052. (1695 continuation-arg-count 1694 ())
  4053. (1696 continuations #f ())
  4054. (1697 continuation-preview 1696 ())
  4055. (1698 exceptions #f ())
  4056. (1699 raise 1698 ())
  4057. (1700 #f 1699 ())
  4058. (1701 loop 1700 ())
  4059. (1702 #f 1701 ())
  4060. (1703 exceptions #f ())
  4061. (1704 with-exception-handler 1703 ())
  4062. (1705 #f 1704 ())
  4063. (1706 exceptions #f ())
  4064. (1707 &disclose 1706 ())
  4065. (1708 exceptions #f ())
  4066. (1709 &disclose 1708 ())
  4067. (1710 exceptions #f ())
  4068. (1711 report-errors-as-warnings 1710 ())
  4069. (1712 #f 1711 ())
  4070. (1713 exceptions #f ())
  4071. (1714 ignore-errors 1713 ())
  4072. (1715 #f 1714 ())
  4073. (1716 #f 1715 ())
  4074. (1717 exceptions #f ())
  4075. (1718 report-utter-lossage 1717 ())
  4076. (1719 #f 1718 ())
  4077. (1720 exceptions #f ())
  4078. (1721 last-resort-exception-handler 1720 ())
  4079. (1722 #f 1721 ())
  4080. (1723 #f 1722 ())
  4081. (1724 exceptions #f ())
  4082. (1725 initialize-exceptions! 1724 ())
  4083. (1726 #f 1725 ())
  4084. (1727 exceptions #f ())
  4085. (1728 exceptions #f ())
  4086. (1729 with-handler 1728 ())
  4087. (1730 exceptions #f ())
  4088. (1731 really-signal-condition 1730 ())
  4089. (1732 loop 1731 ())
  4090. (1733 #f 1732 ())
  4091. (1734 i/o #f ())
  4092. (1735 i/o #f ())
  4093. (1736 i/o #f ())
  4094. (1737 i/o #f ())
  4095. (1738 i/o #f ())
  4096. (1739 i/o #f ())
  4097. (1740 i/o #f ())
  4098. (1741 i/o #f ())
  4099. (1742 #f 1741 ())
  4100. (1743 #f 1741 ())
  4101. (1744 #f 1741 ())
  4102. (1745 #f 1741 ())
  4103. (1746 #f 1741 ())
  4104. (1747 i/o #f ())
  4105. (1748 i/o #f ())
  4106. (1749 i/o #f ())
  4107. (1750 i/o #f ())
  4108. (1751 i/o #f ())
  4109. (1752 i/o #f ())
  4110. (1753 i/o #f ())
  4111. (1754 i/o #f ())
  4112. (1755 &disclose 1754 ())
  4113. (1756 i/o #f ())
  4114. (1757 &disclose 1756 ())
  4115. (1758 i/o #f ())
  4116. (1759 port-handler-discloser 1758 ())
  4117. (1760 i/o #f ())
  4118. (1761 port-handler-close 1760 ())
  4119. (1762 i/o #f ())
  4120. (1763 port-handler-char 1762 ())
  4121. (1764 i/o #f ())
  4122. (1765 port-handler-block 1764 ())
  4123. (1766 i/o #f ())
  4124. (1767 port-handler-ready? 1766 ())
  4125. (1768 i/o #f ())
  4126. (1769 port-handler-force 1768 ())
  4127. (1770 i/o #f ())
  4128. (1771 make-port-handler 1770 ())
  4129. (1772 i/o #f ())
  4130. (1773 i/o #f ())
  4131. (1774 port-handler? 1773 ())
  4132. (1775 i/o #f ())
  4133. (1776 disclose-port 1775 ())
  4134. (1777 i/o #f ())
  4135. (1778 one-arg-proc->handler 1777 ())
  4136. (1779 #f 1778 ())
  4137. (1780 i/o #f ())
  4138. (1781 two-arg-proc->handler 1780 ())
  4139. (1782 #f 1781 ())
  4140. (1783 i/o #f ())
  4141. (1784 initialize-i/o-handlers! 1783 ())
  4142. (1785 #f 1784 ())
  4143. (1786 #f 1784 ())
  4144. (1787 #f 1784 ())
  4145. (1788 i/o #f ())
  4146. (1789 open-input-port? 1788 ())
  4147. (1790 i/o #f ())
  4148. (1791 current-input-port 1790 ())
  4149. (1792 i/o #f ())
  4150. (1793 input-port-option 1792 ())
  4151. (1794 i/o #f ())
  4152. (1795 char-ready? 1794 ())
  4153. (1796 i/o #f ())
  4154. (1797 real-char-ready? 1796 ())
  4155. (1798 i/o #f ())
  4156. (1799 okay-limits? 1798 ())
  4157. (1800 i/o #f ())
  4158. (1801 read-block 1800 ())
  4159. (1802 i/o #f ())
  4160. (1803 open-output-port? 1802 ())
  4161. (1804 i/o #f ())
  4162. (1805 write-block 1804 ())
  4163. (1806 i/o #f ())
  4164. (1807 write-string 1806 ())
  4165. (1808 i/o #f ())
  4166. (1809 output-port-ready? 1808 ())
  4167. (1810 i/o #f ())
  4168. (1811 force-output 1810 ())
  4169. (1812 i/o #f ())
  4170. (1813 force-output-if-open 1812 ())
  4171. (1814 i/o #f ())
  4172. (1815 close-input-port 1814 ())
  4173. (1816 i/o #f ())
  4174. (1817 close-output-port 1816 ())
  4175. (1818 i/o #f ())
  4176. (1819 open-port? 1818 ())
  4177. (1820 i/o #f ())
  4178. (1821 make-input-port-closed! 1820 ())
  4179. (1822 i/o #f ())
  4180. (1823 make-unbuffered-input-port 1822 ())
  4181. (1824 i/o #f ())
  4182. (1825 make-output-port-closed! 1824 ())
  4183. (1826 i/o #f ())
  4184. (1827 make-unbuffered-output-port 1826 ())
  4185. (1828 i/o #f ())
  4186. (1829 make-null-output-port 1828 ())
  4187. (1830 i/o #f ())
  4188. (1831 okay-buffer? 1830 ())
  4189. (1832 i/o #f ())
  4190. (1833 make-buffered-input-port 1832 ())
  4191. (1834 i/o #f ())
  4192. (1835 make-buffered-output-port 1834 ())
  4193. (1836 i/o #f ())
  4194. (1837 make-one-char-input 1836 ())
  4195. (1838 #f 1837 ())
  4196. (1839 #f 1838 ())
  4197. (1840 #f 1838 ())
  4198. (1841 lose 1840 ())
  4199. (1842 i/o #f ())
  4200. (1843 get-available-bytes! 1842 ())
  4201. (1844 i/o #f ())
  4202. (1845 make-read-block 1844 ())
  4203. (1846 #f 1845 ())
  4204. (1847 loop 1846 ())
  4205. (1848 #f 1847 ())
  4206. (1849 #f 1847 ())
  4207. (1850 lose 1849 ())
  4208. (1851 i/o #f ())
  4209. (1852 make-char-ready? 1851 ())
  4210. (1853 #f 1852 ())
  4211. (1854 #f 1853 ())
  4212. (1855 #f 1853 ())
  4213. (1856 lose 1855 ())
  4214. (1857 #f 1856 ())
  4215. (1858 #f 1856 ())
  4216. (1859 i/o #f ())
  4217. (1860 make-buffered-input-port-handler 1859 ())
  4218. (1861 #f 1860 ())
  4219. (1862 #f 1860 ())
  4220. (1863 #f 1862 ())
  4221. (1864 #f 1862 ())
  4222. (1865 lose 1864 ())
  4223. (1866 i/o #f ())
  4224. (1867 note-buffer-reuse! 1866 ())
  4225. (1868 i/o #f ())
  4226. (1869 buffer-length 1868 ())
  4227. (1870 i/o #f ())
  4228. (1871 make-closer 1870 ())
  4229. (1872 #f 1871 ())
  4230. (1873 #f 1872 ())
  4231. (1874 #f 1872 ())
  4232. (1875 lose 1874 ())
  4233. (1876 i/o #f ())
  4234. (1877 make-one-char-output 1876 ())
  4235. (1878 #f 1877 ())
  4236. (1879 #f 1878 ())
  4237. (1880 #f 1878 ())
  4238. (1881 lose 1880 ())
  4239. (1882 i/o #f ())
  4240. (1883 copy-bytes-out! 1882 ())
  4241. (1884 i/o #f ())
  4242. (1885 make-write-block 1884 ())
  4243. (1886 #f 1885 ())
  4244. (1887 loop 1886 ())
  4245. (1888 #f 1887 ())
  4246. (1889 #f 1887 ())
  4247. (1890 lose 1889 ())
  4248. (1891 i/o #f ())
  4249. (1892 make-forcer 1891 ())
  4250. (1893 #f 1892 ())
  4251. (1894 #f 1893 ())
  4252. (1895 #f 1893 ())
  4253. (1896 lose 1895 ())
  4254. (1897 i/o #f ())
  4255. (1898 make-buffered-output-port-handler 1897 ())
  4256. (1899 #f 1898 ())
  4257. (1900 i/o #f ())
  4258. (1901 periodically-force-output! 1900 ())
  4259. (1902 i/o #f ())
  4260. (1903 make-forcing-thunk 1902 ())
  4261. (1904 #f 1903 ())
  4262. (1905 #f 1904 ())
  4263. (1906 #f 1904 ())
  4264. (1907 #f 1906 ())
  4265. (1908 i/o #f ())
  4266. (1909 output-port-forcers 1908 ())
  4267. (1910 loop 1909 ())
  4268. (1911 i/o #f ())
  4269. (1912 periodically-flushed-ports 1911 ())
  4270. (1913 loop 1912 ())
  4271. (1914 i/o #f ())
  4272. (1915 current-output-port 1914 ())
  4273. (1916 i/o #f ())
  4274. (1917 current-error-port 1916 ())
  4275. (1918 i/o #f ())
  4276. (1919 current-noise-port 1918 ())
  4277. (1920 i/o #f ())
  4278. (1921 with-current-ports 1920 ())
  4279. (1922 i/o #f ())
  4280. (1923 initialize-i/o 1922 ())
  4281. (1924 i/o #f ())
  4282. (1925 call-with-current-input-port 1924 ())
  4283. (1926 i/o #f ())
  4284. (1927 call-with-current-output-port 1926 ())
  4285. (1928 i/o #f ())
  4286. (1929 call-with-current-noise-port 1928 ())
  4287. (1930 i/o #f ())
  4288. (1931 silently 1930 ())
  4289. (1932 i/o #f ())
  4290. (1933 output-port-option 1932 ())
  4291. (1934 i/o #f ())
  4292. (1935 newline 1934 ())
  4293. (1936 i/o #f ())
  4294. (1937 i/o #f ())
  4295. (1938 i/o #f ())
  4296. (1939 writing #f ())
  4297. (1940 display 1939 ())
  4298. (1941 recur 1940 ())
  4299. (1942 writing #f ())
  4300. (1943 display-type-name 1942 ())
  4301. (1944 loop##120 1943 ())
  4302. (1945 writing #f ())
  4303. (1946 write-other 1945 ())
  4304. (1947 #f 1946 ())
  4305. (1948 writing #f ())
  4306. (1949 write-vector 1948 ())
  4307. (1950 loop 1949 ())
  4308. (1951 writing #f ())
  4309. (1952 quotation? 1951 ())
  4310. (1953 writing #f ())
  4311. (1954 write-list 1953 ())
  4312. (1955 loop 1954 ())
  4313. (1956 writing #f ())
  4314. (1957 write-string-literal 1956 ())
  4315. (1958 loop##124 1957 ())
  4316. (1959 writing #f ())
  4317. (1960 character-name 1959 ())
  4318. (1961 writing #f ())
  4319. (1962 write-char-literal 1961 ())
  4320. (1963 writing #f ())
  4321. (1964 write-number 1963 ())
  4322. (1965 writing #f ())
  4323. (1966 write-boolean 1965 ())
  4324. (1967 writing #f ())
  4325. (1968 recurring-write 1967 ())
  4326. (1969 writing #f ())
  4327. (1970 write 1969 ())
  4328. (1971 recur 1970 ())
  4329. (1972 reading #f ())
  4330. (1973 loop##126 1972 ())
  4331. (1974 reading #f ())
  4332. (1975 reading #f ())
  4333. (1976 number-sharp-macro 1975 ())
  4334. (1977 #f 1975 ())
  4335. (1978 reading #f ())
  4336. (1979 #f 1978 ())
  4337. (1980 reading #f ())
  4338. (1981 #f 1980 ())
  4339. (1982 reading #f ())
  4340. (1983 #f 1982 ())
  4341. (1984 reading #f ())
  4342. (1985 #f 1984 ())
  4343. (1986 reading #f ())
  4344. (1987 #f 1986 ())
  4345. (1988 reading #f ())
  4346. (1989 #f 1988 ())
  4347. (1990 reading #f ())
  4348. (1991 #f 1990 ())
  4349. (1992 loop 1991 ())
  4350. (1993 reading #f ())
  4351. (1994 #f 1993 ())
  4352. (1995 reading #f ())
  4353. (1996 #f 1995 ())
  4354. (1997 reading #f ())
  4355. (1998 #f 1997 ())
  4356. (1999 reading #f ())
  4357. (2000 #f 1999 ())
  4358. (2001 reading #f ())
  4359. (2002 reading #f ())
  4360. (2003 sub-read-constituent 2002 ())
  4361. (2004 #f 2002 ())
  4362. (2005 reading #f ())
  4363. (2006 sub-read-whitespace 2005 ())
  4364. (2007 #f 2005 ())
  4365. (2008 reading #f ())
  4366. (2009 reading #f ())
  4367. (2010 #f 2009 ())
  4368. (2011 reading #f ())
  4369. (2012 reading #f ())
  4370. (2013 reading #f ())
  4371. (2014 reading #f ())
  4372. (2015 reader-token? 2014 ())
  4373. (2016 reading #f ())
  4374. (2017 reading-error 2016 ())
  4375. (2018 reading #f ())
  4376. (2019 sub-read 2018 ())
  4377. (2020 reading #f ())
  4378. (2021 read 2020 ())
  4379. (2022 loop 2021 ())
  4380. (2023 reading #f ())
  4381. (2024 sub-read-carefully 2023 ())
  4382. (2025 reading #f ())
  4383. (2026 make-reader-token 2025 ())
  4384. (2027 reading #f ())
  4385. (2028 set-standard-syntax! 2027 ())
  4386. (2029 reading #f ())
  4387. (2030 set-standard-read-macro! 2029 ())
  4388. (2031 reading #f ())
  4389. (2032 sub-read-list 2031 ())
  4390. (2033 recur 2032 ())
  4391. (2034 reading #f ())
  4392. (2035 gobble-line 2034 ())
  4393. (2036 loop 2035 ())
  4394. (2037 reading #f ())
  4395. (2038 define-sharp-macro 2037 ())
  4396. (2039 reading #f ())
  4397. (2040 proper-list? 2039 ())
  4398. (2041 reading #f ())
  4399. (2042 preferred-case 2041 ())
  4400. (2043 reading #f ())
  4401. (2044 sub-read-token 2043 ())
  4402. (2045 loop 2044 ())
  4403. (2046 reading #f ())
  4404. (2047 parse-token 2046 ())
  4405. (2048 reading #f ())
  4406. (2049 reading #f ())
  4407. (2050 queues #f ())
  4408. (2051 queues #f ())
  4409. (2052 queue-uid 2051 ())
  4410. (2053 queues #f ())
  4411. (2054 set-queue-head! 2053 ())
  4412. (2055 queues #f ())
  4413. (2056 real-queue-head 2055 ())
  4414. (2057 queues #f ())
  4415. (2058 set-queue-tail! 2057 ())
  4416. (2059 queues #f ())
  4417. (2060 queue-tail 2059 ())
  4418. (2061 queues #f ())
  4419. (2062 really-make-queue 2061 ())
  4420. (2063 queues #f ())
  4421. (2064 queues #f ())
  4422. (2065 queue? 2064 ())
  4423. (2066 queues #f ())
  4424. (2067 next-uid 2066 ())
  4425. (2068 #f 2067 ())
  4426. (2069 queues #f ())
  4427. (2070 make-queue 2069 ())
  4428. (2071 queues #f ())
  4429. (2072 queue-empty? 2071 ())
  4430. (2073 queues #f ())
  4431. (2074 enqueue! 2073 ())
  4432. (2075 #f 2074 ())
  4433. (2076 queues #f ())
  4434. (2077 queue-head 2076 ())
  4435. (2078 #f 2077 ())
  4436. (2079 queues #f ())
  4437. (2080 dequeue! 2079 ())
  4438. (2081 #f 2080 ())
  4439. (2082 queues #f ())
  4440. (2083 maybe-dequeue! 2082 ())
  4441. (2084 #f 2083 ())
  4442. (2085 queues #f ())
  4443. (2086 empty-queue! 2085 ())
  4444. (2087 #f 2086 ())
  4445. (2088 queues #f ())
  4446. (2089 on-queue? 2088 ())
  4447. (2090 #f 2089 ())
  4448. (2091 queues #f ())
  4449. (2092 delete-from-queue-if! 2091 ())
  4450. (2093 #f 2092 ())
  4451. (2094 loop 2093 ())
  4452. (2095 queues #f ())
  4453. (2096 delete-from-queue! 2095 ())
  4454. (2097 #f 2096 ())
  4455. (2098 queues #f ())
  4456. (2099 queue->list 2098 ())
  4457. (2100 #f 2099 ())
  4458. (2101 #f 2100 ())
  4459. (2102 queues #f ())
  4460. (2103 list->queue 2102 ())
  4461. (2104 loop 2103 ())
  4462. (2105 queues #f ())
  4463. (2106 queue-length 2105 ())
  4464. (2107 #f 2106 ())
  4465. (2108 interrupts #f ())
  4466. (2109 #f 2108 ())
  4467. (2110 interrupts #f ())
  4468. (2111 interrupts #f ())
  4469. (2112 interrupts #f ())
  4470. (2113 interrupts #f ())
  4471. (2114 enabled-interrupts 2113 ())
  4472. (2115 interrupts #f ())
  4473. (2116 post-gc-handler 2115 ())
  4474. (2117 #f 2116 ())
  4475. (2118 #f 2117 ())
  4476. (2119 #f 2117 ())
  4477. (2120 #f 2119 ())
  4478. (2121 #f 2119 ())
  4479. (2122 interrupts #f ())
  4480. (2123 initialize-interrupts! 2122 ())
  4481. (2124 #f 2123 ())
  4482. (2125 loop##149 2124 ())
  4483. (2126 #f 2125 ())
  4484. (2127 #f 2124 ())
  4485. (2128 #f 2127 ())
  4486. (2129 interrupts #f ())
  4487. (2130 set-interrupt-handler! 2129 ())
  4488. (2131 interrupts #f ())
  4489. (2132 with-interrupts 2131 ())
  4490. (2133 #f 2132 ())
  4491. (2134 interrupts #f ())
  4492. (2135 with-interrupts-inhibited 2134 ())
  4493. (2136 interrupts #f ())
  4494. (2137 with-interrupts-allowed 2136 ())
  4495. (2138 interrupts #f ())
  4496. (2139 disable-interrupts! 2138 ())
  4497. (2140 interrupts #f ())
  4498. (2141 enable-interrupts! 2140 ())
  4499. (2142 interrupts #f ())
  4500. (2143 call-after-gc! 2142 ())
  4501. (2144 interrupts #f ())
  4502. (2145 call-before-heap-overflow! 2144 ())
  4503. (2146 interrupts #f ())
  4504. (2147 interrupts #f ())
  4505. (2148 threads #f ())
  4506. (2149 threads #f ())
  4507. (2150 threads #f ())
  4508. (2151 threads #f ())
  4509. (2152 threads #f ())
  4510. (2153 threads #f ())
  4511. (2154 threads #f ())
  4512. (2155 #f 2154 ())
  4513. (2156 threads #f ())
  4514. (2157 set-thread-dynamic-env! 2156 ())
  4515. (2158 threads #f ())
  4516. (2159 thread-dynamic-env 2158 ())
  4517. (2160 threads #f ())
  4518. (2161 set-thread-dynamic-point! 2160 ())
  4519. (2162 threads #f ())
  4520. (2163 thread-dynamic-point 2162 ())
  4521. (2164 threads #f ())
  4522. (2165 thread-proposal 2164 ())
  4523. (2166 threads #f ())
  4524. (2167 set-thread-time! 2166 ())
  4525. (2168 threads #f ())
  4526. (2169 thread-time 2168 ())
  4527. (2170 threads #f ())
  4528. (2171 set-thread-continuation! 2170 ())
  4529. (2172 threads #f ())
  4530. (2173 thread-continuation 2172 ())
  4531. (2174 threads #f ())
  4532. (2175 set-thread-arguments! 2174 ())
  4533. (2176 threads #f ())
  4534. (2177 thread-arguments 2176 ())
  4535. (2178 threads #f ())
  4536. (2179 set-thread-scheduler! 2178 ())
  4537. (2180 threads #f ())
  4538. (2181 thread-scheduler 2180 ())
  4539. (2182 threads #f ())
  4540. (2183 set-thread-current-task! 2182 ())
  4541. (2184 threads #f ())
  4542. (2185 thread-current-task 2184 ())
  4543. (2186 threads #f ())
  4544. (2187 set-thread-events! 2186 ())
  4545. (2188 threads #f ())
  4546. (2189 thread-events 2188 ())
  4547. (2190 threads #f ())
  4548. (2191 set-thread-data! 2190 ())
  4549. (2192 threads #f ())
  4550. (2193 thread-data 2192 ())
  4551. (2194 threads #f ())
  4552. (2195 set-thread-cell! 2194 ())
  4553. (2196 threads #f ())
  4554. (2197 thread-cell 2196 ())
  4555. (2198 threads #f ())
  4556. (2199 thread-uid 2198 ())
  4557. (2200 threads #f ())
  4558. (2201 thread-name 2200 ())
  4559. (2202 threads #f ())
  4560. (2203 really-make-thread 2202 ())
  4561. (2204 threads #f ())
  4562. (2205 threads #f ())
  4563. (2206 thread? 2205 ())
  4564. (2207 threads #f ())
  4565. (2208 compose-continuation 2207 ())
  4566. (2209 #f 2208 ())
  4567. (2210 #f 2209 ())
  4568. (2211 #f 2210 ())
  4569. (2212 #f 2211 ())
  4570. (2213 #f 2212 ())
  4571. (2214 threads #f ())
  4572. (2215 thunk->continuation 2214 ())
  4573. (2216 threads #f ())
  4574. (2217 max2 2216 ())
  4575. (2218 threads #f ())
  4576. (2219 interrupt-timer-time 2218 ())
  4577. (2220 threads #f ())
  4578. (2221 debit-down! 2220 ())
  4579. (2222 loop 2221 ())
  4580. (2223 threads #f ())
  4581. (2224 run-thread 2223 ())
  4582. (2225 #f 2224 ())
  4583. (2226 threads #f ())
  4584. (2227 switch-to-thread 2226 ())
  4585. (2228 #f 2227 ())
  4586. (2229 threads #f ())
  4587. (2230 suspend-to 2229 ())
  4588. (2231 threads #f ())
  4589. (2232 suspend 2231 ())
  4590. (2233 threads #f ())
  4591. (2234 thread-top-level 2233 ())
  4592. (2235 thread-start 2234 ())
  4593. (2236 #f 2235 ())
  4594. (2237 threads #f ())
  4595. (2238 make-thread 2237 ())
  4596. (2239 threads #f ())
  4597. (2240 all-threads 2239 ())
  4598. (2241 threads #f ())
  4599. (2242 thread-uid->thread 2241 ())
  4600. (2243 loop 2242 ())
  4601. (2244 threads #f ())
  4602. (2245 add-event! 2244 ())
  4603. (2246 threads #f ())
  4604. (2247 next-event! 2246 ())
  4605. (2248 threads #f ())
  4606. (2249 maybe-dequeue-thread! 2248 ())
  4607. (2250 loop 2249 ())
  4608. (2251 threads #f ())
  4609. (2252 thread-queue-empty? 2251 ())
  4610. (2253 #f 2252 ())
  4611. (2254 loop 2253 ())
  4612. (2255 threads #f ())
  4613. (2256 event-pending? 2255 ())
  4614. (2257 threads #f ())
  4615. (2258 min 2257 ())
  4616. (2259 threads #f ())
  4617. (2260 schedule-interrupt! 2259 ())
  4618. (2261 threads #f ())
  4619. (2262 run-next-thread 2261 ())
  4620. (2263 threads #f ())
  4621. (2264 debit-thread-times-and-run! 2263 ())
  4622. (2265 loop 2264 ())
  4623. (2266 threads #f ())
  4624. (2267 find-and-run-next-thread 2266 ())
  4625. (2268 loop 2267 ())
  4626. (2269 threads #f ())
  4627. (2270 run 2269 ())
  4628. (2271 threads #f ())
  4629. (2272 handle-timer-interrupt 2271 ())
  4630. (2273 threads #f ())
  4631. (2274 exit 2273 ())
  4632. (2275 threads #f ())
  4633. (2276 wait 2275 ())
  4634. (2277 threads #f ())
  4635. (2278 waiting? 2277 ())
  4636. (2279 threads #f ())
  4637. (2280 relinquish-timeslice 2279 ())
  4638. (2281 threads #f ())
  4639. (2282 block 2281 ())
  4640. (2283 threads #f ())
  4641. (2284 maybe-commit-and-block 2283 ())
  4642. (2285 threads #f ())
  4643. (2286 maybe-commit-and-block-on-queue 2285 ())
  4644. (2287 threads #f ())
  4645. (2288 running? 2287 ())
  4646. (2289 loop 2288 ())
  4647. (2290 threads #f ())
  4648. (2291 interrupt-thread 2290 ())
  4649. (2292 threads #f ())
  4650. (2293 propogate-upcall 2292 ())
  4651. (2294 #f 2293 ())
  4652. (2295 threads #f ())
  4653. (2296 upcall 2295 ())
  4654. (2297 threads #f ())
  4655. (2298 kill-thread! 2297 ())
  4656. (2299 #f 2298 ())
  4657. (2300 threads #f ())
  4658. (2301 clear-thread-cell! 2300 ())
  4659. (2302 threads #f ())
  4660. (2303 terminate-current-thread 2302 ())
  4661. (2304 threads #f ())
  4662. (2305 terminate-thread! 2304 ())
  4663. (2306 #f 2305 ())
  4664. (2307 threads #f ())
  4665. (2308 get-next-event! 2307 ())
  4666. (2309 threads #f ())
  4667. (2310 schedule-wakeup 2309 ())
  4668. (2311 threads #f ())
  4669. (2312 really-schedule-event 2311 ())
  4670. (2313 threads #f ())
  4671. (2314 root-scheduler 2313 ())
  4672. (2315 threads #f ())
  4673. (2316 maybe-suspend 2315 ())
  4674. (2317 loop 2316 ())
  4675. (2318 threads #f ())
  4676. (2319 schedule-event 2318 ())
  4677. (2320 threads #f ())
  4678. (2321 show-running 2320 ())
  4679. (2322 loop##206 2321 ())
  4680. (2323 threads #f ())
  4681. (2324 spawn-on-scheduler 2323 ())
  4682. (2325 threads #f ())
  4683. (2326 spawn 2325 ())
  4684. (2327 threads #f ())
  4685. (2328 spawn-on-root 2327 ())
  4686. (2329 threads #f ())
  4687. (2330 make-ready 2329 ())
  4688. (2331 threads #f ())
  4689. (2332 make-threads-ready 2331 ())
  4690. (2333 loop 2332 ())
  4691. (2334 threads #f ())
  4692. (2335 maybe-commit-and-make-ready 2334 ())
  4693. (2336 threads #f ())
  4694. (2337 maybe-commit-no-interrupts 2336 ())
  4695. (2338 threads #f ())
  4696. (2339 cancel-timer-interrupt! 2338 ())
  4697. (2340 threads #f ())
  4698. (2341 real-time 2340 ())
  4699. (2342 threads #f ())
  4700. (2343 start-multitasking 2342 ())
  4701. (2344 #f 2343 ())
  4702. (2345 #f 2344 ())
  4703. (2346 #f 2344 ())
  4704. (2347 #f 2346 ())
  4705. (2348 #f 2347 ())
  4706. (2349 #f 2347 ())
  4707. (2350 threads #f ())
  4708. (2351 with-threads 2350 ())
  4709. (2352 #f 2351 ())
  4710. (2353 #f 2352 ())
  4711. (2354 #f 2352 ())
  4712. (2355 #f 2352 ())
  4713. (2356 threads #f ())
  4714. (2357 insert 2356 ())
  4715. (2358 threads #f ())
  4716. (2359 register-dozer-unsafe! 2358 ())
  4717. (2360 #f 2359 ())
  4718. (2361 threads #f ())
  4719. (2362 coerce-to-nonnegative-integer 2361 ())
  4720. (2363 threads #f ())
  4721. (2364 sleep 2363 ())
  4722. (2365 #f 2364 ())
  4723. (2366 #f 2364 ())
  4724. (2367 threads #f ())
  4725. (2368 register-dozer! 2367 ())
  4726. (2369 threads #f ())
  4727. (2370 wake-some-threads 2369 ())
  4728. (2371 loop 2370 ())
  4729. (2372 threads #f ())
  4730. (2373 threads #f ())
  4731. (2374 threads #f ())
  4732. (2375 condvars #f ())
  4733. (2376 #f 2375 ())
  4734. (2377 condvars #f ())
  4735. (2378 condvar-queue 2377 ())
  4736. (2379 condvars #f ())
  4737. (2380 set-condvar-has-value?! 2379 ())
  4738. (2381 condvars #f ())
  4739. (2382 condvar-has-value? 2381 ())
  4740. (2383 condvars #f ())
  4741. (2384 set-condvar-value! 2383 ())
  4742. (2385 condvars #f ())
  4743. (2386 condvar-value 2385 ())
  4744. (2387 condvars #f ())
  4745. (2388 condvar-id 2387 ())
  4746. (2389 condvars #f ())
  4747. (2390 really-make-condvar 2389 ())
  4748. (2391 condvars #f ())
  4749. (2392 condvars #f ())
  4750. (2393 condvar? 2392 ())
  4751. (2394 condvars #f ())
  4752. (2395 make-condvar 2394 ())
  4753. (2396 condvars #f ())
  4754. (2397 maybe-commit-and-wait-for-condvar 2396 ())
  4755. (2398 condvars #f ())
  4756. (2399 maybe-commit-and-set-condvar! 2398 ())
  4757. (2400 condvars #f ())
  4758. (2401 condvar-has-waiters? 2400 ())
  4759. (2402 channel-i/o #f ())
  4760. (2403 abort-unwanted-reads! 2402 ())
  4761. (2404 loop 2403 ())
  4762. (2405 channel-i/o #f ())
  4763. (2406 fetch-channel-condvar! 2405 ())
  4764. (2407 loop 2406 ())
  4765. (2408 channel-i/o #f ())
  4766. (2409 channel-i/o #f ())
  4767. (2410 add-channel-condvar! 2409 ())
  4768. (2411 channel-i/o #f ())
  4769. (2412 set-channel-condvars! 2411 ())
  4770. (2413 channel-i/o #f ())
  4771. (2414 channel-condvars 2413 ())
  4772. (2415 channel-i/o #f ())
  4773. (2416 channel-i/o #f ())
  4774. (2417 waiting-for-i/o? 2416 ())
  4775. (2418 channel-i/o #f ())
  4776. (2419 i/o-completion-handler 2418 ())
  4777. (2420 channel-i/o #f ())
  4778. (2421 initialize-channel-i/o! 2420 ())
  4779. (2422 channel-i/o #f ())
  4780. (2423 input-channel? 2422 ())
  4781. (2424 channel-i/o #f ())
  4782. (2425 channel-maybe-commit-and-close 2424 ())
  4783. (2426 #f 2425 ())
  4784. (2427 channel-i/o #f ())
  4785. (2428 channel-write 2427 ())
  4786. (2429 #f 2428 ())
  4787. (2430 #f 2428 ())
  4788. (2431 lose 2430 ())
  4789. (2432 channel-i/o #f ())
  4790. (2433 note-channel-result! 2432 ())
  4791. (2434 #f 2433 ())
  4792. (2435 #f 2433 ())
  4793. (2436 lose 2435 ())
  4794. (2437 channel-i/o #f ())
  4795. (2438 channel-maybe-commit-and-write 2437 ())
  4796. (2439 #f 2438 ())
  4797. (2440 #f 2439 ())
  4798. (2441 #f 2439 ())
  4799. (2442 lose 2441 ())
  4800. (2443 channel-i/o #f ())
  4801. (2444 channel-maybe-commit-and-read 2443 ())
  4802. (2445 #f 2444 ())
  4803. (2446 channel-ports #f ())
  4804. (2447 #f 2446 ())
  4805. (2448 #f 2446 ())
  4806. (2449 #f 2446 ())
  4807. (2450 #f 2446 ())
  4808. (2451 channel-ports #f ())
  4809. (2452 write-block-handler 2451 ())
  4810. (2453 loop 2452 ())
  4811. (2454 channel-ports #f ())
  4812. (2455 one-char-handler 2454 ())
  4813. (2456 loop 2455 ())
  4814. (2457 channel-ports #f ())
  4815. (2458 force-channel-output-ports! 2457 ())
  4816. (2459 #f 2458 ())
  4817. (2460 channel-ports #f ())
  4818. (2461 with-output-to-file 2460 ())
  4819. (2462 #f 2461 ())
  4820. (2463 channel-ports #f ())
  4821. (2464 with-input-from-file 2463 ())
  4822. (2465 #f 2464 ())
  4823. (2466 channel-ports #f ())
  4824. (2467 call-with-output-file 2466 ())
  4825. (2468 #f 2467 ())
  4826. (2469 channel-ports #f ())
  4827. (2470 call-with-input-file 2469 ())
  4828. (2471 #f 2470 ())
  4829. (2472 channel-ports #f ())
  4830. (2473 open-output-file 2472 ())
  4831. (2474 channel-ports #f ())
  4832. (2475 really-open-output-file 2474 ())
  4833. (2476 channel-ports #f ())
  4834. (2477 open-input-file 2476 ())
  4835. (2478 channel-ports #f ())
  4836. (2479 really-open-input-file 2478 ())
  4837. (2480 channel-ports #f ())
  4838. (2481 maybe-open-file 2480 ())
  4839. (2482 #f 2481 ())
  4840. (2483 #f 2481 ())
  4841. (2484 channel-ports #f ())
  4842. (2485 real-output-channel->port 2484 ())
  4843. (2486 channel-ports #f ())
  4844. (2487 output-channel+closer->port 2486 ())
  4845. (2488 channel-ports #f ())
  4846. (2489 output-channel->port 2488 ())
  4847. (2490 channel-ports #f ())
  4848. (2491 #f 2490 ())
  4849. (2492 channel-ports #f ())
  4850. (2493 send-some 2492 ())
  4851. (2494 channel-ports #f ())
  4852. (2495 empty-buffer! 2494 ())
  4853. (2496 channel-ports #f ())
  4854. (2497 real-input-channel->port 2496 ())
  4855. (2498 channel-ports #f ())
  4856. (2499 input-channel+closer->port 2498 ())
  4857. (2500 channel-ports #f ())
  4858. (2501 input-channel->port 2500 ())
  4859. (2502 channel-ports #f ())
  4860. (2503 #f 2502 ())
  4861. (2504 channel-ports #f ())
  4862. (2505 channel-port-ready? 2504 ())
  4863. (2506 channel-ports #f ())
  4864. (2507 fill-buffer! 2506 ())
  4865. (2508 channel-ports #f ())
  4866. (2509 port-channel-closer 2508 ())
  4867. (2510 channel-ports #f ())
  4868. (2511 port->channel 2510 ())
  4869. (2512 channel-ports #f ())
  4870. (2513 make-channel-cell 2512 ())
  4871. (2514 channel-ports #f ())
  4872. (2515 channel-cell-ref 2514 ())
  4873. (2516 channel-ports #f ())
  4874. (2517 channel-cell-closer 2516 ())
  4875. (2518 channel-ports #f ())
  4876. (2519 channel-cell-condvar 2518 ())
  4877. (2520 channel-ports #f ())
  4878. (2521 set-channel-cell-in-use?! 2520 ())
  4879. (2522 channel-ports #f ())
  4880. (2523 channel-cell-in-use? 2522 ())
  4881. (2524 channel-ports #f ())
  4882. (2525 set-channel-cell-sent! 2524 ())
  4883. (2526 channel-ports #f ())
  4884. (2527 channel-cell-sent 2526 ())
  4885. (2528 channel-ports #f ())
  4886. (2529 channel-cell? 2528 ())
  4887. (2530 channel-ports #f ())
  4888. (2531 really-make-channel-cell 2530 ())
  4889. (2532 channel-ports #f ())
  4890. (2533 scheme-level-2 #f ())
  4891. (2534 features #f ())
  4892. (2535 tables #f ())
  4893. (2536 tables #f ())
  4894. (2537 tables #f ())
  4895. (2538 tables #f ())
  4896. (2539 make-table 2538 ())
  4897. (2540 tables #f ())
  4898. (2541 tables #f ())
  4899. (2542 set-table-size! 2541 ())
  4900. (2543 tables #f ())
  4901. (2544 table-size 2543 ())
  4902. (2545 tables #f ())
  4903. (2546 set-table-data! 2545 ())
  4904. (2547 tables #f ())
  4905. (2548 table-data 2547 ())
  4906. (2549 tables #f ())
  4907. (2550 set-table-ref-procedure! 2549 ())
  4908. (2551 tables #f ())
  4909. (2552 table-ref-procedure 2551 ())
  4910. (2553 tables #f ())
  4911. (2554 set-table-set!-procedure! 2553 ())
  4912. (2555 tables #f ())
  4913. (2556 table-set!-procedure 2555 ())
  4914. (2557 tables #f ())
  4915. (2558 really-make-table 2557 ())
  4916. (2559 tables #f ())
  4917. (2560 tables #f ())
  4918. (2561 table? 2560 ())
  4919. (2562 tables #f ())
  4920. (2563 table-ref 2562 ())
  4921. (2564 tables #f ())
  4922. (2565 table-set! 2564 ())
  4923. (2566 tables #f ())
  4924. (2567 next-table-size 2566 ())
  4925. (2568 tables #f ())
  4926. (2569 set-entry-value! 2568 ())
  4927. (2570 tables #f ())
  4928. (2571 delete-entry! 2570 ())
  4929. (2572 loop 2571 ())
  4930. (2573 tables #f ())
  4931. (2574 new-entry 2573 ())
  4932. (2575 tables #f ())
  4933. (2576 make-linear-table-set! 2575 ())
  4934. (2577 #f 2576 ())
  4935. (2578 tables #f ())
  4936. (2579 table-expand-table! 2578 ())
  4937. (2580 tables #f ())
  4938. (2581 table-enter-alist! 2580 ())
  4939. (2582 loop##259 2581 ())
  4940. (2583 tables #f ())
  4941. (2584 entry-value 2583 ())
  4942. (2585 tables #f ())
  4943. (2586 make-hash-table-ref 2585 ())
  4944. (2587 #f 2586 ())
  4945. (2588 tables #f ())
  4946. (2589 expand-hash-table! 2588 ())
  4947. (2590 loop##261 2589 ())
  4948. (2591 tables #f ())
  4949. (2592 make-hash-table-set! 2591 ())
  4950. (2593 #f 2592 ())
  4951. (2594 tables #f ())
  4952. (2595 make->hash-table 2594 ())
  4953. (2596 #f 2595 ())
  4954. (2597 tables #f ())
  4955. (2598 make-linear-table-ref 2597 ())
  4956. (2599 #f 2598 ())
  4957. (2600 tables #f ())
  4958. (2601 assoc->table-maker 2600 ())
  4959. (2602 #f 2601 ())
  4960. (2603 tables #f ())
  4961. (2604 make-assoc 2603 ())
  4962. (2605 #f 2604 ())
  4963. (2606 loop 2605 ())
  4964. (2607 tables #f ())
  4965. (2608 make-table-maker 2607 ())
  4966. (2609 tables #f ())
  4967. (2610 entry-key 2609 ())
  4968. (2611 tables #f ())
  4969. (2612 alist-walk 2611 ())
  4970. (2613 loop##263 2612 ())
  4971. (2614 tables #f ())
  4972. (2615 really-table-walk 2614 ())
  4973. (2616 loop##266 2615 ())
  4974. (2617 tables #f ())
  4975. (2618 table-walk 2617 ())
  4976. (2619 #f 2618 ())
  4977. (2620 tables #f ())
  4978. (2621 make-table-immutable! 2620 ())
  4979. (2622 tables #f ())
  4980. (2623 table->entry-list 2622 ())
  4981. (2624 #f 2623 ())
  4982. (2625 tables #f ())
  4983. (2626 default-hash-function 2625 ())
  4984. (2627 tables #f ())
  4985. (2628 default-table-assoc 2627 ())
  4986. (2629 tables #f ())
  4987. (2630 symbol-hash 2629 ())
  4988. (2631 tables #f ())
  4989. (2632 tables #f ())
  4990. (2633 weak #f ())
  4991. (2634 walk-population 2633 ())
  4992. (2635 #f 2634 ())
  4993. (2636 weak #f ())
  4994. (2637 population->list 2636 ())
  4995. (2638 weak #f ())
  4996. (2639 population-reduce 2638 ())
  4997. (2640 loop##268 2639 ())
  4998. (2641 weak #f ())
  4999. (2642 weak-memq 2641 ())
  5000. (2643 weak #f ())
  5001. (2644 add-to-population! 2643 ())
  5002. (2645 weak #f ())
  5003. (2646 make-population 2645 ())
  5004. (2647 meta-types #f ())
  5005. (2648 meta-types #f ())
  5006. (2649 meta-types #f ())
  5007. (2650 meta-types #f ())
  5008. (2651 meta-types #f ())
  5009. (2652 meta-types #f ())
  5010. (2653 meta-types #f ())
  5011. (2654 meta-types #f ())
  5012. (2655 meta-types #f ())
  5013. (2656 meta-types #f ())
  5014. (2657 meta-types #f ())
  5015. (2658 meta-types #f ())
  5016. (2659 meta-types #f ())
  5017. (2660 meta-types #f ())
  5018. (2661 meta-types #f ())
  5019. (2662 meta-types #f ())
  5020. (2663 meta-types #f ())
  5021. (2664 meta-types #f ())
  5022. (2665 meta-types #f ())
  5023. (2666 meta-types #f ())
  5024. (2667 meta-types #f ())
  5025. (2668 meta-types #f ())
  5026. (2669 meta-types #f ())
  5027. (2670 meta-types #f ())
  5028. (2671 meta-types #f ())
  5029. (2672 meta-types #f ())
  5030. (2673 meta-types #f ())
  5031. (2674 meta-types #f ())
  5032. (2675 meta-types #f ())
  5033. (2676 meta-types #f ())
  5034. (2677 loop 2676 ())
  5035. (2678 meta-types #f ())
  5036. (2679 meta-types #f ())
  5037. (2680 meta-types #f ())
  5038. (2681 meta-types #f ())
  5039. (2682 meta-types #f ())
  5040. (2683 meta-types #f ())
  5041. (2684 meta-types #f ())
  5042. (2685 meta-types #f ())
  5043. (2686 meta-types #f ())
  5044. (2687 meta-types #f ())
  5045. (2688 meta-types #f ())
  5046. (2689 meta-types #f ())
  5047. (2690 meta-types #f ())
  5048. (2691 meta-types #f ())
  5049. (2692 meta-types #f ())
  5050. (2693 meta-types #f ())
  5051. (2694 meta-types #f ())
  5052. (2695 meta-types #f ())
  5053. (2696 meta-types #f ())
  5054. (2697 meta-types #f ())
  5055. (2698 #f 2697 ())
  5056. (2699 meta-types #f ())
  5057. (2700 type-mask 2699 ())
  5058. (2701 meta-types #f ())
  5059. (2702 type-more 2701 ())
  5060. (2703 meta-types #f ())
  5061. (2704 type-info 2703 ())
  5062. (2705 meta-types #f ())
  5063. (2706 really-make-type 2705 ())
  5064. (2707 meta-types #f ())
  5065. (2708 meta-types #f ())
  5066. (2709 meta-type? 2708 ())
  5067. (2710 meta-types #f ())
  5068. (2711 make-type 2710 ())
  5069. (2712 meta-types #f ())
  5070. (2713 set-type-name! 2712 ())
  5071. (2714 meta-types #f ())
  5072. (2715 make-other-type 2714 ())
  5073. (2716 meta-types #f ())
  5074. (2717 name->type 2716 ())
  5075. (2718 meta-types #f ())
  5076. (2719 new-type-bit 2718 ())
  5077. (2720 meta-types #f ())
  5078. (2721 mask->type 2720 ())
  5079. (2722 meta-types #f ())
  5080. (2723 bottom-type? 2722 ())
  5081. (2724 meta-types #f ())
  5082. (2725 new-atomic-type 2724 ())
  5083. (2726 meta-types #f ())
  5084. (2727 named-atomic-type 2726 ())
  5085. (2728 meta-types #f ())
  5086. (2729 empty-rail-type? 2728 ())
  5087. (2730 meta-types #f ())
  5088. (2731 rest-type? 2730 ())
  5089. (2732 meta-types #f ())
  5090. (2733 same-type? 2732 ())
  5091. (2734 meta-types #f ())
  5092. (2735 head-type 2734 ())
  5093. (2736 meta-types #f ())
  5094. (2737 optional-type? 2736 ())
  5095. (2738 meta-types #f ())
  5096. (2739 rail-type 2738 ())
  5097. (2740 meta-types #f ())
  5098. (2741 make-optional-type 2740 ())
  5099. (2742 meta-types #f ())
  5100. (2743 make-rest-type 2742 ())
  5101. (2744 meta-types #f ())
  5102. (2745 head-type-really 2744 ())
  5103. (2746 meta-types #f ())
  5104. (2747 tail-type 2746 ())
  5105. (2748 meta-types #f ())
  5106. (2749 value-type? 2748 ())
  5107. (2750 meta-types #f ())
  5108. (2751 other-type-info 2750 ())
  5109. (2752 meta-types #f ())
  5110. (2753 restrictive? 2752 ())
  5111. (2754 meta-types #f ())
  5112. (2755 make-procedure-type 2754 ())
  5113. (2756 meta-types #f ())
  5114. (2757 procedure-type-domain 2756 ())
  5115. (2758 meta-types #f ())
  5116. (2759 procedure-type-codomain 2758 ())
  5117. (2760 meta-types #f ())
  5118. (2761 meet-procedure 2760 ())
  5119. (2762 meta-types #f ())
  5120. (2763 meet-rail 2762 ())
  5121. (2764 meta-types #f ())
  5122. (2765 meet-type 2764 ())
  5123. (2766 meta-types #f ())
  5124. (2767 subtype? 2766 ())
  5125. (2768 meta-types #f ())
  5126. (2769 meet-procedure? 2768 ())
  5127. (2770 meta-types #f ())
  5128. (2771 meet? 2770 ())
  5129. (2772 meta-types #f ())
  5130. (2773 procedure-type? 2772 ())
  5131. (2774 meta-types #f ())
  5132. (2775 join-procedure 2774 ())
  5133. (2776 meta-types #f ())
  5134. (2777 join-rail 2776 ())
  5135. (2778 meta-types #f ())
  5136. (2779 join-type 2778 ())
  5137. (2780 meta-types #f ())
  5138. (2781 procedure-type 2780 ())
  5139. (2782 meta-types #f ())
  5140. (2783 variable-type 2782 ())
  5141. (2784 meta-types #f ())
  5142. (2785 sexp->values-type 2784 ())
  5143. (2786 meta-types #f ())
  5144. (2787 sexp->type 2786 ())
  5145. (2788 #f 2787 ())
  5146. (2789 #f 2787 ())
  5147. (2790 meta-types #f ())
  5148. (2791 variable-type? 2790 ())
  5149. (2792 meta-types #f ())
  5150. (2793 disjoin-rest 2792 ())
  5151. (2794 meta-types #f ())
  5152. (2795 disjoin-type 2794 ())
  5153. (2796 loop##292 2795 ())
  5154. (2797 meta-types #f ())
  5155. (2798 atomic-type->sexp 2797 ())
  5156. (2799 meta-types #f ())
  5157. (2800 rail-type->sexp 2799 ())
  5158. (2801 recur 2800 ())
  5159. (2802 meta-types #f ())
  5160. (2803 type->sexp 2802 ())
  5161. (2804 #f 2803 ())
  5162. (2805 meta-types #f ())
  5163. (2806 make-some-values-type 2805 ())
  5164. (2807 meta-types #f ())
  5165. (2808 fixed-arity-procedure-type? 2807 ())
  5166. (2809 loop 2808 ())
  5167. (2810 meta-types #f ())
  5168. (2811 procedure-type-arity 2810 ())
  5169. (2812 loop##295 2811 ())
  5170. (2813 meta-types #f ())
  5171. (2814 procedure-type-argument-types 2813 ())
  5172. (2815 recur 2814 ())
  5173. (2816 meta-types #f ())
  5174. (2817 compatible-types? 2816 ())
  5175. (2818 meta-types #f ())
  5176. (2819 meta-types #f ())
  5177. (2820 meta-types #f ())
  5178. (2821 interfaces #f ())
  5179. (2822 #f 2821 ())
  5180. (2823 interfaces #f ())
  5181. (2824 ref-method 2823 ())
  5182. (2825 interfaces #f ())
  5183. (2826 walk-method 2825 ())
  5184. (2827 interfaces #f ())
  5185. (2828 interface-clients 2827 ())
  5186. (2829 interfaces #f ())
  5187. (2830 set-interface-name! 2829 ())
  5188. (2831 interfaces #f ())
  5189. (2832 interface-name 2831 ())
  5190. (2833 interfaces #f ())
  5191. (2834 really-make-interface 2833 ())
  5192. (2835 interfaces #f ())
  5193. (2836 interfaces #f ())
  5194. (2837 interface? 2836 ())
  5195. (2838 interfaces #f ())
  5196. (2839 make-interface 2838 ())
  5197. (2840 interfaces #f ())
  5198. (2841 interface-ref 2840 ())
  5199. (2842 interfaces #f ())
  5200. (2843 interface-member? 2842 ())
  5201. (2844 #f 2843 ())
  5202. (2845 #f 2843 ())
  5203. (2846 interfaces #f ())
  5204. (2847 for-each-declaration 2846 ())
  5205. (2848 interfaces #f ())
  5206. (2849 note-reference-to-interface! 2848 ())
  5207. (2850 interfaces #f ())
  5208. (2851 note-interface-name! 2850 ())
  5209. (2852 interfaces #f ())
  5210. (2853 make-simple-interface-table 2852 ())
  5211. (2854 #f 2853 ())
  5212. (2855 #f 2854 ())
  5213. (2856 interfaces #f ())
  5214. (2857 make-simple-interface 2856 ())
  5215. (2858 #f 2857 ())
  5216. (2859 #f 2857 ())
  5217. (2860 #f 2859 ())
  5218. (2861 interfaces #f ())
  5219. (2862 make-compound-interface 2861 ())
  5220. (2863 #f 2862 ())
  5221. (2864 loop 2863 ())
  5222. (2865 #f 2864 ())
  5223. (2866 #f 2864 ())
  5224. (2867 #f 2862 ())
  5225. (2868 #f 2867 ())
  5226. (2869 #f 2862 ())
  5227. (2870 interfaces #f ())
  5228. (2871 proper-list? 2870 ())
  5229. (2872 interfaces #f ())
  5230. (2873 okay-command? 2872 ())
  5231. (2874 #f 2873 ())
  5232. (2875 interfaces #f ())
  5233. (2876 symbol-append 2875 ())
  5234. (2877 interfaces #f ())
  5235. (2878 process-prefix 2877 ())
  5236. (2879 #f 2878 ())
  5237. (2880 #f 2878 ())
  5238. (2881 interfaces #f ())
  5239. (2882 prefix-match? 2881 ())
  5240. (2883 loop 2882 ())
  5241. (2884 interfaces #f ())
  5242. (2885 remove-prefix 2884 ())
  5243. (2886 interfaces #f ())
  5244. (2887 interface-lookup 2886 ())
  5245. (2888 interfaces #f ())
  5246. (2889 process-expose 2888 ())
  5247. (2890 loop 2889 ())
  5248. (2891 interfaces #f ())
  5249. (2892 process-hide 2891 ())
  5250. (2893 interfaces #f ())
  5251. (2894 process-alias 2893 ())
  5252. (2895 #f 2894 ())
  5253. (2896 interfaces #f ())
  5254. (2897 process-rename 2896 ())
  5255. (2898 #f 2897 ())
  5256. (2899 interfaces #f ())
  5257. (2900 process-commands 2899 ())
  5258. (2901 loop 2900 ())
  5259. (2902 #f 2901 ())
  5260. (2903 #f 2901 ())
  5261. (2904 #f 2901 ())
  5262. (2905 interfaces #f ())
  5263. (2906 make-lookup 2905 ())
  5264. (2907 #f 2906 ())
  5265. (2908 interfaces #f ())
  5266. (2909 cdr-assq 2908 ())
  5267. (2910 loop 2909 ())
  5268. (2911 interfaces #f ())
  5269. (2912 make-default-walker 2911 ())
  5270. (2913 #f 2912 ())
  5271. (2914 #f 2913 ())
  5272. (2915 interfaces #f ())
  5273. (2916 make-alist-walker 2915 ())
  5274. (2917 #f 2916 ())
  5275. (2918 #f 2917 ())
  5276. (2919 #f 2918 ())
  5277. (2920 #f 2918 ())
  5278. (2921 interfaces #f ())
  5279. (2922 make-modified-interface-maker 2921 ())
  5280. (2923 #f 2922 ())
  5281. (2924 #f 2923 ())
  5282. (2925 #f 2922 ())
  5283. (2926 bindings #f ())
  5284. (2927 bindings #f ())
  5285. (2928 binding-type 2927 ())
  5286. (2929 bindings #f ())
  5287. (2930 binding-place 2929 ())
  5288. (2931 bindings #f ())
  5289. (2932 binding-static 2931 ())
  5290. (2933 bindings #f ())
  5291. (2934 binding-path 2933 ())
  5292. (2935 bindings #f ())
  5293. (2936 set-binding-place! 2935 ())
  5294. (2937 bindings #f ())
  5295. (2938 make-binding 2937 ())
  5296. (2939 bindings #f ())
  5297. (2940 add-path 2939 ())
  5298. (2941 bindings #f ())
  5299. (2942 clobber-binding! 2941 ())
  5300. (2943 bindings #f ())
  5301. (2944 impose-type 2943 ())
  5302. (2945 bindings #f ())
  5303. (2946 forget-integration 2945 ())
  5304. (2947 bindings #f ())
  5305. (2948 same-denotation? 2947 ())
  5306. (2949 bindings #f ())
  5307. (2950 follow-forwarding-pointers 2949 ())
  5308. (2951 bindings #f ())
  5309. (2952 maybe-fix-place! 2951 ())
  5310. (2953 names #f ())
  5311. (2954 #f 2953 ())
  5312. (2955 names #f ())
  5313. (2956 transform-procedure 2955 ())
  5314. (2957 names #f ())
  5315. (2958 transform-env 2957 ())
  5316. (2959 names #f ())
  5317. (2960 transform-type 2959 ())
  5318. (2961 names #f ())
  5319. (2962 transform-aux-names 2961 ())
  5320. (2963 names #f ())
  5321. (2964 transform-source 2963 ())
  5322. (2965 names #f ())
  5323. (2966 transform-id 2965 ())
  5324. (2967 names #f ())
  5325. (2968 really-make-transform 2967 ())
  5326. (2969 names #f ())
  5327. (2970 names #f ())
  5328. (2971 names #f ())
  5329. (2972 #f 2971 ())
  5330. (2973 names #f ())
  5331. (2974 generated-name 2973 ())
  5332. (2975 names #f ())
  5333. (2976 generated-token 2975 ())
  5334. (2977 names #f ())
  5335. (2978 generated-env 2977 ())
  5336. (2979 names #f ())
  5337. (2980 generated-parent-name 2979 ())
  5338. (2981 names #f ())
  5339. (2982 make-generated 2981 ())
  5340. (2983 names #f ())
  5341. (2984 names #f ())
  5342. (2985 generated? 2984 ())
  5343. (2986 names #f ())
  5344. (2987 name? 2986 ())
  5345. (2988 names #f ())
  5346. (2989 generate-name 2988 ())
  5347. (2990 names #f ())
  5348. (2991 generated-uid 2990 ())
  5349. (2992 names #f ())
  5350. (2993 name->symbol 2992 ())
  5351. (2994 names #f ())
  5352. (2995 name-hash 2994 ())
  5353. (2996 names #f ())
  5354. (2997 desyntaxify 2996 ())
  5355. (2998 loop 2997 ())
  5356. (2999 names #f ())
  5357. (3000 make-qualified 2999 ())
  5358. (3001 names #f ())
  5359. (3002 qualified? 3001 ())
  5360. (3003 names #f ())
  5361. (3004 qualified-parent-name 3003 ())
  5362. (3005 names #f ())
  5363. (3006 qualified-symbol 3005 ())
  5364. (3007 names #f ())
  5365. (3008 qualified-uid 3007 ())
  5366. (3009 names #f ())
  5367. (3010 lookup 3009 ())
  5368. (3011 names #f ())
  5369. (3012 qualify-parent 3011 ())
  5370. (3013 recur 3012 ())
  5371. (3014 names #f ())
  5372. (3015 name->qualified 3014 ())
  5373. (3016 names #f ())
  5374. (3017 transform? 3016 ())
  5375. (3018 names #f ())
  5376. (3019 make-transform 3018 ())
  5377. (3020 names #f ())
  5378. (3021 name->source-name 3020 ())
  5379. (3022 names #f ())
  5380. (3023 make-keyword-comparator 3022 ())
  5381. (3024 #f 3023 ())
  5382. (3025 names #f ())
  5383. (3026 make-name-generator 3025 ())
  5384. (3027 #f 3026 ())
  5385. (3028 names #f ())
  5386. (3029 bind-aliases 3028 ())
  5387. (3030 #f 3029 ())
  5388. (3031 names #f ())
  5389. (3032 maybe-apply-macro-transform 3031 ())
  5390. (3033 names #f ())
  5391. (3034 apply-inline-transform 3033 ())
  5392. (3035 names #f ())
  5393. (3036 compiler-envs #f ())
  5394. (3037 compiler-envs #f ())
  5395. (3038 compiler-envs #f ())
  5396. (3039 compiler-envs #f ())
  5397. (3040 compiler-envs #f ())
  5398. (3041 lookup 3040 ())
  5399. (3042 compiler-envs #f ())
  5400. (3043 bind1 3042 ())
  5401. (3044 #f 3043 ())
  5402. (3045 compiler-envs #f ())
  5403. (3046 bind 3045 ())
  5404. (3047 compiler-envs #f ())
  5405. (3048 bindrec 3047 ())
  5406. (3049 #f 3048 ())
  5407. (3050 compiler-envs #f ())
  5408. (3051 make-compiler-env 3050 ())
  5409. (3052 #f 3051 ())
  5410. (3053 compiler-envs #f ())
  5411. (3054 environment-macro-eval 3053 ())
  5412. (3055 compiler-envs #f ())
  5413. (3056 environment-define! 3055 ())
  5414. (3057 compiler-envs #f ())
  5415. (3058 extract-package-from-environment 3057 ())
  5416. (3059 compiler-envs #f ())
  5417. (3060 bind-source-file-name 3059 ())
  5418. (3061 compiler-envs #f ())
  5419. (3062 source-file-name 3061 ())
  5420. (3063 thingies #f ())
  5421. (3064 thingie-binding 3063 ())
  5422. (3065 thingies #f ())
  5423. (3066 thingie-name 3065 ())
  5424. (3067 thingies #f ())
  5425. (3068 thingie-want-type 3067 ())
  5426. (3069 thingies #f ())
  5427. (3070 make-thingie 3069 ())
  5428. (3071 thingies #f ())
  5429. (3072 thingies #f ())
  5430. (3073 thingie? 3072 ())
  5431. (3074 packages #f ())
  5432. (3075 #f 3074 ())
  5433. (3076 packages #f ())
  5434. (3077 packages #f ())
  5435. (3078 packages #f ())
  5436. (3079 packages #f ())
  5437. (3080 packages #f ())
  5438. (3081 packages #f ())
  5439. (3082 packages #f ())
  5440. (3083 packages #f ())
  5441. (3084 #f 3083 ())
  5442. (3085 packages #f ())
  5443. (3086 package-uid 3085 ())
  5444. (3087 packages #f ())
  5445. (3088 set-package-opens! 3087 ())
  5446. (3089 packages #f ())
  5447. (3090 package-opens-really 3089 ())
  5448. (3091 packages #f ())
  5449. (3092 package-definitions 3091 ())
  5450. (3093 packages #f ())
  5451. (3094 package-unstable? 3093 ())
  5452. (3095 packages #f ())
  5453. (3096 set-package-integrate?! 3095 ())
  5454. (3097 packages #f ())
  5455. (3098 package-integrate? 3097 ())
  5456. (3099 packages #f ())
  5457. (3100 set-package-get-location! 3099 ())
  5458. (3101 packages #f ())
  5459. (3102 package-get-location 3101 ())
  5460. (3103 packages #f ())
  5461. (3104 package-file-name 3103 ())
  5462. (3105 packages #f ())
  5463. (3106 package-clauses 3105 ())
  5464. (3107 packages #f ())
  5465. (3108 set-package-loaded?! 3107 ())
  5466. (3109 packages #f ())
  5467. (3110 package-loaded? 3109 ())
  5468. (3111 packages #f ())
  5469. (3112 set-package->environment! 3111 ())
  5470. (3113 packages #f ())
  5471. (3114 package->environment 3113 ())
  5472. (3115 packages #f ())
  5473. (3116 set-package-opens-thunk! 3115 ())
  5474. (3117 packages #f ())
  5475. (3118 package-opens-thunk 3117 ())
  5476. (3119 packages #f ())
  5477. (3120 package-accesses-thunk 3119 ())
  5478. (3121 packages #f ())
  5479. (3122 set-package-undefineds! 3121 ())
  5480. (3123 packages #f ())
  5481. (3124 package-real-undefineds 3123 ())
  5482. (3125 packages #f ())
  5483. (3126 set-package-undefined-but-assigneds! 3125 ())
  5484. (3127 packages #f ())
  5485. (3128 package-real-undefined-but-assigneds 3127 ())
  5486. (3129 packages #f ())
  5487. (3130 package-clients 3129 ())
  5488. (3131 packages #f ())
  5489. (3132 package-cached 3131 ())
  5490. (3133 packages #f ())
  5491. (3134 really-make-package 3133 ())
  5492. (3135 packages #f ())
  5493. (3136 packages #f ())
  5494. (3137 #f 3136 ())
  5495. (3138 packages #f ())
  5496. (3139 structure-interface-thunk 3138 ())
  5497. (3140 packages #f ())
  5498. (3141 set-structure-interface! 3140 ())
  5499. (3142 packages #f ())
  5500. (3143 structure-interface-really 3142 ())
  5501. (3144 packages #f ())
  5502. (3145 structure-package 3144 ())
  5503. (3146 packages #f ())
  5504. (3147 structure-clients 3146 ())
  5505. (3148 packages #f ())
  5506. (3149 set-structure-name! 3148 ())
  5507. (3150 packages #f ())
  5508. (3151 structure-name 3150 ())
  5509. (3152 packages #f ())
  5510. (3153 really-make-structure 3152 ())
  5511. (3154 packages #f ())
  5512. (3155 packages #f ())
  5513. (3156 structure? 3155 ())
  5514. (3157 packages #f ())
  5515. (3158 initialize-structure! 3157 ())
  5516. (3159 packages #f ())
  5517. (3160 structure-interface 3159 ())
  5518. (3161 packages #f ())
  5519. (3162 package? 3161 ())
  5520. (3163 packages #f ())
  5521. (3164 note-package-name! 3163 ())
  5522. (3165 packages #f ())
  5523. (3166 note-structure-name! 3165 ())
  5524. (3167 packages #f ())
  5525. (3168 make-structure 3167 ())
  5526. (3169 #f 3168 ())
  5527. (3170 packages #f ())
  5528. (3171 structure-unstable? 3170 ())
  5529. (3172 packages #f ())
  5530. (3173 make-modified-structure 3172 ())
  5531. (3174 #f 3173 ())
  5532. (3175 packages #f ())
  5533. (3176 get-new-location 3175 ())
  5534. (3177 packages #f ())
  5535. (3178 package-define! 3177 ())
  5536. (3179 packages #f ())
  5537. (3180 package-accesses 3179 ())
  5538. (3181 packages #f ())
  5539. (3182 initialize-package! 3181 ())
  5540. (3183 #f 3182 ())
  5541. (3184 #f 3182 ())
  5542. (3185 packages #f ())
  5543. (3186 initialize-package-if-necessary! 3185 ())
  5544. (3187 packages #f ())
  5545. (3188 package-definition 3187 ())
  5546. (3189 packages #f ())
  5547. (3190 search-opens 3189 ())
  5548. (3191 loop 3190 ())
  5549. (3192 packages #f ())
  5550. (3193 structure-lookup 3192 ())
  5551. (3194 #f 3193 ())
  5552. (3195 #f 3193 ())
  5553. (3196 packages #f ())
  5554. (3197 package-lookup 3196 ())
  5555. (3198 packages #f ())
  5556. (3199 generic-lookup 3198 ())
  5557. (3200 packages #f ())
  5558. (3201 really-package-lookup 3200 ())
  5559. (3202 packages #f ())
  5560. (3203 real-structure-lookup 3202 ())
  5561. (3204 packages #f ())
  5562. (3205 for-each-export 3204 ())
  5563. (3206 #f 3205 ())
  5564. (3207 packages #f ())
  5565. (3208 really-package->environment 3207 ())
  5566. (3209 #f 3208 ())
  5567. (3210 #f 3208 ())
  5568. (3211 packages #f ())
  5569. (3212 new-package-uid 3211 ())
  5570. (3213 packages #f ())
  5571. (3214 make-package 3213 ())
  5572. (3215 packages #f ())
  5573. (3216 lazy-table-accessor 3215 ())
  5574. (3217 #f 3216 ())
  5575. (3218 packages #f ())
  5576. (3219 package-name 3218 ())
  5577. (3220 packages #f ())
  5578. (3221 package-opens 3220 ())
  5579. (3222 packages #f ())
  5580. (3223 make-simple-package 3222 ())
  5581. (3224 #f 3223 ())
  5582. (3225 #f 3223 ())
  5583. (3226 packages #f ())
  5584. (3227 package-add-static! 3226 ())
  5585. (3228 packages #f ())
  5586. (3229 package-refine-type! 3228 ())
  5587. (3230 packages #f ())
  5588. (3231 for-each-definition 3230 ())
  5589. (3232 #f 3231 ())
  5590. (3233 packages #f ())
  5591. (3234 make-new-location 3233 ())
  5592. (3235 packages #f ())
  5593. (3236 flush-location-names 3235 ())
  5594. (3237 packages #f ())
  5595. (3238 print-undefined-names 3237 ())
  5596. (3239 #f 3238 ())
  5597. (3240 #f 3238 ())
  5598. (3241 packages #f ())
  5599. (3242 noting-undefined-variables 3241 ())
  5600. (3243 add-name 3242 ())
  5601. (3244 #f 3242 ())
  5602. (3245 #f 3242 ())
  5603. (3246 #f 3245 ())
  5604. (3247 #f 3245 ())
  5605. (3248 #f 3247 ())
  5606. (3249 packages #f ())
  5607. (3250 cenv->package 3249 ())
  5608. (3251 packages #f ())
  5609. (3252 get-location-for-unassignable 3251 ())
  5610. (3253 #f 3252 ())
  5611. (3254 #f 3252 ())
  5612. (3255 packages #f ())
  5613. (3256 package-note-caching! 3255 ())
  5614. (3257 loop 3256 ())
  5615. (3258 packages #f ())
  5616. (3259 note-caching! 3258 ())
  5617. (3260 packages #f ())
  5618. (3261 location-for-reference 3260 ())
  5619. (3262 loop 3261 ())
  5620. (3263 packages #f ())
  5621. (3264 get-location-for-undefined 3263 ())
  5622. (3265 #f 3264 ())
  5623. (3266 packages #f ())
  5624. (3267 get-location 3266 ())
  5625. (3268 packages #f ())
  5626. (3269 really-link! 3268 ())
  5627. (3270 loop##451 3269 ())
  5628. (3271 packages #f ())
  5629. (3272 link! 3271 ())
  5630. (3273 #f 3272 ())
  5631. (3274 packages #f ())
  5632. (3275 location-on-demand 3274 ())
  5633. (3276 #f 3275 ())
  5634. (3277 packages #f ())
  5635. (3278 packages #f ())
  5636. (3279 environments #f ())
  5637. (3280 set-reflective-tower-maker! 3279 ())
  5638. (3281 environments #f ())
  5639. (3282 make-reflective-tower 3281 ())
  5640. (3283 recur 3282 ())
  5641. (3284 #f 3283 ())
  5642. (3285 environments #f ())
  5643. (3286 null-environment 3285 ())
  5644. (3287 environments #f ())
  5645. (3288 set-scheme-report-environment! 3287 ())
  5646. (3289 environments #f ())
  5647. (3290 environments #f ())
  5648. (3291 environments #f ())
  5649. (3292 environments #f ())
  5650. (3293 scheme-report-environment 3292 ())
  5651. (3294 environments #f ())
  5652. (3295 with-interaction-environment 3294 ())
  5653. (3296 environments #f ())
  5654. (3297 set-interaction-environment! 3296 ())
  5655. (3298 environments #f ())
  5656. (3299 interaction-environment 3298 ())
  5657. (3300 environments #f ())
  5658. (3301 environments #f ())
  5659. (3302 carefully 3301 ())
  5660. (3303 environments #f ())
  5661. (3304 *structure-ref 3303 ())
  5662. (3305 environments #f ())
  5663. (3306 environment-define! 3305 ())
  5664. (3307 environments #f ())
  5665. (3308 environment-set! 3307 ())
  5666. (3309 #f 3308 ())
  5667. (3310 environments #f ())
  5668. (3311 environment-ref 3310 ())
  5669. (3312 #f 3311 ())
  5670. (3313 filenames #f ())
  5671. (3314 translate 3313 ())
  5672. (3315 loop 3314 ())
  5673. (3316 filenames #f ())
  5674. (3317 set-translation! 3316 ())
  5675. (3318 filenames #f ())
  5676. (3319 translations 3318 ())
  5677. (3320 filenames #f ())
  5678. (3321 filenames #f ())
  5679. (3322 string-posq 3321 ())
  5680. (3323 loop 3322 ())
  5681. (3324 filenames #f ())
  5682. (3325 file-nondirectory-position 3324 ())
  5683. (3326 loop 3325 ())
  5684. (3327 filenames #f ())
  5685. (3328 file-name-nondirectory 3327 ())
  5686. (3329 filenames #f ())
  5687. (3330 file-name-directory 3329 ())
  5688. (3331 filenames #f ())
  5689. (3332 filenames #f ())
  5690. (3333 filenames #f ())
  5691. (3334 filenames #f ())
  5692. (3335 namestring-component 3334 ())
  5693. (3336 filenames #f ())
  5694. (3337 filenames #f ())
  5695. (3338 filenames #f ())
  5696. (3339 namestring 3338 ())
  5697. (3340 #f 3339 ())
  5698. (3341 reading-forms #f ())
  5699. (3342 skip-line 3341 ())
  5700. (3343 loop 3342 ())
  5701. (3344 reading-forms #f ())
  5702. (3345 really-read-forms 3344 ())
  5703. (3346 loop 3345 ())
  5704. (3347 reading-forms #f ())
  5705. (3348 read-forms 3347 ())
  5706. (3349 #f 3348 ())
  5707. (3350 #f 3348 ())
  5708. (3351 #f 3348 ())
  5709. (3352 reading-forms #f ())
  5710. (3353 #f 3352 ())
  5711. (3354 nodes #f ())
  5712. (3355 #f 3354 ())
  5713. (3356 nodes #f ())
  5714. (3357 #f 3356 ())
  5715. (3358 nodes #f ())
  5716. (3359 #f 3358 ())
  5717. (3360 nodes #f ())
  5718. (3361 #f 3360 ())
  5719. (3362 nodes #f ())
  5720. (3363 nodes #f ())
  5721. (3364 nodes #f ())
  5722. (3365 #f 3364 ())
  5723. (3366 #f 3365 ())
  5724. (3367 nodes #f ())
  5725. (3368 #f 3367 ())
  5726. (3369 nodes #f ())
  5727. (3370 #f 3369 ())
  5728. (3371 nodes #f ())
  5729. (3372 #f 3371 ())
  5730. (3373 nodes #f ())
  5731. (3374 #f 3373 ())
  5732. (3375 nodes #f ())
  5733. (3376 node-operator-id 3375 ())
  5734. (3377 nodes #f ())
  5735. (3378 node-form 3377 ())
  5736. (3379 nodes #f ())
  5737. (3380 set-node-plist! 3379 ())
  5738. (3381 nodes #f ())
  5739. (3382 node-plist 3381 ())
  5740. (3383 nodes #f ())
  5741. (3384 really-make-node 3383 ())
  5742. (3385 nodes #f ())
  5743. (3386 nodes #f ())
  5744. (3387 nodes #f ())
  5745. (3388 nodes #f ())
  5746. (3389 nodes #f ())
  5747. (3390 nodes #f ())
  5748. (3391 #f 3390 ())
  5749. (3392 nodes #f ())
  5750. (3393 set-operator-type! 3392 ())
  5751. (3394 nodes #f ())
  5752. (3395 operator-type 3394 ())
  5753. (3396 nodes #f ())
  5754. (3397 operator-nargs 3396 ())
  5755. (3398 nodes #f ())
  5756. (3399 operator-uid 3398 ())
  5757. (3400 nodes #f ())
  5758. (3401 operator-name 3400 ())
  5759. (3402 nodes #f ())
  5760. (3403 make-operator 3402 ())
  5761. (3404 nodes #f ())
  5762. (3405 nodes #f ())
  5763. (3406 operator? 3405 ())
  5764. (3407 nodes #f ())
  5765. (3408 get-operator 3407 ())
  5766. (3409 nodes #f ())
  5767. (3410 make-operator-table 3409 ())
  5768. (3411 nodes #f ())
  5769. (3412 operator-lookup 3411 ())
  5770. (3413 nodes #f ())
  5771. (3414 operator-define! 3413 ())
  5772. (3415 nodes #f ())
  5773. (3416 node? 3415 ())
  5774. (3417 nodes #f ())
  5775. (3418 make-node 3417 ())
  5776. (3419 nodes #f ())
  5777. (3420 node-ref 3419 ())
  5778. (3421 nodes #f ())
  5779. (3422 node-set! 3421 ())
  5780. (3423 loop 3422 ())
  5781. (3424 nodes #f ())
  5782. (3425 node-operator 3424 ())
  5783. (3426 nodes #f ())
  5784. (3427 node-predicate 3426 ())
  5785. (3428 #f 3427 ())
  5786. (3429 nodes #f ())
  5787. (3430 make-similar-node 3429 ())
  5788. (3431 nodes #f ())
  5789. (3432 force-node 3431 ())
  5790. (3433 nodes #f ())
  5791. (3434 schemify-node 3433 ())
  5792. (3435 nodes #f ())
  5793. (3436 schemify-sexp 3435 ())
  5794. (3437 loop 3436 ())
  5795. (3438 nodes #f ())
  5796. (3439 schemify 3438 ())
  5797. (3440 nodes #f ())
  5798. (3441 schemify-nodes 3440 ())
  5799. (3442 #f 3441 ())
  5800. (3443 nodes #f ())
  5801. (3444 define-schemifier 3443 ())
  5802. (3445 nodes #f ())
  5803. (3446 schemify-formals 3445 ())
  5804. (3447 nodes #f ())
  5805. (3448 schemify-lambda 3447 ())
  5806. (3449 nodes #f ())
  5807. (3450 schemify-letrec 3449 ())
  5808. (3451 #f 3450 ())
  5809. (3452 nodes #f ())
  5810. (3453 nodes #f ())
  5811. (3454 var-utilities #f ())
  5812. (3455 normalize-formals 3454 ())
  5813. (3456 var-utilities #f ())
  5814. (3457 n-ary? 3456 ())
  5815. (3458 var-utilities #f ())
  5816. (3459 number-of-required-args 3458 ())
  5817. (3460 loop##484 3459 ())
  5818. (3461 syntactic #f ())
  5819. (3462 syntactic #f ())
  5820. (3463 syntactic #f ())
  5821. (3464 syntactic #f ())
  5822. (3465 syntactic #f ())
  5823. (3466 syntactic #f ())
  5824. (3467 syntactic #f ())
  5825. (3468 syntactic #f ())
  5826. (3469 syntactic #f ())
  5827. (3470 syntactic #f ())
  5828. (3471 syntactic #f ())
  5829. (3472 syntactic #f ())
  5830. (3473 syntactic #f ())
  5831. (3474 syntactic #f ())
  5832. (3475 syntactic #f ())
  5833. (3476 syntactic #f ())
  5834. (3477 syntactic #f ())
  5835. (3478 #f 3477 ())
  5836. (3479 #f 3478 ())
  5837. (3480 syntactic #f ())
  5838. (3481 #f 3480 ())
  5839. (3482 #f 3481 ())
  5840. (3483 #f 3482 ())
  5841. (3484 syntactic #f ())
  5842. (3485 #f 3484 ())
  5843. (3486 #f 3485 ())
  5844. (3487 syntactic #f ())
  5845. (3488 #f 3487 ())
  5846. (3489 syntactic #f ())
  5847. (3490 #f 3489 ())
  5848. (3491 #f 3490 ())
  5849. (3492 syntactic #f ())
  5850. (3493 #f 3492 ())
  5851. (3494 syntactic #f ())
  5852. (3495 #f 3494 ())
  5853. (3496 syntactic #f ())
  5854. (3497 #f 3496 ())
  5855. (3498 syntactic #f ())
  5856. (3499 #f 3498 ())
  5857. (3500 syntactic #f ())
  5858. (3501 #f 3500 ())
  5859. (3502 syntactic #f ())
  5860. (3503 #f 3502 ())
  5861. (3504 syntactic #f ())
  5862. (3505 #f 3504 ())
  5863. (3506 syntactic #f ())
  5864. (3507 #f 3506 ())
  5865. (3508 syntactic #f ())
  5866. (3509 #f 3508 ())
  5867. (3510 syntactic #f ())
  5868. (3511 syntactic #f ())
  5869. (3512 syntactic #f ())
  5870. (3513 syntactic #f ())
  5871. (3514 at-least-this-long? 3513 ())
  5872. (3515 syntactic #f ())
  5873. (3516 names? 3515 ())
  5874. (3517 syntactic #f ())
  5875. (3518 destructure-define 3517 ())
  5876. (3519 syntactic #f ())
  5877. (3520 scan-define 3519 ())
  5878. (3521 syntactic #f ())
  5879. (3522 this-long? 3521 ())
  5880. (3523 syntactic #f ())
  5881. (3524 process-syntax 3523 ())
  5882. (3525 syntactic #f ())
  5883. (3526 scan-define-syntax 3525 ())
  5884. (3527 syntactic #f ())
  5885. (3528 expand-name 3527 ())
  5886. (3529 syntactic #f ())
  5887. (3530 expand-operator-form 3529 ())
  5888. (3531 syntactic #f ())
  5889. (3532 literal? 3531 ())
  5890. (3533 syntactic #f ())
  5891. (3534 expand-literal 3533 ())
  5892. (3535 syntactic #f ())
  5893. (3536 expand-list 3535 ())
  5894. (3537 #f 3536 ())
  5895. (3538 syntactic #f ())
  5896. (3539 expand-call 3538 ())
  5897. (3540 syntactic #f ())
  5898. (3541 expand 3540 ())
  5899. (3542 syntactic #f ())
  5900. (3543 expand-macro-application 3542 ())
  5901. (3544 #f 3543 ())
  5902. (3545 #f 3543 ())
  5903. (3546 syntactic #f ())
  5904. (3547 expand-structure-ref 3546 ())
  5905. (3548 struct-node 3547 ())
  5906. (3549 syntactic #f ())
  5907. (3550 expand-head 3549 ())
  5908. (3551 syntactic #f ())
  5909. (3552 scan-forms 3551 ())
  5910. (3553 loop 3552 ())
  5911. (3554 syntactic #f ())
  5912. (3555 expand-define 3554 ())
  5913. (3556 syntactic #f ())
  5914. (3557 expand-scanned-form 3556 ())
  5915. (3558 syntactic #f ())
  5916. (3559 expand-form 3558 ())
  5917. (3560 loop 3559 ())
  5918. (3561 syntactic #f ())
  5919. (3562 static-value 3561 ())
  5920. (3563 syntactic #f ())
  5921. (3564 make-operator-predicate 3563 ())
  5922. (3565 #f 3564 ())
  5923. (3566 syntactic #f ())
  5924. (3567 body-lossage 3566 ())
  5925. (3568 syntactic #f ())
  5926. (3569 scan-body-forms 3568 ())
  5927. (3570 #f 3569 ())
  5928. (3571 #f 3569 ())
  5929. (3572 syntactic #f ())
  5930. (3573 expand-letrec 3572 ())
  5931. (3574 #f 3573 ())
  5932. (3575 syntactic #f ())
  5933. (3576 expand-body 3575 ())
  5934. (3577 #f 3576 ())
  5935. (3578 #f 3577 ())
  5936. (3579 #f 3577 ())
  5937. (3580 #f 3576 ())
  5938. (3581 syntactic #f ())
  5939. (3582 define-expander 3581 ())
  5940. (3583 syntactic #f ())
  5941. (3584 unspecific-node 3583 ())
  5942. (3585 syntactic #f ())
  5943. (3586 bind-names 3585 ())
  5944. (3587 loop 3586 ())
  5945. (3588 syntactic #f ())
  5946. (3589 expand-lambda 3588 ())
  5947. (3590 #f 3589 ())
  5948. (3591 #f 3589 ())
  5949. (3592 syntactic #f ())
  5950. (3593 specs? 3592 ())
  5951. (3594 syntactic #f ())
  5952. (3595 syntax? 3594 ())
  5953. (3596 primops #f ())
  5954. (3597 primops #f ())
  5955. (3598 #f 3597 ())
  5956. (3599 primops #f ())
  5957. (3600 primop-name 3599 ())
  5958. (3601 primops #f ())
  5959. (3602 primop-type 3601 ())
  5960. (3603 primops #f ())
  5961. (3604 primop-closed 3603 ())
  5962. (3605 primops #f ())
  5963. (3606 primop-compilator 3605 ())
  5964. (3607 primops #f ())
  5965. (3608 make-primop 3607 ())
  5966. (3609 primops #f ())
  5967. (3610 primops #f ())
  5968. (3611 primop? 3610 ())
  5969. (3612 primops #f ())
  5970. (3613 walk-primops 3612 ())
  5971. (3614 #f 3613 ())
  5972. (3615 primops #f ())
  5973. (3616 define-compiler-primitive 3615 ())
  5974. (3617 primops #f ())
  5975. (3618 get-primop 3617 ())
  5976. (3619 vm-data #f ())
  5977. (3620 remove-stob-tag 3619 ())
  5978. (3621 vm-data #f ())
  5979. (3622 add-stob-tag 3621 ())
  5980. (3623 vm-data #f ())
  5981. (3624 b-vector-header? 3623 ())
  5982. (3625 vm-data #f ())
  5983. (3626 d-vector-header? 3625 ())
  5984. (3627 vm-data #f ())
  5985. (3628 header-length-in-a-units 3627 ())
  5986. (3629 vm-data #f ())
  5987. (3630 header-length-in-cells 3629 ())
  5988. (3631 vm-data #f ())
  5989. (3632 header-length-in-bytes 3631 ())
  5990. (3633 vm-data #f ())
  5991. (3634 immutable-header? 3633 ())
  5992. (3635 vm-data #f ())
  5993. (3636 header-type 3635 ())
  5994. (3637 vm-data #f ())
  5995. (3638 make-header-immutable 3637 ())
  5996. (3639 vm-data #f ())
  5997. (3640 vm-data #f ())
  5998. (3641 make-header 3640 ())
  5999. (3642 vm-data #f ())
  6000. (3643 vm-data #f ())
  6001. (3644 vm-data #f ())
  6002. (3645 vm-data #f ())
  6003. (3646 vm-data #f ())
  6004. (3647 vm-data #f ())
  6005. (3648 extract-char 3647 ())
  6006. (3649 vm-data #f ())
  6007. (3650 enter-char 3649 ())
  6008. (3651 vm-data #f ())
  6009. (3652 vm-boolean? 3651 ())
  6010. (3653 vm-data #f ())
  6011. (3654 extract-boolean 3653 ())
  6012. (3655 vm-data #f ())
  6013. (3656 enter-boolean 3655 ())
  6014. (3657 vm-data #f ())
  6015. (3658 false? 3657 ())
  6016. (3659 vm-data #f ())
  6017. (3660 vm-data #f ())
  6018. (3661 vm-data #f ())
  6019. (3662 vm-data #f ())
  6020. (3663 vm-data #f ())
  6021. (3664 vm-data #f ())
  6022. (3665 vm-data #f ())
  6023. (3666 vm-data #f ())
  6024. (3667 vm-data #f ())
  6025. (3668 vm-data #f ())
  6026. (3669 vm-data #f ())
  6027. (3670 vm-data #f ())
  6028. (3671 immediate-predicate 3670 ())
  6029. (3672 #f 3671 ())
  6030. (3673 vm-data #f ())
  6031. (3674 vm-data #f ())
  6032. (3675 vm-data #f ())
  6033. (3676 make-tag&immediate-type 3675 ())
  6034. (3677 vm-data #f ())
  6035. (3678 tag&immediate-type 3677 ())
  6036. (3679 vm-data #f ())
  6037. (3680 immediate-info 3679 ())
  6038. (3681 vm-data #f ())
  6039. (3682 immediate-type 3681 ())
  6040. (3683 vm-data #f ())
  6041. (3684 make-immediate 3683 ())
  6042. (3685 vm-data #f ())
  6043. (3686 vm-data #f ())
  6044. (3687 vm-data #f ())
  6045. (3688 vm-data #f ())
  6046. (3689 vm-data #f ())
  6047. (3690 fixnum-bitwise-not 3689 ())
  6048. (3691 vm-data #f ())
  6049. (3692 vm-data #f ())
  6050. (3693 vm-data #f ())
  6051. (3694 vm-data #f ())
  6052. (3695 vm-data #f ())
  6053. (3696 vm-data #f ())
  6054. (3697 fixnum->stob 3696 ())
  6055. (3698 vm-data #f ())
  6056. (3699 descriptor->fixnum 3698 ())
  6057. (3700 vm-data #f ())
  6058. (3701 extract-fixnum 3700 ())
  6059. (3702 vm-data #f ())
  6060. (3703 enter-fixnum 3702 ())
  6061. (3704 vm-data #f ())
  6062. (3705 too-small-for-fixnum? 3704 ())
  6063. (3706 vm-data #f ())
  6064. (3707 too-big-for-fixnum? 3706 ())
  6065. (3708 vm-data #f ())
  6066. (3709 vm-data #f ())
  6067. (3710 vm-data #f ())
  6068. (3711 vm-data #f ())
  6069. (3712 stob? 3711 ())
  6070. (3713 vm-data #f ())
  6071. (3714 header? 3713 ())
  6072. (3715 vm-data #f ())
  6073. (3716 immediate? 3715 ())
  6074. (3717 vm-data #f ())
  6075. (3718 fixnum? 3717 ())
  6076. (3719 vm-data #f ())
  6077. (3720 vm-data #f ())
  6078. (3721 vm-data #f ())
  6079. (3722 vm-data #f ())
  6080. (3723 set-descriptor-tag 3722 ())
  6081. (3724 vm-data #f ())
  6082. (3725 unsigned-descriptor-data 3724 ())
  6083. (3726 vm-data #f ())
  6084. (3727 descriptor-data 3726 ())
  6085. (3728 vm-data #f ())
  6086. (3729 descriptor-tag 3728 ())
  6087. (3730 vm-data #f ())
  6088. (3731 make-descriptor 3730 ())
  6089. (3732 vm-data #f ())
  6090. (3733 vm-data #f ())
  6091. (3734 vm-data #f ())
  6092. (3735 bytes->a-units 3734 ())
  6093. (3736 vm-data #f ())
  6094. (3737 a-units->cells 3736 ())
  6095. (3738 vm-data #f ())
  6096. (3739 cells->a-units 3738 ())
  6097. (3740 vm-data #f ())
  6098. (3741 vm-data #f ())
  6099. (3742 vm-data #f ())
  6100. (3743 cells->bytes 3742 ())
  6101. (3744 vm-data #f ())
  6102. (3745 bytes->cells 3744 ())
  6103. (3746 vm-data #f ())
  6104. (3747 vm-data #f ())
  6105. (3748 vm-data #f ())
  6106. (3749 vm-data #f ())
  6107. (3750 vm-data #f ())
  6108. (3751 vm-data #f ())
  6109. (3752 vm-data #f ())
  6110. (3753 low-bits 3752 ())
  6111. (3754 vm-data #f ())
  6112. (3755 adjoin-bits 3754 ())
  6113. (3756 vm-data #f ())
  6114. (3757 vm-data #f ())
  6115. (3758 arithmetic-shift-right 3757 ())
  6116. (3759 debug-data #f ())
  6117. (3760 debug-data #f ())
  6118. (3761 debug-data #f ())
  6119. (3762 debug-data #f ())
  6120. (3763 debug-data #f ())
  6121. (3764 debug-data #f ())
  6122. (3765 debug-data #f ())
  6123. (3766 debug-data #f ())
  6124. (3767 debug-data #f ())
  6125. (3768 debug-data #f ())
  6126. (3769 #f 3768 ())
  6127. (3770 debug-data #f ())
  6128. (3771 debug-data-uid 3770 ())
  6129. (3772 debug-data #f ())
  6130. (3773 debug-data-name 3772 ())
  6131. (3774 debug-data #f ())
  6132. (3775 debug-data-parent 3774 ())
  6133. (3776 debug-data #f ())
  6134. (3777 set-debug-data-env-maps! 3776 ())
  6135. (3778 debug-data #f ())
  6136. (3779 debug-data-env-maps 3778 ())
  6137. (3780 debug-data #f ())
  6138. (3781 set-debug-data-source! 3780 ())
  6139. (3782 debug-data #f ())
  6140. (3783 debug-data-source 3782 ())
  6141. (3784 debug-data #f ())
  6142. (3785 make-debug-data 3784 ())
  6143. (3786 debug-data #f ())
  6144. (3787 debug-data #f ())
  6145. (3788 debug-data? 3787 ())
  6146. (3789 debug-data #f ())
  6147. (3790 debug-data-env-shape 3789 ())
  6148. (3791 loop 3790 ())
  6149. (3792 debug-data #f ())
  6150. (3793 new-template-uid 3792 ())
  6151. (3794 debug-data #f ())
  6152. (3795 template-uid 3794 ())
  6153. (3796 debug-data #f ())
  6154. (3797 set-template-uid! 3796 ())
  6155. (3798 debug-data #f ())
  6156. (3799 debug-flag-accessor 3798 ())
  6157. (3800 #f 3799 ())
  6158. (3801 debug-data #f ())
  6159. (3802 debug-flag-modifier 3801 ())
  6160. (3803 #f 3802 ())
  6161. (3804 debug-data #f ())
  6162. (3805 saving-and-restoring 3804 ())
  6163. (3806 swap 3805 ())
  6164. (3807 debug-data #f ())
  6165. (3808 with-fresh-compiler-state 3807 ())
  6166. (3809 #f 3808 ())
  6167. (3810 #f 3809 ())
  6168. (3811 #f 3809 ())
  6169. (3812 debug-data #f ())
  6170. (3813 note-debug-data! 3812 ())
  6171. (3814 debug-data #f ())
  6172. (3815 debug-data->info 3814 ())
  6173. (3816 debug-data #f ())
  6174. (3817 get-debug-data 3816 ())
  6175. (3818 debug-data #f ())
  6176. (3819 new-debug-data 3818 ())
  6177. (3820 debug-data #f ())
  6178. (3821 debug-data #f ())
  6179. (3822 frames #f ())
  6180. (3823 frame-env-index 3822 ())
  6181. (3824 frames #f ())
  6182. (3825 frame-template-index 3824 ())
  6183. (3826 frames #f ())
  6184. (3827 set-frame-size! 3826 ())
  6185. (3828 frames #f ())
  6186. (3829 frame-size 3828 ())
  6187. (3830 frames #f ())
  6188. (3831 set-frame-literals! 3830 ())
  6189. (3832 frames #f ())
  6190. (3833 frame-literals 3832 ())
  6191. (3834 frames #f ())
  6192. (3835 set-frame-count! 3834 ())
  6193. (3836 frames #f ())
  6194. (3837 frame-count 3836 ())
  6195. (3838 frames #f ())
  6196. (3839 frame-debug-data 3838 ())
  6197. (3840 frames #f ())
  6198. (3841 really-make-frame 3840 ())
  6199. (3842 frames #f ())
  6200. (3843 frames #f ())
  6201. (3844 frame? 3843 ())
  6202. (3845 frames #f ())
  6203. (3846 adjust-procedure-name 3845 ())
  6204. (3847 frames #f ())
  6205. (3848 make-frame 3847 ())
  6206. (3849 finish 3848 ())
  6207. (3850 frames #f ())
  6208. (3851 index->offset 3850 ())
  6209. (3852 frames #f ())
  6210. (3853 template-offset 3852 ())
  6211. (3854 frames #f ())
  6212. (3855 environment-offset 3854 ())
  6213. (3856 frames #f ())
  6214. (3857 depth-check! 3856 ())
  6215. (3858 frames #f ())
  6216. (3859 position 3858 ())
  6217. (3860 loop 3859 ())
  6218. (3861 frames #f ())
  6219. (3862 literal-position 3861 ())
  6220. (3863 #f 3862 ())
  6221. (3864 frames #f ())
  6222. (3865 literal->index 3864 ())
  6223. (3866 frames #f ())
  6224. (3867 binding->index 3866 ())
  6225. (3868 segments #f ())
  6226. (3869 segments #f ())
  6227. (3870 #f 3869 ())
  6228. (3871 segments #f ())
  6229. (3872 astate-code-vector 3871 ())
  6230. (3873 segments #f ())
  6231. (3874 set-astate-pc! 3873 ())
  6232. (3875 segments #f ())
  6233. (3876 astate-pc 3875 ())
  6234. (3877 segments #f ())
  6235. (3878 set-astate-env-maps! 3877 ())
  6236. (3879 segments #f ())
  6237. (3880 astate-env-maps 3879 ())
  6238. (3881 segments #f ())
  6239. (3882 make-assembly-state 3881 ())
  6240. (3883 segments #f ())
  6241. (3884 segments #f ())
  6242. (3885 segments #f ())
  6243. (3886 segments #f ())
  6244. (3887 segments #f ())
  6245. (3888 segments #f ())
  6246. (3889 emit-segment! 3888 ())
  6247. (3890 segments #f ())
  6248. (3891 high-byte 3890 ())
  6249. (3892 segments #f ())
  6250. (3893 low-byte 3892 ())
  6251. (3894 segments #f ())
  6252. (3895 add-big-stack-protocol! 3894 ())
  6253. (3896 segments #f ())
  6254. (3897 make-astate 3896 ())
  6255. (3898 segments #f ())
  6256. (3899 check-stack-use 3898 ())
  6257. (3900 segments #f ())
  6258. (3901 segment->cv 3900 ())
  6259. (3902 segments #f ())
  6260. (3903 segment-data->template 3902 ())
  6261. (3904 loop##562 3903 ())
  6262. (3905 segments #f ())
  6263. (3906 segment->template 3905 ())
  6264. (3907 segments #f ())
  6265. (3908 with-package-key 3907 ())
  6266. (3909 segments #f ())
  6267. (3910 emit-byte! 3909 ())
  6268. (3911 segments #f ())
  6269. (3912 instruction 3911 ())
  6270. (3913 #f 3912 ())
  6271. (3914 #f 3913 ())
  6272. (3915 segments #f ())
  6273. (3916 sequentially-2 3915 ())
  6274. (3917 #f 3916 ())
  6275. (3918 segments #f ())
  6276. (3919 sequentially 3918 ())
  6277. (3920 loop 3919 ())
  6278. (3921 #f 3919 ())
  6279. (3922 loop 3921 ())
  6280. (3923 segments #f ())
  6281. (3924 bits->bytes 3923 ())
  6282. (3925 loop##563 3924 ())
  6283. (3926 segments #f ())
  6284. (3927 live-mask 3926 ())
  6285. (3928 loop##564 3927 ())
  6286. (3929 segments #f ())
  6287. (3930 continuation-data 3929 ())
  6288. (3931 #f 3930 ())
  6289. (3932 #f 3931 ())
  6290. (3933 segments #f ())
  6291. (3934 make-push-byte 3933 ())
  6292. (3935 segments #f ())
  6293. (3936 lambda-protocol 3935 ())
  6294. (3937 segments #f ())
  6295. (3938 nary-lambda-protocol 3937 ())
  6296. (3939 segments #f ())
  6297. (3940 nary-primitive-protocol 3939 ())
  6298. (3941 segments #f ())
  6299. (3942 empty-segment? 3941 ())
  6300. (3943 segments #f ())
  6301. (3944 make-dispatch-protocol 3943 ())
  6302. (3945 loop 3944 ())
  6303. (3946 segments #f ())
  6304. (3947 continuation-protocol 3946 ())
  6305. (3948 segments #f ())
  6306. (3949 code-vector-set2! 3948 ())
  6307. (3950 segments #f ())
  6308. (3951 insert-label! 3950 ())
  6309. (3952 segments #f ())
  6310. (3953 label-reference 3952 ())
  6311. (3954 #f 3953 ())
  6312. (3955 segments #f ())
  6313. (3956 optional-label-reference 3955 ())
  6314. (3957 segments #f ())
  6315. (3958 cwv-continuation-protocol 3957 ())
  6316. (3959 segments #f ())
  6317. (3960 make-label 3959 ())
  6318. (3961 segments #f ())
  6319. (3962 jump-instruction 3961 ())
  6320. (3963 #f 3962 ())
  6321. (3964 segments #f ())
  6322. (3965 bytes->segment 3964 ())
  6323. (3966 #f 3965 ())
  6324. (3967 #f 3966 ())
  6325. (3968 segments #f ())
  6326. (3969 instruction-using-label 3968 ())
  6327. (3970 segments #f ())
  6328. (3971 using-optional-label 3970 ())
  6329. (3972 segments #f ())
  6330. (3973 computed-goto-instruction 3972 ())
  6331. (3974 #f 3973 ())
  6332. (3975 loop##566 3974 ())
  6333. (3976 segments #f ())
  6334. (3977 attach-label 3976 ())
  6335. (3978 #f 3977 ())
  6336. (3979 #f 3978 ())
  6337. (3980 segments #f ())
  6338. (3981 note-source-code 3980 ())
  6339. (3982 #f 3981 ())
  6340. (3983 segments #f ())
  6341. (3984 note-environment 3983 ())
  6342. (3985 #f 3984 ())
  6343. (3986 segments #f ())
  6344. (3987 optimizer #f ())
  6345. (3988 apply-optimizers 3987 ())
  6346. (3989 #f 3988 ())
  6347. (3990 optimizer #f ())
  6348. (3991 get-optimizer 3990 ())
  6349. (3992 #f 3991 ())
  6350. (3993 #f 3992 ())
  6351. (3994 #f 3993 ())
  6352. (3995 optimizer #f ())
  6353. (3996 set-optimizer! 3995 ())
  6354. (3997 optimizer #f ())
  6355. (3998 flat-environments #f ())
  6356. (3999 clear-var-set! 3998 ())
  6357. (4000 flat-environments #f ())
  6358. (4001 clean-var-list 4000 ())
  6359. (4002 flat-environments #f ())
  6360. (4003 set-difference! 4002 ())
  6361. (4004 flat-environments #f ())
  6362. (4005 set-union! 4004 ())
  6363. (4006 #f 4005 ())
  6364. (4007 flat-environments #f ())
  6365. (4008 set-add-element! 4007 ())
  6366. (4009 flat-environments #f ())
  6367. (4010 flat-environments #f ())
  6368. (4011 install-set! 4010 ())
  6369. (4012 #f 4011 ())
  6370. (4013 flat-environments #f ())
  6371. (4014 install-new-set! 4013 ())
  6372. (4015 flat-environments #f ())
  6373. (4016 unassigned-check-primop 4015 ())
  6374. (4017 flat-environments #f ())
  6375. (4018 flat-environments #f ())
  6376. (4019 cell-set!-primop 4018 ())
  6377. (4020 flat-environments #f ())
  6378. (4021 flat-environments #f ())
  6379. (4022 cell-ref-primop 4021 ())
  6380. (4023 flat-environments #f ())
  6381. (4024 flat-environments #f ())
  6382. (4025 make-cell-primop 4024 ())
  6383. (4026 flat-environments #f ())
  6384. (4027 flat-environments #f ())
  6385. (4028 flat-environments #f ())
  6386. (4029 flat-environments #f ())
  6387. (4030 flat-environments #f ())
  6388. (4031 flat-environments #f ())
  6389. (4032 flat-environments #f ())
  6390. (4033 flat-environments #f ())
  6391. (4034 flat-environments #f ())
  6392. (4035 flat-environments #f ())
  6393. (4036 flat-environments #f ())
  6394. (4037 flat-environments #f ())
  6395. (4038 flat-environments #f ())
  6396. (4039 flat-environments #f ())
  6397. (4040 flat-environments #f ())
  6398. (4041 make-primop-call 4040 ())
  6399. (4042 flat-environments #f ())
  6400. (4043 make-cell-set! 4042 ())
  6401. (4044 flat-environments #f ())
  6402. (4045 really-make-cell-ref 4044 ())
  6403. (4046 flat-environments #f ())
  6404. (4047 make-cell-ref 4046 ())
  6405. (4048 flat-environments #f ())
  6406. (4049 make-unassigned-cell 4048 ())
  6407. (4050 flat-environments #f ())
  6408. (4051 make-make-cell 4050 ())
  6409. (4052 flat-environments #f ())
  6410. (4053 mark-letrec-sets 4052 ())
  6411. (4054 #f 4053 ())
  6412. (4055 flat-environments #f ())
  6413. (4056 #f 4055 ())
  6414. (4057 flat-environments #f ())
  6415. (4058 #f 4057 ())
  6416. (4059 flat-environments #f ())
  6417. (4060 #f 4059 ())
  6418. (4061 flat-environments #f ())
  6419. (4062 #f 4061 ())
  6420. (4063 flat-environments #f ())
  6421. (4064 #f 4063 ())
  6422. (4065 flat-environments #f ())
  6423. (4066 #f 4065 ())
  6424. (4067 flat-environments #f ())
  6425. (4068 #f 4067 ())
  6426. (4069 flat-environments #f ())
  6427. (4070 flat-environments #f ())
  6428. (4071 flat-environments #f ())
  6429. (4072 flat-environments #f ())
  6430. (4073 flat-environments #f ())
  6431. (4074 flat-environments #f ())
  6432. (4075 no-sets 4074 ())
  6433. (4076 flat-environments #f ())
  6434. (4077 define-set-marker 4076 ())
  6435. (4078 flat-environments #f ())
  6436. (4079 #f 4078 ())
  6437. (4080 flat-environments #f ())
  6438. (4081 mark-set-variables! 4080 ())
  6439. (4082 flat-environments #f ())
  6440. (4083 assigned? 4082 ())
  6441. (4084 flat-environments #f ())
  6442. (4085 #f 4084 ())
  6443. (4086 #f 4085 ())
  6444. (4087 flat-environments #f ())
  6445. (4088 flatten-impure-letrec 4087 ())
  6446. (4089 #f 4088 ())
  6447. (4090 #f 4088 ())
  6448. (4091 #f 4088 ())
  6449. (4092 flat-environments #f ())
  6450. (4093 flatten-pure-letrec 4092 ())
  6451. (4094 flat-environments #f ())
  6452. (4095 flatten-letrec 4094 ())
  6453. (4096 #f 4095 ())
  6454. (4097 flat-environments #f ())
  6455. (4098 #f 4097 ())
  6456. (4099 flat-environments #f ())
  6457. (4100 #f 4099 ())
  6458. (4101 flat-environments #f ())
  6459. (4102 #f 4101 ())
  6460. (4103 flat-environments #f ())
  6461. (4104 #f 4103 ())
  6462. (4105 flat-environments #f ())
  6463. (4106 #f 4105 ())
  6464. (4107 flat-environments #f ())
  6465. (4108 #f 4107 ())
  6466. (4109 flat-environments #f ())
  6467. (4110 add-cells 4109 ())
  6468. (4111 loop##574 4110 ())
  6469. (4112 flat-environments #f ())
  6470. (4113 convert-lambda-body 4112 ())
  6471. (4114 flat-environments #f ())
  6472. (4115 flatten-lambda 4114 ())
  6473. (4116 flat-environments #f ())
  6474. (4117 #f 4116 ())
  6475. (4118 flat-environments #f ())
  6476. (4119 #f 4118 ())
  6477. (4120 flat-environments #f ())
  6478. (4121 flat-environments #f ())
  6479. (4122 flat-environments #f ())
  6480. (4123 flat-environments #f ())
  6481. (4124 no-free-vars 4123 ())
  6482. (4125 flat-environments #f ())
  6483. (4126 flatten-list 4125 ())
  6484. (4127 #f 4126 ())
  6485. (4128 flat-environments #f ())
  6486. (4129 define-flattener 4128 ())
  6487. (4130 flat-environments #f ())
  6488. (4131 #f 4130 ())
  6489. (4132 flat-environments #f ())
  6490. (4133 flatten-node 4132 ())
  6491. (4134 flat-environments #f ())
  6492. (4135 flatten-form 4134 ())
  6493. (4136 flat-environments #f ())
  6494. (4137 #f 4136 ())
  6495. (4138 #f 4137 ())
  6496. (4139 reconstruction #f ())
  6497. (4140 constant-type 4139 ())
  6498. (4141 reconstruction #f ())
  6499. (4142 reconstruction #f ())
  6500. (4143 reconstruction #f ())
  6501. (4144 reconstruct-apply 4143 ())
  6502. (4145 #f 4144 ())
  6503. (4146 reconstruction #f ())
  6504. (4147 #f 4146 ())
  6505. (4148 reconstruction #f ())
  6506. (4149 #f 4148 ())
  6507. (4150 #f 4149 ())
  6508. (4151 reconstruction #f ())
  6509. (4152 #f 4151 ())
  6510. (4153 reconstruction #f ())
  6511. (4154 define-primop-reconstructor 4153 ())
  6512. (4155 reconstruction #f ())
  6513. (4156 reconstruction #f ())
  6514. (4157 reconstruction #f ())
  6515. (4158 reconstruction #f ())
  6516. (4159 reconstruction #f ())
  6517. (4160 #f 4159 ())
  6518. (4161 reconstruction #f ())
  6519. (4162 #f 4161 ())
  6520. (4163 reconstruction #f ())
  6521. (4164 node->type 4163 ())
  6522. (4165 reconstruction #f ())
  6523. (4166 #f 4165 ())
  6524. (4167 reconstruction #f ())
  6525. (4168 reconstruct-letrec 4167 ())
  6526. (4169 #f 4168 ())
  6527. (4170 reconstruction #f ())
  6528. (4171 #f 4170 ())
  6529. (4172 reconstruction #f ())
  6530. (4173 #f 4172 ())
  6531. (4174 reconstruction #f ())
  6532. (4175 #f 4174 ())
  6533. (4176 reconstruction #f ())
  6534. (4177 #f 4176 ())
  6535. (4178 loop##575 4177 ())
  6536. (4179 reconstruction #f ())
  6537. (4180 reconstruction #f ())
  6538. (4181 fork-constraints 4180 ())
  6539. (4182 #f 4181 ())
  6540. (4183 reconstruction #f ())
  6541. (4184 #f 4183 ())
  6542. (4185 #f 4184 ())
  6543. (4186 reconstruction #f ())
  6544. (4187 #f 4186 ())
  6545. (4188 reconstruction #f ())
  6546. (4189 #f 4188 ())
  6547. (4190 reconstruction #f ())
  6548. (4191 #f 4190 ())
  6549. (4192 reconstruction #f ())
  6550. (4193 #f 4192 ())
  6551. (4194 reconstruction #f ())
  6552. (4195 reconstruct-call 4194 ())
  6553. (4196 lose 4195 ())
  6554. (4197 #f 4196 ())
  6555. (4198 loop 4195 ())
  6556. (4199 reconstruction #f ())
  6557. (4200 proc->reconstructor 4199 ())
  6558. (4201 reconstruction #f ())
  6559. (4202 #f 4201 ())
  6560. (4203 reconstruction #f ())
  6561. (4204 reconstruct-name 4203 ())
  6562. (4205 reconstruction #f ())
  6563. (4206 #f 4205 ())
  6564. (4207 reconstruction #f ())
  6565. (4208 careful-codomain 4207 ())
  6566. (4209 reconstruction #f ())
  6567. (4210 reconstruct-lambda 4209 ())
  6568. (4211 #f 4210 ())
  6569. (4212 reconstruction #f ())
  6570. (4213 #f 4212 ())
  6571. (4214 reconstruction #f ())
  6572. (4215 #f 4214 ())
  6573. (4216 reconstruction #f ())
  6574. (4217 define-reconstructor 4216 ())
  6575. (4218 reconstruction #f ())
  6576. (4219 #f 4218 ())
  6577. (4220 reconstruction #f ())
  6578. (4221 examine 4220 ())
  6579. (4222 reconstruction #f ())
  6580. (4223 reconstruct 4222 ())
  6581. (4224 reconstruction #f ())
  6582. (4225 reconstruct-type 4224 ())
  6583. (4226 reconstruction #f ())
  6584. (4227 node-type 4226 ())
  6585. (4228 compiler #f ())
  6586. (4229 compiler #f ())
  6587. (4230 loop 4229 ())
  6588. (4231 compiler #f ())
  6589. (4232 compiler #f ())
  6590. (4233 define-one-or-two 4232 ())
  6591. (4234 #f 4233 ())
  6592. (4235 #f 4233 ())
  6593. (4236 compiler #f ())
  6594. (4237 #f 4236 ())
  6595. (4238 #f 4236 ())
  6596. (4239 compiler #f ())
  6597. (4240 define-one-or-two 4239 ())
  6598. (4241 #f 4240 ())
  6599. (4242 #f 4240 ())
  6600. (4243 compiler #f ())
  6601. (4244 compiler #f ())
  6602. (4245 compiler #f ())
  6603. (4246 define=< 4245 ())
  6604. (4247 #f 4246 ())
  6605. (4248 #f 4246 ())
  6606. (4249 compiler #f ())
  6607. (4250 define+* 4249 ())
  6608. (4251 #f 4250 ())
  6609. (4252 #f 4250 ())
  6610. (4253 compiler #f ())
  6611. (4254 define-char-io 4253 ())
  6612. (4255 #f 4254 ())
  6613. (4256 #f 4254 ())
  6614. (4257 compiler #f ())
  6615. (4258 define-char-io 4257 ())
  6616. (4259 #f 4258 ())
  6617. (4260 #f 4258 ())
  6618. (4261 compiler #f ())
  6619. (4262 n-ary-constructor 4261 ())
  6620. (4263 #f 4262 ())
  6621. (4264 #f 4262 ())
  6622. (4265 compiler #f ())
  6623. (4266 #f 4265 ())
  6624. (4267 compiler #f ())
  6625. (4268 #f 4267 ())
  6626. (4269 #f 4267 ())
  6627. (4270 compiler #f ())
  6628. (4271 #f 4270 ())
  6629. (4272 #f 4271 ())
  6630. (4273 #f 4271 ())
  6631. (4274 #f 4270 ())
  6632. (4275 compiler #f ())
  6633. (4276 #f 4275 ())
  6634. (4277 #f 4276 ())
  6635. (4278 #f 4277 ())
  6636. (4279 #f 4277 ())
  6637. (4280 #f 4276 ())
  6638. (4281 #f 4275 ())
  6639. (4282 #f 4281 ())
  6640. (4283 #f 4281 ())
  6641. (4284 compiler #f ())
  6642. (4285 #f 4284 ())
  6643. (4286 #f 4285 ())
  6644. (4287 #f 4285 ())
  6645. (4288 #f 4284 ())
  6646. (4289 compiler #f ())
  6647. (4290 compiler #f ())
  6648. (4291 compiler #f ())
  6649. (4292 compiler #f ())
  6650. (4293 compiler #f ())
  6651. (4294 compiler #f ())
  6652. (4295 compiler #f ())
  6653. (4296 compiler #f ())
  6654. (4297 #f 4296 ())
  6655. (4298 compiler #f ())
  6656. (4299 #f 4298 ())
  6657. (4300 compiler #f ())
  6658. (4301 #f 4300 ())
  6659. (4302 compiler #f ())
  6660. (4303 #f 4302 ())
  6661. (4304 #f 4302 ())
  6662. (4305 compiler #f ())
  6663. (4306 compiler #f ())
  6664. (4307 compiler #f ())
  6665. (4308 compiler #f ())
  6666. (4309 loop##579 4308 ())
  6667. (4310 compiler #f ())
  6668. (4311 compiler #f ())
  6669. (4312 #f 4311 ())
  6670. (4313 compiler #f ())
  6671. (4314 #f 4313 ())
  6672. (4315 compiler #f ())
  6673. (4316 #f 4315 ())
  6674. (4317 compiler #f ())
  6675. (4318 compiler #f ())
  6676. (4319 compiler #f ())
  6677. (4320 compiler #f ())
  6678. (4321 compiler #f ())
  6679. (4322 compiler #f ())
  6680. (4323 compiler #f ())
  6681. (4324 compiler #f ())
  6682. (4325 compiler #f ())
  6683. (4326 compiler #f ())
  6684. (4327 #f 4326 ())
  6685. (4328 compiler #f ())
  6686. (4329 compiler #f ())
  6687. (4330 compiler #f ())
  6688. (4331 compiler #f ())
  6689. (4332 compiler #f ())
  6690. (4333 #f 4332 ())
  6691. (4334 #f 4333 ())
  6692. (4335 #f 4334 ())
  6693. (4336 #f 4333 ())
  6694. (4337 compiler #f ())
  6695. (4338 compiler #f ())
  6696. (4339 #f 4338 ())
  6697. (4340 loop 4339 ())
  6698. (4341 compiler #f ())
  6699. (4342 #f 4341 ())
  6700. (4343 compiler #f ())
  6701. (4344 #f 4343 ())
  6702. (4345 compiler #f ())
  6703. (4346 #f 4345 ())
  6704. (4347 compiler #f ())
  6705. (4348 #f 4347 ())
  6706. (4349 compiler #f ())
  6707. (4350 #f 4349 ())
  6708. (4351 compiler #f ())
  6709. (4352 #f 4351 ())
  6710. (4353 compiler #f ())
  6711. (4354 #f 4353 ())
  6712. (4355 compiler #f ())
  6713. (4356 #f 4355 ())
  6714. (4357 compiler #f ())
  6715. (4358 diagnose-call-error 4357 ())
  6716. (4359 #f 4358 ())
  6717. (4360 compiler #f ())
  6718. (4361 type-check 4360 ())
  6719. (4362 #f 4361 ())
  6720. (4363 compiler #f ())
  6721. (4364 compile 4363 ())
  6722. (4365 compiler #f ())
  6723. (4366 compile-expression 4365 ())
  6724. (4367 compiler #f ())
  6725. (4368 define-compilator 4367 ())
  6726. (4369 compiler #f ())
  6727. (4370 return-cont? 4369 ())
  6728. (4371 compiler #f ())
  6729. (4372 deliver-value 4371 ())
  6730. (4373 compiler #f ())
  6731. (4374 ignore-values-cont? 4373 ())
  6732. (4375 compiler #f ())
  6733. (4376 small-integer? 4375 ())
  6734. (4377 compiler #f ())
  6735. (4378 integer-literal-instruction 4377 ())
  6736. (4379 compiler #f ())
  6737. (4380 stack-indirect-instruction 4379 ())
  6738. (4381 compiler #f ())
  6739. (4382 compile-constant 4381 ())
  6740. (4383 compiler #f ())
  6741. (4384 stack-ref-instruction 4383 ())
  6742. (4385 compiler #f ())
  6743. (4386 index->offset 4385 ())
  6744. (4387 compiler #f ())
  6745. (4388 compile-local-name 4387 ())
  6746. (4389 compiler #f ())
  6747. (4390 push+stack-indirect-instruction 4389 ())
  6748. (4391 compiler #f ())
  6749. (4392 constant-with-push 4391 ())
  6750. (4393 compiler #f ())
  6751. (4394 push+stack-ref-instruction 4393 ())
  6752. (4395 compiler #f ())
  6753. (4396 lexical-ref-with-push 4395 ())
  6754. (4397 compiler #f ())
  6755. (4398 name-node-binding 4397 ())
  6756. (4399 compiler #f ())
  6757. (4400 maybe-compile-with-push 4399 ())
  6758. (4401 compiler #f ())
  6759. (4402 fixup-source 4401 ())
  6760. (4403 compiler #f ())
  6761. (4404 really-push-continuation 4403 ())
  6762. (4405 compiler #f ())
  6763. (4406 push-continuation 4405 ())
  6764. (4407 compiler #f ())
  6765. (4408 maybe-push-continuation 4407 ())
  6766. (4409 compiler #f ())
  6767. (4410 pre-push 4409 ())
  6768. (4411 compiler #f ())
  6769. (4412 make-cont 4411 ())
  6770. (4413 compiler #f ())
  6771. (4414 named-cont 4413 ())
  6772. (4415 compiler #f ())
  6773. (4416 fall-through-cont 4415 ())
  6774. (4417 compiler #f ())
  6775. (4418 compile-argument 4417 ())
  6776. (4419 compiler #f ())
  6777. (4420 really-push-arguments 4419 ())
  6778. (4421 recur 4420 ())
  6779. (4422 #f 4421 ())
  6780. (4423 #f 4421 ())
  6781. (4424 compiler #f ())
  6782. (4425 push-arguments 4424 ())
  6783. (4426 compiler #f ())
  6784. (4427 call-instruction 4426 ())
  6785. (4428 compiler #f ())
  6786. (4429 compile-unknown-call 4428 ())
  6787. (4430 #f 4429 ())
  6788. (4431 #f 4429 ())
  6789. (4432 compiler #f ())
  6790. (4433 compile-name-call 4432 ())
  6791. (4434 compiler #f ())
  6792. (4435 generate-trap 4434 ())
  6793. (4436 compiler #f ())
  6794. (4437 set-frame-locations! 4436 ())
  6795. (4438 loop 4437 ())
  6796. (4439 compiler #f ())
  6797. (4440 push-all-with-names 4439 ())
  6798. (4441 compiler #f ())
  6799. (4442 compile-inline-body 4441 ())
  6800. (4443 compiler #f ())
  6801. (4444 name-node->symbol 4443 ())
  6802. (4445 compiler #f ())
  6803. (4446 compile-redex 4445 ())
  6804. (4447 compiler #f ())
  6805. (4448 compile-call 4447 ())
  6806. (4449 compiler #f ())
  6807. (4450 set-lexical-offsets! 4449 ())
  6808. (4451 loop 4450 ())
  6809. (4452 compiler #f ())
  6810. (4453 return-cont 4452 ())
  6811. (4454 compiler #f ())
  6812. (4455 compile-lambda-code 4454 ())
  6813. (4456 compiler #f ())
  6814. (4457 compile-lambda 4456 ())
  6815. (4458 compiler #f ())
  6816. (4459 unflatten-form 4458 ())
  6817. (4460 compiler #f ())
  6818. (4461 letrec-template-maker 4460 ())
  6819. (4462 #f 4461 ())
  6820. (4463 #f 4462 ())
  6821. (4464 #f 4463 ())
  6822. (4465 #f 4463 ())
  6823. (4466 compiler #f ())
  6824. (4467 push-continuation-no-protocol 4466 ())
  6825. (4468 compiler #f ())
  6826. (4469 push-all-but-last 4468 ())
  6827. (4470 compiler #f ())
  6828. (4471 push-argument 4470 ())
  6829. (4472 #f 4471 ())
  6830. (4473 #f 4471 ())
  6831. (4474 compiler #f ())
  6832. (4475 stack-set!-instruction 4474 ())
  6833. (4476 compiler #f ())
  6834. (4477 plain-fall-through-cont 4476 ())
  6835. (4478 compiler #f ())
  6836. (4479 fall-through-cont? 4478 ())
  6837. (4480 compiler #f ())
  6838. (4481 ignore-values-cont 4480 ())
  6839. (4482 compiler #f ())
  6840. (4483 accept-values-cont 4482 ())
  6841. (4484 compiler #f ())
  6842. (4485 accept-values-cont? 4484 ())
  6843. (4486 compiler #f ())
  6844. (4487 cont-name 4486 ())
  6845. (4488 compiler #f ())
  6846. (4489 set-type-check?! 4488 ())
  6847. (4490 compiler #f ())
  6848. (4491 add-variable 4490 ())
  6849. (4492 compiler #f ())
  6850. (4493 get-variables-locations 4492 ())
  6851. (4494 loop 4493 ())
  6852. (4495 compiler #f ())
  6853. (4496 figure-env-data 4495 ())
  6854. (4497 loop 4496 ())
  6855. (4498 compiler #f ())
  6856. (4499 flat-environment-code 4498 ())
  6857. (4500 #f 4499 ())
  6858. (4501 #f 4500 ())
  6859. (4502 #f 4499 ())
  6860. (4503 compiler #f ())
  6861. (4504 one-byte->two-byte 4503 ())
  6862. (4505 loop 4504 ())
  6863. (4506 compiler #f ())
  6864. (4507 finish-flat-env 4506 ())
  6865. (4508 #f 4507 ())
  6866. (4509 compiler #f ())
  6867. (4510 compile-recursive-environment 4509 ())
  6868. (4511 #f 4510 ())
  6869. (4512 #f 4510 ())
  6870. (4513 compiler #f ())
  6871. (4514 compile-environment 4513 ())
  6872. (4515 #f 4514 ())
  6873. (4516 compiler #f ())
  6874. (4517 really-compile-flat-lambda 4516 ())
  6875. (4518 #f 4517 ())
  6876. (4519 #f 4518 ())
  6877. (4520 #f 4517 ())
  6878. (4521 compiler #f ())
  6879. (4522 compile-flat-lambda 4521 ())
  6880. (4523 #f 4522 ())
  6881. (4524 #f 4522 ())
  6882. (4525 compiler #f ())
  6883. (4526 primop-closed-template 4525 ())
  6884. (4527 #f 4526 ())
  6885. (4528 #f 4526 ())
  6886. (4529 compiler #f ())
  6887. (4530 direct-compilator 4529 ())
  6888. (4531 #f 4530 ())
  6889. (4532 compiler #f ())
  6890. (4533 direct-closed-compilator 4532 ())
  6891. (4534 #f 4533 ())
  6892. (4535 compiler #f ())
  6893. (4536 nargs->domain 4535 ())
  6894. (4537 loop##588 4536 ())
  6895. (4538 compiler #f ())
  6896. (4539 get-primop-type 4538 ())
  6897. (4540 #f 4539 ())
  6898. (4541 compiler #f ())
  6899. (4542 simple-compilator 4541 ())
  6900. (4543 #f 4542 ())
  6901. (4544 compiler #f ())
  6902. (4545 simple-closed-compilator 4544 ())
  6903. (4546 #f 4545 ())
  6904. (4547 compiler #f ())
  6905. (4548 define-simple-primitive 4547 ())
  6906. (4549 compiler #f ())
  6907. (4550 symbol-append 4549 ())
  6908. (4551 compiler #f ())
  6909. (4552 define-stob-predicate 4551 ())
  6910. (4553 compiler #f ())
  6911. (4554 define-data-struct-primitives 4553 ())
  6912. (4555 def-prim 4554 ())
  6913. (4556 loop##590 4554 ())
  6914. (4557 compiler #f ())
  6915. (4558 define-vector-primitives 4557 ())
  6916. (4559 def-prim 4558 ())
  6917. (4560 compiler #f ())
  6918. (4561 thunk-node? 4560 ())
  6919. (4562 compiler #f ())
  6920. (4563 thunk-body 4562 ())
  6921. (4564 compiler #f ())
  6922. (4565 n-ary-primitive-compilator 4564 ())
  6923. (4566 #f 4565 ())
  6924. (4567 compiler #f ())
  6925. (4568 define-n-ary-compiler-primitive 4567 ())
  6926. (4569 compiler #f ())
  6927. (4570 evaluate-arguments-for-effect 4569 ())
  6928. (4571 loop##593 4570 ())
  6929. (4572 compiler #f ())
  6930. (4573 call-on-arg-and-id 4572 ())
  6931. (4574 compiler #f ())
  6932. (4575 push-and-compile 4574 ())
  6933. (4576 compiler #f ())
  6934. (4577 call-on-args 4576 ())
  6935. (4578 loop 4577 ())
  6936. (4579 compiler #f ())
  6937. (4580 compile-definition 4579 ())
  6938. (4581 compiler #f ())
  6939. (4582 call-template-inst 4581 ())
  6940. (4583 compiler #f ())
  6941. (4584 compile-form 4583 ())
  6942. (4585 compiler #f ())
  6943. (4586 compile-forms-loop 4585 ())
  6944. (4587 compiler #f ())
  6945. (4588 compile-forms 4587 ())
  6946. (4589 #f 4588 ())
  6947. (4590 compiler #f ())
  6948. (4591 template-call 4590 ())
  6949. (4592 #f 4591 ())
  6950. (4593 #f 4591 ())
  6951. (4594 compiler #f ())
  6952. (4595 append-templates 4594 ())
  6953. (4596 #f 4595 ())
  6954. (4597 compiler #f ())
  6955. (4598 make-startup-procedure 4597 ())
  6956. (4599 compiler #f ())
  6957. (4600 evaluation #f ())
  6958. (4601 compile-and-run 4600 ())
  6959. (4602 #f 4601 ())
  6960. (4603 #f 4602 ())
  6961. (4604 evaluation #f ())
  6962. (4605 really-load-into 4604 ())
  6963. (4606 evaluation #f ())
  6964. (4607 load 4606 ())
  6965. (4608 evaluation #f ())
  6966. (4609 eval-from-file 4608 ())
  6967. (4610 evaluation #f ())
  6968. (4611 load-script-into 4610 ())
  6969. (4612 evaluation #f ())
  6970. (4613 load-into 4612 ())
  6971. (4614 evaluation #f ())
  6972. (4615 eval 4614 ())
  6973. (4616 scheme #f ())
  6974. (4617 display-conditions #f ())
  6975. (4618 limited-write 4617 ())
  6976. (4619 recur 4618 ())
  6977. (4620 #f 4619 ())
  6978. (4621 #f 4620 ())
  6979. (4622 display-conditions #f ())
  6980. (4623 &disclose-condition 4622 ())
  6981. (4624 display-conditions #f ())
  6982. (4625 display-conditions #f ())
  6983. (4626 display-conditions #f ())
  6984. (4627 display-conditions #f ())
  6985. (4628 display-conditions #f ())
  6986. (4629 really-display-condition 4628 ())
  6987. (4630 #f 4629 ())
  6988. (4631 display-conditions #f ())
  6989. (4632 display-condition 4631 ())
  6990. (4633 #f 4632 ())
  6991. (4634 mini-command #f ())
  6992. (4635 read-string 4634 ())
  6993. (4636 loop 4635 ())
  6994. (4637 mini-command #f ())
  6995. (4638 mini-load 4637 ())
  6996. (4639 mini-command #f ())
  6997. (4640 command-processor 4639 ())
  6998. (4641 loop 4640 ())
  6999. (4642 #f 4641 ())
  7000. (4643 #f 4642 ())
  7001. (4644 #f 4643 ())
  7002. (4645 #f 4642 ())
  7003. (4646 #f 4645 ())
  7004. (4647 #f 4645 ())
  7005. (4648 #f 4645 ())
  7006. (4649 #f 4648 ())
  7007. (4650 #f 4645 ())
  7008. (4651 enum-case #f ())
  7009. (4652 scheduler #f ())
  7010. (4653 decrement-counter! 4652 ())
  7011. (4654 scheduler #f ())
  7012. (4655 increment-counter! 4654 ())
  7013. (4656 scheduler #f ())
  7014. (4657 scheduler #f ())
  7015. (4658 make-counter 4657 ())
  7016. (4659 scheduler #f ())
  7017. (4660 round-robin-event-handler 4659 ())
  7018. (4661 thread-event-handler 4660 ())
  7019. (4662 #f 4661 ())
  7020. (4663 #f 4661 ())
  7021. (4664 asynchronous-event-handler 4660 ())
  7022. (4665 next-thread 4660 ())
  7023. (4666 #f 4665 ())
  7024. (4667 scheduler #f ())
  7025. (4668 run-threads-with-housekeeper 4667 ())
  7026. (4669 #f 4668 ())
  7027. (4670 loop 4669 ())
  7028. (4671 #f 4670 ())
  7029. (4672 #f 4671 ())
  7030. (4673 #f 4671 ())
  7031. (4674 #f 4670 ())
  7032. (4675 #f 4668 ())
  7033. (4676 scheduler #f ())
  7034. (4677 run-threads 4676 ())
  7035. (4678 #f 4677 ())
  7036. (4679 loop 4678 ())
  7037. (4680 #f 4679 ())
  7038. (4681 #f 4680 ())
  7039. (4682 #f 4680 ())
  7040. (4683 #f 4679 ())
  7041. (4684 #f 4677 ())
  7042. (4685 root-scheduler #f ())
  7043. (4686 spawn-output-forcers 4685 ())
  7044. (4687 root-scheduler #f ())
  7045. (4688 call-when-deadlocked! 4687 ())
  7046. (4689 root-scheduler #f ())
  7047. (4690 root-scheduler #f ())
  7048. (4691 root-scheduler #f ())
  7049. (4692 root-scheduler #f ())
  7050. (4693 root-scheduler #f ())
  7051. (4694 do-some-waiting 4693 ())
  7052. (4695 #f 4694 ())
  7053. (4696 root-scheduler #f ())
  7054. (4697 root-wait 4696 ())
  7055. (4698 #f 4697 ())
  7056. (4699 root-scheduler #f ())
  7057. (4700 scheme-exit-now 4699 ())
  7058. (4701 root-scheduler #f ())
  7059. (4702 root-scheduler #f ())
  7060. (4703 cheap-display-condition 4702 ())
  7061. (4704 #f 4703 ())
  7062. (4705 #f 4704 ())
  7063. (4706 #f 4703 ())
  7064. (4707 root-scheduler #f ())
  7065. (4708 root-handler 4707 ())
  7066. (4709 root-scheduler #f ())
  7067. (4710 make-root-event-handler 4709 ())
  7068. (4711 #f 4710 ())
  7069. (4712 #f 4710 ())
  7070. (4713 root-scheduler #f ())
  7071. (4714 root-scheduler 4713 ())
  7072. (4715 #f 4714 ())
  7073. (4716 #f 4715 ())
  7074. (4717 #f 4715 ())
  7075. (4718 usual-resumer #f ())
  7076. (4719 usual-resumer #f ())
  7077. (4720 run-initialization-thunks 4719 ())
  7078. (4721 #f 4720 ())
  7079. (4722 usual-resumer #f ())
  7080. (4723 add-initialization-thunk! 4722 ())
  7081. (4724 usual-resumer #f ())
  7082. (4725 usual-resumer #f ())
  7083. (4726 initialize-rts 4725 ())
  7084. (4727 #f 4726 ())
  7085. (4728 #f 4727 ())
  7086. (4729 #f 4728 ())
  7087. (4730 #f 4729 ())
  7088. (4731 usual-resumer #f ())
  7089. (4732 warn-about-undefined-imported-bindings 4731 ())
  7090. (4733 loop##611 4732 ())
  7091. (4734 usual-resumer #f ())
  7092. (4735 usual-resumer 4734 ())
  7093. (4736 usual-resumer #f ())
  7094. (4737 make-usual-resumer 4736 ())
  7095. (4738 #f 4737 ())
  7096. (4739 #f 4738 ())
  7097. (4740 initial-system #f ())
  7098. (4741 make-tower 4740 ())
  7099. (4742 initial-system #f ())
  7100. (4743 make-initial-package 4742 ())
  7101. (4744 #f 4743 ())
  7102. (4745 initial-system #f ())
  7103. (4746 initialize-interaction-environment! 4745 ())
  7104. (4747 initial-system #f ())
  7105. (4748 make-built-in-structures 4747 ())
  7106. (4749 #f 4748 ())
  7107. (4750 #f 4748 ())
  7108. (4751 initial-system #f ())
  7109. (4752 start 4751 ())
  7110. (4753 #f 4752 ())
  7111. (4754 #f 4753 ())
  7112. (4755 #f 4754 ())
  7113. (4756 usual-macros #f ())
  7114. (4757 find-free-names-in-syntax-rules 4756 ())
  7115. (4758 meta-variables 4757 ())
  7116. (4759 free-names 4757 ())
  7117. (4760 loop##615 4757 ())
  7118. (4761 usual-macros #f ())
  7119. (4762 usual-macros #f ())
  7120. (4763 segment-tail 4762 ())
  7121. (4764 loop 4763 ())
  7122. (4765 usual-macros #f ())
  7123. (4766 segment-depth 4765 ())
  7124. (4767 usual-macros #f ())
  7125. (4768 segment-template? 4767 ())
  7126. (4769 usual-macros #f ())
  7127. (4770 segment-pattern? 4769 ())
  7128. (4771 usual-macros #f ())
  7129. (4772 process-rules 4771 ())
  7130. (4773 #f 4772 ())
  7131. (4774 #f 4772 ())
  7132. (4775 #f 4774 ())
  7133. (4776 #f 4772 ())
  7134. (4777 #f 4772 ())
  7135. (4778 #f 4772 ())
  7136. (4779 #f 4778 ())
  7137. (4780 #f 4772 ())
  7138. (4781 loop##619 4780 ())
  7139. (4782 #f 4772 ())
  7140. (4783 #f 4772 ())
  7141. (4784 usual-macros #f ())
  7142. (4785 #f 4784 ())
  7143. (4786 usual-macros #f ())
  7144. (4787 #f 4786 ())
  7145. (4788 #f 4787 ())
  7146. (4789 #f 4787 ())
  7147. (4790 #f 4787 ())
  7148. (4791 #f 4787 ())
  7149. (4792 #f 4791 ())
  7150. (4793 #f 4792 ())
  7151. (4794 #f 4787 ())
  7152. (4795 #f 4794 ())
  7153. (4796 #f 4787 ())
  7154. (4797 usual-macros #f ())
  7155. (4798 case-clause? 4797 ())
  7156. (4799 usual-macros #f ())
  7157. (4800 #f 4799 ())
  7158. (4801 #f 4800 ())
  7159. (4802 #f 4800 ())
  7160. (4803 usual-macros #f ())
  7161. (4804 #f 4803 ())
  7162. (4805 usual-macros #f ())
  7163. (4806 specs? 4805 ())
  7164. (4807 usual-macros #f ())
  7165. (4808 #f 4807 ())
  7166. (4809 usual-macros #f ())
  7167. (4810 #f 4809 ())
  7168. (4811 usual-macros #f ())
  7169. (4812 do-spec? 4811 ())
  7170. (4813 usual-macros #f ())
  7171. (4814 #f 4813 ())
  7172. (4815 #f 4814 ())
  7173. (4816 usual-macros #f ())
  7174. (4817 #f 4816 ())
  7175. (4818 recur 4817 ())
  7176. (4819 usual-macros #f ())
  7177. (4820 #f 4819 ())
  7178. (4821 usual-macros #f ())
  7179. (4822 usual-transform 4821 ())
  7180. (4823 usual-macros #f ())
  7181. (4824 define-usual-macro 4823 ())
  7182. (4825 usual-macros #f ())
  7183. (4826 strong #f ())
  7184. (4827 pop-vertex-edge! 4826 ())
  7185. (4828 strong #f ())
  7186. (4829 follow-edge 4828 ())
  7187. (4830 strong #f ())
  7188. (4831 unwind-stack 4830 ())
  7189. (4832 loop 4831 ())
  7190. (4833 strong #f ())
  7191. (4834 end-vertex 4833 ())
  7192. (4835 #f 4834 ())
  7193. (4836 #f 4834 ())
  7194. (4837 strong #f ())
  7195. (4838 get-strong 4837 ())
  7196. (4839 strong #f ())
  7197. (4840 do-vertex 4839 ())
  7198. (4841 strong #f ())
  7199. (4842 make-vertices 4841 ())
  7200. (4843 maybe-slot 4842 ())
  7201. (4844 #f 4842 ())
  7202. (4845 #f 4842 ())
  7203. (4846 strong #f ())
  7204. (4847 make-vertex 4846 ())
  7205. (4848 strong #f ())
  7206. (4849 vertex? 4848 ())
  7207. (4850 strong #f ())
  7208. (4851 vertex-data 4850 ())
  7209. (4852 strong #f ())
  7210. (4853 set-vertex-edges! 4852 ())
  7211. (4854 strong #f ())
  7212. (4855 vertex-edges 4854 ())
  7213. (4856 strong #f ())
  7214. (4857 set-vertex-stack! 4856 ())
  7215. (4858 strong #f ())
  7216. (4859 vertex-stack 4858 ())
  7217. (4860 strong #f ())
  7218. (4861 set-vertex-index! 4860 ())
  7219. (4862 strong #f ())
  7220. (4863 vertex-index 4862 ())
  7221. (4864 strong #f ())
  7222. (4865 set-vertex-parent! 4864 ())
  7223. (4866 strong #f ())
  7224. (4867 vertex-parent 4866 ())
  7225. (4868 strong #f ())
  7226. (4869 set-vertex-lowpoint! 4868 ())
  7227. (4870 strong #f ())
  7228. (4871 vertex-lowpoint 4870 ())
  7229. (4872 strong #f ())
  7230. (4873 really-make-vertex 4872 ())
  7231. (4874 strong #f ())
  7232. (4875 strong #f ())
  7233. (4876 find-next-vertex 4875 ())
  7234. (4877 loop##642 4876 ())
  7235. (4878 strong #f ())
  7236. (4879 strongly-connected-components 4878 ())
  7237. (4880 loop 4879 ())
  7238. (4881 #f 4880 ())
  7239. (4882 #f 4880 ())
  7240. (4883 #f 4880 ())
  7241. (4884 usages #f ())
  7242. (4885 insert-aliases 4884 ())
  7243. (4886 loop 4885 ())
  7244. (4887 usages #f ())
  7245. (4888 make-form 4887 ())
  7246. (4889 usages #f ())
  7247. (4890 #f 4889 ())
  7248. (4891 usages #f ())
  7249. (4892 form? 4891 ())
  7250. (4893 usages #f ())
  7251. (4894 form-node 4893 ())
  7252. (4895 usages #f ())
  7253. (4896 set-form-aliases! 4895 ())
  7254. (4897 usages #f ())
  7255. (4898 form-aliases 4897 ())
  7256. (4899 usages #f ())
  7257. (4900 set-form-unaliased?! 4899 ())
  7258. (4901 usages #f ())
  7259. (4902 form-unaliased? 4901 ())
  7260. (4903 usages #f ())
  7261. (4904 set-form-free! 4903 ())
  7262. (4905 usages #f ())
  7263. (4906 form-free 4905 ())
  7264. (4907 usages #f ())
  7265. (4908 set-form-temp! 4907 ())
  7266. (4909 usages #f ())
  7267. (4910 form-temp 4909 ())
  7268. (4911 usages #f ())
  7269. (4912 really-make-form 4911 ())
  7270. (4913 usages #f ())
  7271. (4914 usages #f ())
  7272. (4915 topologically-sort 4914 ())
  7273. (4916 #f 4915 ())
  7274. (4917 #f 4916 ())
  7275. (4918 #f 4916 ())
  7276. (4919 usages #f ())
  7277. (4920 maybe-make-aliased 4919 ())
  7278. (4921 usages #f ())
  7279. (4922 stuff-count 4921 ())
  7280. (4923 #f 4922 ())
  7281. (4924 usages #f ())
  7282. (4925 sort-forms 4924 ())
  7283. (4926 #f 4925 ())
  7284. (4927 #f 4925 ())
  7285. (4928 usages #f ())
  7286. (4929 usages #f ())
  7287. (4930 usages #f ())
  7288. (4931 usages #f ())
  7289. (4932 usages #f ())
  7290. (4933 usages #f ())
  7291. (4934 usages #f ())
  7292. (4935 usages #f ())
  7293. (4936 usages #f ())
  7294. (4937 usages #f ())
  7295. (4938 usage-incrementator 4937 ())
  7296. (4939 #f 4938 ())
  7297. (4940 usages #f ())
  7298. (4941 package-usage? 4940 ())
  7299. (4942 usages #f ())
  7300. (4943 make-package-usage 4942 ())
  7301. (4944 usages #f ())
  7302. (4945 make-usage 4944 ())
  7303. (4946 usages #f ())
  7304. (4947 usage? 4946 ())
  7305. (4948 usages #f ())
  7306. (4949 usage-name-node 4948 ())
  7307. (4950 usages #f ())
  7308. (4951 set-reference! 4950 ())
  7309. (4952 usages #f ())
  7310. (4953 usage-reference-count 4952 ())
  7311. (4954 usages #f ())
  7312. (4955 set-operator! 4954 ())
  7313. (4956 usages #f ())
  7314. (4957 usage-operator-count 4956 ())
  7315. (4958 usages #f ())
  7316. (4959 set-assignment! 4958 ())
  7317. (4960 usages #f ())
  7318. (4961 usage-assignment-count 4960 ())
  7319. (4962 usages #f ())
  7320. (4963 really-make-usage 4962 ())
  7321. (4964 usages #f ())
  7322. (4965 usages #f ())
  7323. (4966 #f 4965 ())
  7324. (4967 usages #f ())
  7325. (4968 #f 4967 ())
  7326. (4969 usages #f ())
  7327. (4970 #f 4969 ())
  7328. (4971 usages #f ())
  7329. (4972 #f 4971 ())
  7330. (4973 usages #f ())
  7331. (4974 #f 4973 ())
  7332. (4975 usages #f ())
  7333. (4976 #f 4975 ())
  7334. (4977 usages #f ())
  7335. (4978 analyze-letrec 4977 ())
  7336. (4979 #f 4978 ())
  7337. (4980 usages #f ())
  7338. (4981 #f 4980 ())
  7339. (4982 usages #f ())
  7340. (4983 #f 4982 ())
  7341. (4984 usages #f ())
  7342. (4985 #f 4984 ())
  7343. (4986 #f 4985 ())
  7344. (4987 usages #f ())
  7345. (4988 #f 4987 ())
  7346. (4989 usages #f ())
  7347. (4990 add-if-free 4989 ())
  7348. (4991 usages #f ())
  7349. (4992 #f 4991 ())
  7350. (4993 usages #f ())
  7351. (4994 usages #f ())
  7352. (4995 usages #f ())
  7353. (4996 usages #f ())
  7354. (4997 usages #f ())
  7355. (4998 usages #f ())
  7356. (4999 nothing 4998 ())
  7357. (5000 usages #f ())
  7358. (5001 define-usage-analyzer 5000 ())
  7359. (5002 usages #f ())
  7360. (5003 #f 5002 ())
  7361. (5004 usages #f ())
  7362. (5005 analyze-nodes 5004 ())
  7363. (5006 #f 5005 ())
  7364. (5007 usages #f ())
  7365. (5008 analyze 5007 ())
  7366. (5009 usages #f ())
  7367. (5010 find-node-usages 5009 ())
  7368. (5011 #f 5010 ())
  7369. (5012 #f 5010 ())
  7370. (5013 usages #f ())
  7371. (5014 maybe-update-known-type 5013 ())
  7372. (5015 usages #f ())
  7373. (5016 find-usages 5015 ())
  7374. (5017 #f 5016 ())
  7375. (5018 #f 5016 ())
  7376. (5019 #f 5018 ())
  7377. (5020 #f 5016 ())
  7378. (5021 inline #f ())
  7379. (5022 inline #f ())
  7380. (5023 inline #f ())
  7381. (5024 inline #f ())
  7382. (5025 inline #f ())
  7383. (5026 inline #f ())
  7384. (5027 get-qualified-env 5026 ())
  7385. (5028 inline #f ())
  7386. (5029 qualified->name 5028 ())
  7387. (5030 recur 5029 ())
  7388. (5031 inline #f ())
  7389. (5032 inline #f ())
  7390. (5033 inline #f ())
  7391. (5034 reconstitute-name 5033 ())
  7392. (5035 inline #f ())
  7393. (5036 reconstitute 5035 ())
  7394. (5037 label 5036 ())
  7395. (5038 inline #f ())
  7396. (5039 make-substitution 5038 ())
  7397. (5040 #f 5039 ())
  7398. (5041 inline #f ())
  7399. (5042 inline-transform 5041 ())
  7400. (5043 #f 5042 ())
  7401. (5044 #f 5042 ())
  7402. (5045 inline #f ())
  7403. (5046 remove-bindings 5045 ())
  7404. (5047 label 5046 ())
  7405. (5048 inline #f ())
  7406. (5049 unused-name 5048 ())
  7407. (5050 loop##669 5049 ())
  7408. (5051 #f 5050 ())
  7409. (5052 inline #f ())
  7410. (5053 clean-lookup 5052 ())
  7411. (5054 inline #f ())
  7412. (5055 clean-lambda 5054 ())
  7413. (5056 #f 5055 ())
  7414. (5057 recur 5055 ())
  7415. (5058 inline #f ())
  7416. (5059 clean-node 5058 ())
  7417. (5060 #f 5059 ())
  7418. (5061 #f 5059 ())
  7419. (5062 inline #f ())
  7420. (5063 make-inline-transform 5062 ())
  7421. (5064 #f 5063 ())
  7422. (5065 #f 5063 ())
  7423. (5066 loop##670 5065 ())
  7424. (5067 for-reification #f ())
  7425. (5068 package-define-static! 5067 ())
  7426. (5069 for-reification #f ())
  7427. (5070 transform 5069 ())
  7428. (5071 for-reification #f ())
  7429. (5072 package 5071 ())
  7430. (5073 loop##671 5072 ())
  7431. (5074 for-reification #f ())
  7432. (5075 simple-interface 5074 ())
  7433. (5076 #f 5075 ())
  7434. (5077 for-reification #f ())
  7435. (5078 primop 5077 ())
  7436. (5079 for-reification #f ())
  7437. (5080 operator 5079 ())
  7438. (5081 types #f ())
  7439. (5082 types #f ())
  7440. (5083 types #f ())
  7441. (5084 types #f ())
  7442. (5085 types #f ())
  7443. (5086 types #f ())
  7444. (5087 types #f ())
  7445. (5088 types #f ())
  7446. (5089 types #f ())
  7447. (5090 types #f ())
  7448. (5091 types #f ())
  7449. (5092 types #f ())
  7450. (5093 types #f ())
  7451. (5094 types #f ())
  7452. (5095 types #f ())
  7453. (5096 types #f ())
  7454. (5097 types #f ())
  7455. (5098 types #f ())
  7456. (5099 types #f ())
  7457. (5100 types #f ())
  7458. (5101 types #f ())
  7459. (5102 types #f ())
  7460. (5103 procedure 5102 ())
  7461. (5104 types #f ())
  7462. (5105 types #f ())
  7463. (5106 types #f ())
  7464. (5107 types #f ())
  7465. (5108 defpackage #f ())
  7466. (5109 note-name! 5108 ())
  7467. (5110 defpackage #f ())
  7468. (5111 set-verify-later! 5110 ())
  7469. (5112 defpackage #f ())
  7470. (5113 verify-later! 5112 ())
  7471. (5114 defpackage #f ())
  7472. (5115 *verify-later!* 5114 ())
  7473. (5116 defpackage #f ())
  7474. (5117 defpackage #f ())
  7475. (5118 loser 5117 ())
  7476. (5119 defpackage #f ())
  7477. (5120 make-a-package 5119 ())
  7478. (5121 scan-package #f ())
  7479. (5122 check-structure 5121 ())
  7480. (5123 #f 5122 ())
  7481. (5124 scan-package #f ())
  7482. (5125 package-optimizer-names 5124 ())
  7483. (5126 #f 5125 ())
  7484. (5127 #f 5125 ())
  7485. (5128 scan-package #f ())
  7486. (5129 read-files 5128 ())
  7487. (5130 #f 5129 ())
  7488. (5131 scan-package #f ())
  7489. (5132 package-source 5131 ())
  7490. (5133 #f 5132 ())
  7491. (5134 scan-package #f ())
  7492. (5135 collect-packages 5134 ())
  7493. (5136 recur 5135 ())
  7494. (5137 #f 5136 ())
  7495. (5138 compile-packages #f ())
  7496. (5139 compile-packages #f ())
  7497. (5140 compile-packages #f ())
  7498. (5141 compile-packages #f ())
  7499. (5142 compile-packages #f ())
  7500. (5143 define-primitives 5142 ())
  7501. (5144 #f 5143 ())
  7502. (5145 #f 5143 ())
  7503. (5146 make-define-primitive-node 5143 ())
  7504. (5147 make-register-primitive 5143 ())
  7505. (5148 #f 5143 ())
  7506. (5149 compile-packages #f ())
  7507. (5150 define-usual-transform 5149 ())
  7508. (5151 compile-packages #f ())
  7509. (5152 expand-package 5151 ())
  7510. (5153 #f 5152 ())
  7511. (5154 #f 5153 ())
  7512. (5155 #f 5153 ())
  7513. (5156 #f 5153 ())
  7514. (5157 #f 5156 ())
  7515. (5158 #f 5157 ())
  7516. (5159 #f 5152 ())
  7517. (5160 compile-packages #f ())
  7518. (5161 compile-package 5160 ())
  7519. (5162 module-system #f ())
  7520. (5163 analysis #f ())
  7521. (5164 analysis #f ())
  7522. (5165 analysis #f ())
  7523. (5166 analysis #f ())
  7524. (5167 analysis #f ())
  7525. (5168 analysis #f ())
  7526. (5169 package-lookup-type 5168 ())
  7527. (5170 analysis #f ())
  7528. (5171 analysis #f ())
  7529. (5172 require 5171 ())
  7530. (5173 analysis #f ())
  7531. (5174 simple-literal? 5173 ())
  7532. (5175 analysis #f ())
  7533. (5176 analysis #f ())
  7534. (5177 analysis #f ())
  7535. (5178 primitive-proc? 5177 ())
  7536. (5179 analysis #f ())
  7537. (5180 really-simple-call? 5179 ())
  7538. (5181 analysis #f ())
  7539. (5182 static-value 5181 ())
  7540. (5183 analysis #f ())
  7541. (5184 #f 5183 ())
  7542. (5185 analysis #f ())
  7543. (5186 #f 5185 ())
  7544. (5187 loop 5186 ())
  7545. (5188 analysis #f ())
  7546. (5189 #f 5188 ())
  7547. (5190 analysis #f ())
  7548. (5191 #f 5190 ())
  7549. (5192 analysis #f ())
  7550. (5193 #f 5192 ())
  7551. (5194 analysis #f ())
  7552. (5195 #f 5194 ())
  7553. (5196 analysis #f ())
  7554. (5197 #f 5196 ())
  7555. (5198 analysis #f ())
  7556. (5199 #f 5198 ())
  7557. (5200 analysis #f ())
  7558. (5201 #f 5200 ())
  7559. (5202 analysis #f ())
  7560. (5203 #f 5202 ())
  7561. (5204 analysis #f ())
  7562. (5205 #f 5204 ())
  7563. (5206 analysis #f ())
  7564. (5207 #f 5206 ())
  7565. (5208 analysis #f ())
  7566. (5209 #f 5208 ())
  7567. (5210 analysis #f ())
  7568. (5211 define-analyzer 5210 ())
  7569. (5212 analysis #f ())
  7570. (5213 #f 5212 ())
  7571. (5214 analysis #f ())
  7572. (5215 simple-list? 5214 ())
  7573. (5216 analysis #f ())
  7574. (5217 simple? 5216 ())
  7575. (5218 analysis #f ())
  7576. (5219 analysis #f ())
  7577. (5220 simple-lambda? 5219 ())
  7578. (5221 #f 5220 ())
  7579. (5222 analysis #f ())
  7580. (5223 inlinable-rhs? 5222 ())
  7581. (5224 analysis #f ())
  7582. (5225 analyze-form 5224 ())
  7583. (5226 analysis #f ())
  7584. (5227 analyze-forms 5226 ())
  7585. (5228 #f 5227 ())
  7586. (5229 analysis #f ())
  7587. (5230 #f 5229 ())
  7588. (5231 ensures-loaded #f ())
  7589. (5232 ensure-loaded 5231 ())
  7590. (5233 #f 5232 ())
  7591. (5234 #f 5233 ())
  7592. (5235 #f 5232 ())
  7593. (5236 #f #f ())
  7594. (5237 #f 5236 ())
  7595. (5238 get-location 5237 ())
  7596. (5239 #f 5237 ())
  7597. (5240 #f 5237 ())
  7598. (5241 #f 5237 ())
  7599. (5242 #f 5237 ())
  7600. (5243 #f 5237 ())
  7601. (5244 name 5243 ())
  7602. (5245 #f 5244 ())
  7603. (5246 #f 5237 ())
  7604. (5247 loop 5246 ())
  7605. (5248 #f 5246 ())
  7606. (5249 #f 5246 ())
  7607. (5250 #f 5246 ())
  7608. (5251 #f 5246 ())
  7609. (5252 #f 5237 ())
  7610. (5253 mem? 5252 ())
  7611. (5254 every? 5252 ())
  7612. (5255 #f 5252 ())
  7613. (5256 #f 5252 ())
  7614. (5257 #f 5237 ())
  7615. (5258 mem? 5257 ())
  7616. (5259 loop##684 5257 ())
  7617. (5260 #f 5237 ())
  7618. (5261 #f 5237 ())
  7619. (5262 #f 5237 ())
  7620. (5263 #f 5237 ())
  7621. (5264 #f 5237 ())
  7622. (5265 #f 5264 ())
  7623. (5266 #f 5237 ())
  7624. (5267 #f 5237 ())
  7625. (5268 #f 5237 ())
  7626. (5269 #f 5237 ())
  7627. (5270 #f 5237 ())
  7628. (5271 loop 5270 ())
  7629. (5272 #f 5270 ())
  7630. (5273 #f 5270 ())
  7631. (5274 #f 5270 ())
  7632. (5275 loop 5270 ())
  7633. (5276 #f 5270 ())
  7634. (5277 #f 5270 ())
  7635. (5278 #f 5270 ())
  7636. (5279 #f 5270 ())
  7637. (5280 #f 5237 ())
  7638. (5281 #f 5237 ())
  7639. (5282 #f 5237 ())
  7640. (5283 #f 5237 ())
  7641. (5284 #f 5237 ())
  7642. (5285 loop 5284 ())
  7643. (5286 #f 5237 ())
  7644. (5287 loop 5286 ())
  7645. (5288 #f 5237 ())
  7646. (5289 loop 5288 ())
  7647. (5290 #f 5237 ())
  7648. (5291 loop 5290 ())
  7649. (5292 #f 5237 ())
  7650. (5293 loop 5292 ())
  7651. (5294 #f 5237 ())
  7652. (5295 loop 5294 ())
  7653. (5296 #f 5237 ())
  7654. (5297 loop 5296 ())
  7655. (5298 #f 5237 ())
  7656. (5299 loop 5298 ())
  7657. (5300 #f 5237 ())
  7658. (5301 loop 5300 ())
  7659. (5302 #f 5237 ())
  7660. (5303 loop 5302 ())
  7661. (5304 #f 5237 ())
  7662. (5305 loop 5304 ())
  7663. (5306 #f 5237 ())
  7664. (5307 #f 5237 ())
  7665. (5308 #f 5237 ())
  7666. (5309 #f 5237 ())
  7667. (5310 #f 5237 ())
  7668. (5311 #f 5237 ())
  7669. (5312 #f 5237 ())
  7670. (5313 #f 5237 ())
  7671. (5314 #f 5237 ())
  7672. (5315 loop 5314 ())
  7673. (5316 #f 5237 ())
  7674. (5317 #f 5237 ())
  7675. (5318 #f 5237 ())
  7676. (5319 #f 5237 ())
  7677. (5320 #f 5237 ())
  7678. (5321 #f 5320 ())
  7679. (5322 #f 5237 ())
  7680. (5323 #f 5322 ())
  7681. (5324 #f 5322 ())
  7682. (5325 #f 5237 ())
  7683. (5326 #f 5237 ())
  7684. (5327 #f 5326 ())
  7685. (5328 parse-package-clauses 5237 ())
  7686. (5329 loop 5328 ())
  7687. (5330 #f 5237 ())
  7688. (5331 #f 5330 ())
  7689. (5332 #f 5331 ())
  7690. (5333 #f 5330 ())
  7691. (5334 #f 5237 ())
  7692. (5335 #f 5237 ())
  7693. (5336 #f 5237 ())
  7694. (5337 loop 5336 ())
  7695. (5338 #f 5237 ())
  7696. (5339 #f 5237 ())
  7697. (5340 #f 5237 ())
  7698. (5341 #f 5237 ())
  7699. (5342 loop 5341 ())
  7700. (5343 #f 5341 ())
  7701. (5344 #f 5341 ())
  7702. (5345 #f 5237 ())
  7703. (5346 #f 5237 ())
  7704. (5347 #f 5237 ())
  7705. (5348 #f #f ())
  7706. -