initial.debug 186 KB

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