initial.debug 235 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459
  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 text-codecs)
  27. (25 encodings)
  28. (26 os-strings)
  29. (27 i/o)
  30. (28 channel-i/o)
  31. (29 channel-ports)
  32. (30 simple-conditions)
  33. (31 writing)
  34. (32 reading)
  35. (33 scheme-level-2)
  36. (34 features)
  37. (35 templates)
  38. (36 continuations)
  39. (37 more-types)
  40. (38 enumerated)
  41. (39 architecture)
  42. (40 vm-data)
  43. (41 vm-exceptions)
  44. (42 exceptions)
  45. (43 interrupts)
  46. (44 threads)
  47. (45 proposals)
  48. (46 scheduler)
  49. (47 root-scheduler)
  50. (48 enum-case)
  51. (49 queues)
  52. (50 condvars)
  53. (51 usual-resumer)
  54. (52 weak)
  55. (53 meta-types)
  56. (54 bindings)
  57. (55 names)
  58. (56 thingies)
  59. (57 nodes)
  60. (58 compiler-envs)
  61. (59 syntactic)
  62. (60 usual-macros)
  63. (61 var-utilities)
  64. (62 debug-data)
  65. (63 segments)
  66. (64 primops)
  67. (65 reconstruction)
  68. (66 compiler)
  69. (67 frames)
  70. (68 reading-forms)
  71. (69 flat-environments)
  72. (70 interfaces)
  73. (71 packages)
  74. (72 scan-package)
  75. (73 optimizer)
  76. (74 compile-packages)
  77. (75 defpackage)
  78. (76 types)
  79. (77 module-system)
  80. (78 usages)
  81. (79 analysis)
  82. (80 inline)
  83. (81 strong)
  84. (82 tables)
  85. (83 filenames)
  86. (84 environments)
  87. (85 evaluation)
  88. (86 ensures-loaded)
  89. (87 for-reification)
  90. (88 scheme)
  91. (89 mini-command)
  92. (90 initial-system)
  93. -
  94. ; Location uid -> (name . package-uid)
  95. (0 (and . 14))
  96. (1 (cond . 14))
  97. (2 (do . 14))
  98. (3 (let . 14))
  99. (4 (let* . 14))
  100. (5 (or . 14))
  101. (6 (code-quote . 14))
  102. (7 (quote . 14))
  103. (8 (unspecific . 14))
  104. (9 (define-syntax . 14))
  105. (10 (lambda . 14))
  106. (11 (begin . 14))
  107. (12 (unassigned . 14))
  108. (13 (flat-lambda . 14))
  109. (14 (primitive-procedure . 14))
  110. (15 (define . 14))
  111. (16 (if . 14))
  112. (17 (pure-letrec . 14))
  113. (18 (letrec-syntax . 14))
  114. (19 (%file-name% . 14))
  115. (20 (let-syntax . 14))
  116. (21 (structure-ref . 14))
  117. (22 (loophole . 14))
  118. (23 (letrec . 14))
  119. (24 (lap . 14))
  120. (25 (set! . 14))
  121. (26 (call . 14))
  122. (27 (all-operators . 14))
  123. (28 (atan . 14))
  124. (29 (set-location-defined?! . 14))
  125. (30 (acos . 14))
  126. (31 (vm-extension . 14))
  127. (32 (asin . 14))
  128. (33 (system-parameter . 14))
  129. (34 (location-defined? . 14))
  130. (35 (time . 14))
  131. (36 (template-set! . 14))
  132. (37 (set-current-proposal! . 14))
  133. (38 (cons . 14))
  134. (39 (wait . 14))
  135. (40 (poll . 14))
  136. (41 (trap . 14))
  137. (42 (assq . 14))
  138. (43 (resume-interrupted-call-to-native-code . 14))
  139. (44 (current-proposal . 14))
  140. (45 (make-weak-pointer . 14))
  141. (46 (scalar-value? . 14))
  142. (47 (lookup-shared-binding . 14))
  143. (48 (push . 14))
  144. (49 (provisional-set-contents! . 14))
  145. (50 (set-contents! . 14))
  146. (51 (resume-interrupted-opcode-to-byte-code . 14))
  147. (52 (read-char . 14))
  148. (53 (make-cell . 14))
  149. (54 (provisional-contents . 14))
  150. (55 (sqrt . 14))
  151. (56 (* . 14))
  152. (57 (contents . 14))
  153. (58 (+ . 14))
  154. (59 (peek-char . 14))
  155. (60 (- . 14))
  156. (61 (continuation-set! . 14))
  157. (62 (/ . 14))
  158. (63 (weak-pointer? . 14))
  159. (64 (atan1 . 14))
  160. (65 (atan2 . 14))
  161. (66 (quotient . 14))
  162. (67 (close-channel . 14))
  163. (68 (channel-abort . 14))
  164. (69 (read-byte . 14))
  165. (70 (char? . 14))
  166. (71 (< . 14))
  167. (72 (= . 14))
  168. (73 (provisional-set-port-data! . 14))
  169. (74 (cell? . 14))
  170. (75 (> . 14))
  171. (76 (make-location . 14))
  172. (77 (imag-part . 14))
  173. (78 (channel-parameter . 14))
  174. (79 (set-port-data! . 14))
  175. (80 (make-template . 14))
  176. (81 (scalar-value->char . 14))
  177. (82 (char->scalar-value . 14))
  178. (83 (real? . 14))
  179. (84 (peek-byte . 14))
  180. (85 (real-part . 14))
  181. (86 (provisional-port-data . 14))
  182. (87 (record-length . 14))
  183. (88 (port-data . 14))
  184. (89 (pair? . 14))
  185. (90 (provisional-set-port-lock! . 14))
  186. (91 (make-port . 14))
  187. (92 (set-port-lock! . 14))
  188. (93 (bit-count . 14))
  189. (94 (provisional-checked-record-ref . 14))
  190. (95 (return-from-exception . 14))
  191. (96 (provisional-port-lock . 14))
  192. (97 (location? . 14))
  193. (98 (checked-record-ref . 14))
  194. (99 (channel-maybe-read . 14))
  195. (100 (add-finalizer! . 14))
  196. (101 (rational? . 14))
  197. (102 (copy-string-chars! . 14))
  198. (103 (template? . 14))
  199. (104 (port-lock . 14))
  200. (105 (vector-length . 14))
  201. (106 (make-continuation . 14))
  202. (107 (provisional-shared-binding-ref . 14))
  203. (108 (string-length . 14))
  204. (109 (shared-binding-ref . 14))
  205. (110 (port? . 14))
  206. (111 (angle . 14))
  207. (112 (false . 14))
  208. (113 (remainder . 14))
  209. (114 (continuation? . 14))
  210. (115 (channel-ready? . 14))
  211. (116 (binary-reduce1 . 14))
  212. (117 (binary-reduce2 . 14))
  213. (118 (char<? . 14))
  214. (119 (char=? . 14))
  215. (120 (<= . 14))
  216. (121 (magnitude . 14))
  217. (122 (>= . 14))
  218. (123 (with-continuation . 14))
  219. (124 (floor . 14))
  220. (125 (provisional-checked-record-set! . 14))
  221. (126 (apply . 14))
  222. (127 (memory-status . 14))
  223. (128 (checked-record-set! . 14))
  224. (129 (inexact->exact . 14))
  225. (130 (exact->inexact . 14))
  226. (131 (provisional-set-port-crlf?! . 14))
  227. (132 (extended-number-length . 14))
  228. (133 (set-port-crlf?! . 14))
  229. (134 (open-channels-list . 14))
  230. (135 (provisional-shared-binding-set! . 14))
  231. (136 (channel-id . 14))
  232. (137 (provisional-port-crlf? . 14))
  233. (138 (shared-binding-set! . 14))
  234. (139 (port-crlf? . 14))
  235. (140 (numerator . 14))
  236. (141 (eof-object . 14))
  237. (142 (byte-vector-length . 14))
  238. (143 (resume-native-poll . 14))
  239. (144 (record-ref . 14))
  240. (145 (make-polar . 14))
  241. (146 (write-char . 14))
  242. (147 (symbol->string . 14))
  243. (148 (exact? . 14))
  244. (149 (push-false . 14))
  245. (150 (provisional-vector-ref . 14))
  246. (151 (vector-ref . 14))
  247. (152 (set-current-thread! . 14))
  248. (153 (provisional-set-port-index! . 14))
  249. (154 (immutable? . 14))
  250. (155 (set-exception-handlers! . 14))
  251. (156 (string-ref . 14))
  252. (157 (set-port-index! . 14))
  253. (158 (provisional-set-port-limit! . 14))
  254. (159 (make-shared-binding . 14))
  255. (160 (current-thread . 14))
  256. (161 (provisional-port-index . 14))
  257. (162 (channel-status . 14))
  258. (163 (set-port-limit! . 14))
  259. (164 (shared-binding-name . 14))
  260. (165 (port-index . 14))
  261. (166 (make-immutable! . 14))
  262. (167 (write-byte . 14))
  263. (168 (byte-vector-logging-ref . 14))
  264. (169 (set-enabled-interrupts! . 14))
  265. (170 (provisional-port-limit . 14))
  266. (171 (port-limit . 14))
  267. (172 (undefine-shared-binding . 14))
  268. (173 (channel-close-silently? . 14))
  269. (174 (attempt-copy-bytes! . 14))
  270. (175 (record-set! . 14))
  271. (176 (shared-binding? . 14))
  272. (177 (eof-object? . 14))
  273. (178 (set-interrupt-handlers! . 14))
  274. (179 (record . 14))
  275. (180 (schedule-interrupt . 14))
  276. (181 (channel-maybe-write . 14))
  277. (182 (provisional-vector-set! . 14))
  278. (183 (extended-number-ref . 14))
  279. (184 (vector-set! . 14))
  280. (185 (decode-char . 14))
  281. (186 (copy-bytes! . 14))
  282. (187 (string-set! . 14))
  283. (188 (call-external-value . 14))
  284. (189 (values . 14))
  285. (190 (intern . 14))
  286. (191 (vector . 14))
  287. (192 (write-image-low . 14))
  288. (193 (provisional-byte-vector-ref . 14))
  289. (194 (encode-char . 14))
  290. (195 (byte-vector-logging-set! . 14))
  291. (196 (byte-vector-ref . 14))
  292. (197 (make-double . 14))
  293. (198 (provisional-set-location-id! . 14))
  294. (199 (make-record . 14))
  295. (200 (set-location-id! . 14))
  296. (201 (provisional-location-id . 14))
  297. (202 (decode-char! . 14))
  298. (203 (location-id . 14))
  299. (204 (bitwise-and . 14))
  300. (205 (eq? . 14))
  301. (206 (encode-char! . 14))
  302. (207 (double? . 14))
  303. (208 (extended-number-set! . 14))
  304. (209 (make-vector . 14))
  305. (210 (record? . 14))
  306. (211 (provisional-set-port-buffer! . 14))
  307. (212 (make-string . 14))
  308. (213 (find-undefined-imported-bindings . 14))
  309. (214 (set-port-buffer! . 14))
  310. (215 (primitive-catch . 14))
  311. (216 (string-hash . 14))
  312. (217 (provisional-byte-vector-set! . 14))
  313. (218 (template-length . 14))
  314. (219 (provisional-port-buffer . 14))
  315. (220 (number? . 14))
  316. (221 (provisional-set-port-pending-cr?! . 14))
  317. (222 (provisional-set-port-text-codec-spec! . 14))
  318. (223 (port-buffer . 14))
  319. (224 (byte-vector-set! . 14))
  320. (225 (bitwise-ior . 14))
  321. (226 (set-port-pending-cr?! . 14))
  322. (227 (set-port-text-codec-spec! . 14))
  323. (228 (provisional-set-car! . 14))
  324. (229 (provisional-set-cdr! . 14))
  325. (230 (set-car! . 14))
  326. (231 (provisional-port-pending-cr? . 14))
  327. (232 (provisional-port-text-codec-spec . 14))
  328. (233 (closure-env . 14))
  329. (234 (vector? . 14))
  330. (235 (bitwise-not . 14))
  331. (236 (set-cdr! . 14))
  332. (237 (port-pending-cr? . 14))
  333. (238 (port-text-codec-spec . 14))
  334. (239 (provisional-car . 14))
  335. (240 (symbol? . 14))
  336. (241 (string? . 14))
  337. (242 (provisional-cdr . 14))
  338. (243 (car . 14))
  339. (244 (bitwise-xor . 14))
  340. (245 (cdr . 14))
  341. (246 (find-all-records . 14))
  342. (247 (continuation-length . 14))
  343. (248 (log . 14))
  344. (249 (message . 14))
  345. (250 (tan . 14))
  346. (251 (collect . 14))
  347. (252 (cos . 14))
  348. (253 (channel-os-index . 14))
  349. (254 (provisional-set-port-status! . 14))
  350. (255 (make-extended-number . 14))
  351. (256 (set-port-status! . 14))
  352. (257 (sin . 14))
  353. (258 (exp . 14))
  354. (259 (provisional-port-status . 14))
  355. (260 (pop . 14))
  356. (261 (port-status . 14))
  357. (262 (return-from-callback . 14))
  358. (263 (make-byte-vector . 14))
  359. (264 (weak-pointer-ref . 14))
  360. (265 (call-with-values . 14))
  361. (266 (denominator . 14))
  362. (267 (reverse-list->string . 14))
  363. (268 (extended-number? . 14))
  364. (269 (shared-binding-is-import? . 14))
  365. (270 (provisional-cell-ref . 14))
  366. (271 (return-from-native-exception . 14))
  367. (272 (os-error-message . 14))
  368. (273 (find-all . 14))
  369. (274 (cell-ref . 14))
  370. (275 (byte-vector? . 14))
  371. (276 (string=? . 14))
  372. (277 (open-channel . 14))
  373. (278 (channel? . 14))
  374. (279 (unassigned-check . 14))
  375. (280 (make-rectangular . 14))
  376. (281 (set-session-data! . 14))
  377. (282 (maybe-commit . 14))
  378. (283 (template-ref . 14))
  379. (284 (make-closure . 14))
  380. (285 (session-data . 14))
  381. (286 (integer? . 14))
  382. (287 (signal-condition . 14))
  383. (288 (provisional-set-port-pending-eof?! . 14))
  384. (289 (port-handler . 14))
  385. (290 (set-port-pending-eof?! . 14))
  386. (291 (arithmetic-shift . 14))
  387. (292 (provisional-port-pending-eof? . 14))
  388. (293 (provisional-cell-set! . 14))
  389. (294 (complex? . 14))
  390. (295 (port-pending-eof? . 14))
  391. (296 (cell-set! . 14))
  392. (297 (closure? . 14))
  393. (298 (continuation-ref . 14))
  394. (299 (closure-template . 14))
  395. (300 (current-cont . 14))
  396. (301 (char->ascii . 14))
  397. (302 (ascii->char . 14))
  398. (303 (char->integer . 14))
  399. (304 (integer->char . 14))
  400. (305 (ascii-limit . 14))
  401. (306 (ascii-whitespaces . 14))
  402. (307 (procedure? . 14))
  403. (308 (invoke-closure . 14))
  404. (309 (primitive-cwcc . 14))
  405. (310 (make-undefined-location . 14))
  406. (311 (location-assigned? . 14))
  407. (312 (cell-unassigned? . 14))
  408. (313 (vector-unassigned? . 14))
  409. (314 (string-copy . 14))
  410. (315 (string->symbol . 14))
  411. (316 (input-port? . 14))
  412. (317 (output-port? . 14))
  413. (318 (record-type . 14))
  414. (319 (make-code-vector . 14))
  415. (320 (code-vector? . 14))
  416. (321 (code-vector-length . 14))
  417. (322 (code-vector-ref . 14))
  418. (323 (code-vector-set! . 14))
  419. (324 (lookup-imported-binding . 14))
  420. (325 (lookup-exported-binding . 14))
  421. (326 (define-imported-binding . 14))
  422. (327 (define-exported-binding . 14))
  423. (328 (undefine-imported-binding . 14))
  424. (329 (undefine-exported-binding . 14))
  425. (330 (byte-vector . 14))
  426. (331 (secret-length . 14))
  427. (332 (debug-message . 14))
  428. (333 (write-image . 14))
  429. (334 (vector-prefix->list . 14))
  430. (335 (empty-log . 14))
  431. (336 (make-proposal . 14))
  432. (337 (make-condition . 14))
  433. (338 (signal . 14))
  434. (339 (error . 14))
  435. (340 (warn . 14))
  436. (341 (note . 14))
  437. (342 (syntax-error . 14))
  438. (343 (call-error . 14))
  439. (344 (case . 15))
  440. (345 (quasiquote . 15))
  441. (346 (syntax-rules . 15))
  442. (347 (char-whitespace? . 15))
  443. (348 (char-whitespace?-proc . 15))
  444. (349 (char-lower-case? . 15))
  445. (350 (char-lower-case?-proc . 15))
  446. (351 (char-upper-case? . 15))
  447. (352 (char-upper-case?-proc . 15))
  448. (353 (char-numeric? . 15))
  449. (354 (char-numeric?-proc . 15))
  450. (355 (char-alphabetic? . 15))
  451. (356 (char-alphabetic?-proc . 15))
  452. (357 (char-case-delta . 15))
  453. (358 (make-character-map . 15))
  454. (359 (upcase-map . 15))
  455. (360 (char-upcase . 15))
  456. (361 (char-upcase-proc . 15))
  457. (362 (downcase-map . 15))
  458. (363 (char-downcase . 15))
  459. (364 (char-downcase-proc . 15))
  460. (365 (char-foldcase . 15))
  461. (366 (char-foldcase-proc . 15))
  462. (367 (char-ci-compare . 15))
  463. (368 (char-ci=? . 15))
  464. (369 (char-ci<? . 15))
  465. (370 (char-ci<=? . 15))
  466. (371 (char-ci>? . 15))
  467. (372 (char-ci>=? . 15))
  468. (373 (set-char-map-procedures! . 15))
  469. (374 (not . 15))
  470. (375 (boolean? . 15))
  471. (376 (eqv? . 15))
  472. (377 (equal? . 15))
  473. (378 (max . 15))
  474. (379 (min . 15))
  475. (380 (max-or-min . 15))
  476. (381 (abs . 15))
  477. (382 (zero? . 15))
  478. (383 (positive? . 15))
  479. (384 (negative? . 15))
  480. (385 (even? . 15))
  481. (386 (odd? . 15))
  482. (387 (caar . 15))
  483. (388 (cadr . 15))
  484. (389 (cdar . 15))
  485. (390 (cddr . 15))
  486. (391 (caaar . 15))
  487. (392 (caadr . 15))
  488. (393 (cadar . 15))
  489. (394 (caddr . 15))
  490. (395 (cdaar . 15))
  491. (396 (cdadr . 15))
  492. (397 (cddar . 15))
  493. (398 (cdddr . 15))
  494. (399 (caaaar . 15))
  495. (400 (caaadr . 15))
  496. (401 (caadar . 15))
  497. (402 (caaddr . 15))
  498. (403 (cadaar . 15))
  499. (404 (cadadr . 15))
  500. (405 (caddar . 15))
  501. (406 (cadddr . 15))
  502. (407 (cdaaar . 15))
  503. (408 (cdaadr . 15))
  504. (409 (cdadar . 15))
  505. (410 (cdaddr . 15))
  506. (411 (cddaar . 15))
  507. (412 (cddadr . 15))
  508. (413 (cdddar . 15))
  509. (414 (cddddr . 15))
  510. (415 (null? . 15))
  511. (416 (list . 15))
  512. (417 (length . 15))
  513. (418 (real-length . 15))
  514. (419 (append . 15))
  515. (420 (reverse . 15))
  516. (421 (append-reverse . 15))
  517. (422 (list-tail . 15))
  518. (423 (list-ref . 15))
  519. (424 (mem . 15))
  520. (425 (memq . 15))
  521. (426 (memv . 15))
  522. (427 (member . 15))
  523. (428 (ass . 15))
  524. (429 (assv . 15))
  525. (430 (assoc . 15))
  526. (431 (list? . 15))
  527. (432 (char>? . 15))
  528. (433 (char>=? . 15))
  529. (434 (char<=? . 15))
  530. (435 (string . 15))
  531. (436 (substring . 15))
  532. (437 (string-append . 15))
  533. (438 (string->list . 15))
  534. (439 (list->string . 15))
  535. (440 (string-fill! . 15))
  536. (441 (make-string=? . 15))
  537. (442 (string-ci=?-proc . 15))
  538. (443 (string-ci=? . 15))
  539. (444 (make-string<? . 15))
  540. (445 (string<? . 15))
  541. (446 (string-ci<?-proc . 15))
  542. (447 (string-ci<? . 15))
  543. (448 (string>? . 15))
  544. (449 (string<=? . 15))
  545. (450 (string>=? . 15))
  546. (451 (string-ci>? . 15))
  547. (452 (string-ci<=? . 15))
  548. (453 (string-ci>=? . 15))
  549. (454 (set-string-ci-procedures! . 15))
  550. (455 (vector->list . 15))
  551. (456 (list->vector . 15))
  552. (457 (vector-fill! . 15))
  553. (458 (map . 15))
  554. (459 (map1 . 15))
  555. (460 (map2+ . 15))
  556. (461 (for-each . 15))
  557. (462 (for-each1 . 15))
  558. (463 (for-each2+ . 15))
  559. (464 (delay . 15))
  560. (465 (make-promise . 15))
  561. (466 (force . 15))
  562. (467 (unspecific . 15))
  563. (468 (reduce . 15))
  564. (469 (filter . 15))
  565. (470 (pos . 15))
  566. (471 (posq . 15))
  567. (472 (posv . 15))
  568. (473 (position . 15))
  569. (474 (any . 15))
  570. (475 (every . 15))
  571. (476 (sublist . 15))
  572. (477 (last . 15))
  573. (478 (insert . 15))
  574. (479 (fold . 15))
  575. (480 (fold->2 . 15))
  576. (481 (fold->3 . 15))
  577. (482 (mvlet . 15))
  578. (483 (mvlet-helper . 15))
  579. (484 (copy-vars . 15))
  580. (485 (mvlet* . 15))
  581. (486 (inexact? . 15))
  582. (487 (modulo . 15))
  583. (488 (ceiling . 15))
  584. (489 (truncate . 15))
  585. (490 (round . 15))
  586. (491 (gcd . 15))
  587. (492 (euclid . 15))
  588. (493 (lcm . 15))
  589. (494 (expt . 15))
  590. (495 (raise-to-integer-power . 15))
  591. (496 (rationalize . 15))
  592. (497 (simplest-rational . 15))
  593. (498 (*record-type-uid* . 16))
  594. (499 (*record-type* . 16))
  595. (500 (make-record-type . 16))
  596. (501 (record-type? . 16))
  597. (502 (record-type-resumer . 16))
  598. (503 (set-record-type-resumer! . 16))
  599. (504 (record-type-uid . 16))
  600. (505 (record-type-name . 16))
  601. (506 (record-type-field-names . 16))
  602. (507 (record-type-number-of-fields . 16))
  603. (508 (record-type-discloser . 16))
  604. (509 (set-record-type-discloser! . 16))
  605. (510 (record-type-fields . 16))
  606. (511 (record-field-index . 16))
  607. (512 (record-constructor . 16))
  608. (513 (record-accessor . 16))
  609. (514 (record-modifier . 16))
  610. (515 (record-predicate . 16))
  611. (516 (define-record-discloser . 16))
  612. (517 (make-default-record-discloser . 16))
  613. (518 (disclose-record . 16))
  614. (519 (define-record-resumer . 16))
  615. (520 (default-record-resumer . 16))
  616. (521 (initialize-records! . 16))
  617. (522 (resume-record . 16))
  618. (523 (:record-type . 16))
  619. (524 (define-record-type . 18))
  620. (525 (define-synchronized-record-type . 18))
  621. (526 (define-constructor . 18))
  622. (527 (define-accessors . 18))
  623. (528 (define-accessor . 18))
  624. (529 (ref-proc . 18))
  625. (530 (set-proc . 18))
  626. (531 (:simple-type . 19))
  627. (532 (really-make-simple-type . 19))
  628. (533 (simple-type-id . 19))
  629. (534 (simple-type-priority . 19))
  630. (535 (simple-type-predicate . 19))
  631. (536 (simple-type-superiors . 19))
  632. (537 (simple-type? . 19))
  633. (538 (make-simple-type . 19))
  634. (539 (compute-priority . 19))
  635. (540 (*increment* . 19))
  636. (541 (%type-priority . 19))
  637. (542 (%type-predicate . 19))
  638. (543 (%same-type? . 19))
  639. (544 (define-simple-type . 19))
  640. (545 (:syntax . 19))
  641. (546 (:values . 19))
  642. (547 (value? . 19))
  643. (548 (:value . 19))
  644. (549 (:zero . 19))
  645. (550 (:number . 19))
  646. (551 (:complex . 19))
  647. (552 (:real . 19))
  648. (553 (:rational . 19))
  649. (554 (:integer . 19))
  650. (555 (:exact-integer . 19))
  651. (556 (:boolean . 19))
  652. (557 (:symbol . 19))
  653. (558 (:char . 19))
  654. (559 (:null . 19))
  655. (560 (:pair . 19))
  656. (561 (:vector . 19))
  657. (562 (:string . 19))
  658. (563 (:procedure . 19))
  659. (564 (:input-port . 19))
  660. (565 (:output-port . 19))
  661. (566 (:eof-object . 19))
  662. (567 (:record . 19))
  663. (568 (record-type-priority . 19))
  664. (569 (:method-info . 19))
  665. (570 (really-make-method-info . 19))
  666. (571 (method-info-proc . 19))
  667. (572 (method-info-n-ary? . 19))
  668. (573 (method-info-types . 19))
  669. (574 (method-info? . 19))
  670. (575 (make-method-info . 19))
  671. (576 (empty-method-list . 19))
  672. (577 (insert-method . 19))
  673. (578 (same-applicability? . 19))
  674. (579 (every2 . 19))
  675. (580 (more-specific? . 19))
  676. (581 (more-specific-type? . 19))
  677. (582 (:method-table . 19))
  678. (583 (really-make-method-table . 19))
  679. (584 (method-table-id . 19))
  680. (585 (method-table-set-perform! . 19))
  681. (586 (method-table-get-perform . 19))
  682. (587 (make-generic . 19))
  683. (588 (method-table-prototype . 19))
  684. (589 (method-table-methods . 19))
  685. (590 (set-method-table-methods! . 19))
  686. (591 (method-table? . 19))
  687. (592 (make-method-table . 19))
  688. (593 (make-cell-for-generic . 19))
  689. (594 (add-to-method-table! . 19))
  690. (595 (set-final-method! . 19))
  691. (596 (apply-generic . 19))
  692. (597 (define-generic . 19))
  693. (598 (methods->perform . 19))
  694. (599 (last-action . 19))
  695. (600 (one-action . 19))
  696. (601 (argument-sequence-predicate . 19))
  697. (602 (check-for-next . 19))
  698. (603 (check-next . 19))
  699. (604 (method-info . 19))
  700. (605 (method-internal . 19))
  701. (606 (with-next-method . 19))
  702. (607 (define-method . 19))
  703. (608 (&add-method! . 19))
  704. (609 (add-method! . 19))
  705. (610 (&type-predicate . 19))
  706. (611 (type-predicate . 19))
  707. (612 (&type-priority . 19))
  708. (613 (type-priority . 19))
  709. (614 (&type-superiors . 19))
  710. (615 (type-superiors . 19))
  711. (616 (&same-type? . 19))
  712. (617 (same-type? . 19))
  713. (618 (:singleton . 19))
  714. (619 (singleton . 19))
  715. (620 (singleton-value . 19))
  716. (621 (compare-to . 19))
  717. (622 (&disclose . 19))
  718. (623 (disclose . 19))
  719. (624 (proc->discloser . 19))
  720. (625 (&number->string . 20))
  721. (626 (real-number->string . 20))
  722. (627 (number->string . 20))
  723. (628 (integer->string . 20))
  724. (629 (string->number . 20))
  725. (630 (&really-string->number . 20))
  726. (631 (really-string->number . 20))
  727. (632 (:integer-string . 20))
  728. (633 (set-exactness . 20))
  729. (634 (string->integer . 20))
  730. (635 (:thread . 21))
  731. (636 (make-thread . 21))
  732. (637 (thread-proposal . 21))
  733. (638 (thread-dynamic-point . 21))
  734. (639 (thread-dynamic-env . 21))
  735. (640 (get-dynamic-env . 21))
  736. (641 (set-dynamic-env! . 21))
  737. (642 (get-dynamic-point . 21))
  738. (643 (set-dynamic-point! . 21))
  739. (644 (initialize-dynamic-state! . 21))
  740. (645 (with-dynamic-env . 21))
  741. (646 (empty-dynamic-env . 21))
  742. (647 (:fluid . 21))
  743. (648 (make-fluid . 21))
  744. (649 (fluid-top-level-value . 21))
  745. (650 (set-fluid-top-level-value! . 21))
  746. (651 (fluid . 21))
  747. (652 (set-fluid! . 21))
  748. (653 (let-fluid . 21))
  749. (654 (let-fluids . 21))
  750. (655 (fluid-cell-ref . 21))
  751. (656 (fluid-cell-set! . 21))
  752. (657 (define-enumeration . 38))
  753. (658 (components . 38))
  754. (659 (enum . 38))
  755. (660 (enumerand->name . 38))
  756. (661 (name->enumerand . 38))
  757. (662 (lookup-enumerand . 38))
  758. (663 (architecture-version . 39))
  759. (664 (bits-used-per-byte . 39))
  760. (665 (byte-limit . 39))
  761. (666 (two-byte-limit . 39))
  762. (667 (define-instruction-set . 39))
  763. (668 (op . 39))
  764. (669 (op-enumeration . 39))
  765. (670 (op-count . 39))
  766. (671 (opcode-arg-specs . 39))
  767. (672 (interrupt . 39))
  768. (673 (interrupt-enumeration . 39))
  769. (674 (interrupt-count . 39))
  770. (675 (exception . 39))
  771. (676 (exception-enumeration . 39))
  772. (677 (exception-count . 39))
  773. (678 (current-port-marker . 39))
  774. (679 (current-port-marker-enumeration . 39))
  775. (680 (current-port-marker-count . 39))
  776. (681 (maximum-stack-args . 39))
  777. (682 (*last-protocol* . 39))
  778. (683 (next-protocol . 39))
  779. (684 (two-byte-nargs-protocol . 39))
  780. (685 (two-byte-nargs+list-protocol . 39))
  781. (686 (ignore-values-protocol . 39))
  782. (687 (big-stack-protocol . 39))
  783. (688 (args+nargs-protocol . 39))
  784. (689 (nary-dispatch-protocol . 39))
  785. (690 (call-with-values-protocol . 39))
  786. (691 (bottom-of-stack-protocol . 39))
  787. (692 (native-protocol-mask . 39))
  788. (693 (maximum-external-call-args . 39))
  789. (694 (default-stack-space . 39))
  790. (695 (continuation-stack-size . 39))
  791. (696 (available-stack-space . 39))
  792. (697 (continuation-cells . 39))
  793. (698 (continuation-pc-index . 39))
  794. (699 (continuation-code-index . 39))
  795. (700 (continuation-cont-index . 39))
  796. (701 (gc-mask-size-offset . 39))
  797. (702 (gc-mask-offset . 39))
  798. (703 (exception-continuation-cells . 39))
  799. (704 (exception-cont-size-index . 39))
  800. (705 (exception-cont-pc-index . 39))
  801. (706 (exception-cont-code-index . 39))
  802. (707 (exception-cont-exception-index . 39))
  803. (708 (exception-cont-instruction-size-index . 39))
  804. (709 (time-option . 39))
  805. (710 (time-option-enumeration . 39))
  806. (711 (time-option-count . 39))
  807. (712 (memory-status-option . 39))
  808. (713 (memory-status-option-enumeration . 39))
  809. (714 (memory-status-option-count . 39))
  810. (715 (channel-status-option . 39))
  811. (716 (channel-status-option-enumeration . 39))
  812. (717 (channel-status-option-count . 39))
  813. (718 (port-status-options . 39))
  814. (719 (port-status-options-enumeration . 39))
  815. (720 (port-status-options-count . 39))
  816. (721 (channel-parameter-option . 39))
  817. (722 (channel-parameter-option-enumeration . 39))
  818. (723 (channel-parameter-option-count . 39))
  819. (724 (text-encoding-option . 39))
  820. (725 (text-encoding-option-enumeration . 39))
  821. (726 (text-encoding-option-count . 39))
  822. (727 (system-parameter-option . 39))
  823. (728 (system-parameter-option-enumeration . 39))
  824. (729 (system-parameter-option-count . 39))
  825. (730 (stob . 39))
  826. (731 (stob-enumeration . 39))
  827. (732 (stob-count . 39))
  828. (733 (least-b-vector-type . 39))
  829. (734 (stob-data . 39))
  830. (735 (call-atomically . 45))
  831. (736 (call-atomically! . 45))
  832. (737 (call-ensuring-atomicity . 45))
  833. (738 (call-ensuring-atomicity! . 45))
  834. (739 (atomically . 45))
  835. (740 (atomically! . 45))
  836. (741 (ensure-atomicity . 45))
  837. (742 (ensure-atomicity! . 45))
  838. (743 (with-new-proposal . 45))
  839. (744 (remove-current-proposal! . 45))
  840. (745 (invalidate-current-proposal! . 45))
  841. (746 (j-random-pair . 45))
  842. (747 (:queue . 49))
  843. (748 (really-make-queue . 49))
  844. (749 (queue? . 49))
  845. (750 (queue-tail . 49))
  846. (751 (set-queue-tail! . 49))
  847. (752 (real-queue-head . 49))
  848. (753 (set-queue-head! . 49))
  849. (754 (queue-uid . 49))
  850. (755 (next-uid . 49))
  851. (756 (make-queue . 49))
  852. (757 (queue-empty? . 49))
  853. (758 (enqueue! . 49))
  854. (759 (queue-head . 49))
  855. (760 (dequeue! . 49))
  856. (761 (maybe-dequeue! . 49))
  857. (762 (empty-queue! . 49))
  858. (763 (on-queue? . 49))
  859. (764 (delete-from-queue! . 49))
  860. (765 (delete-from-queue-if! . 49))
  861. (766 (queue->list . 49))
  862. (767 (list->queue . 49))
  863. (768 (queue-length . 49))
  864. (769 (*condition-types* . 30))
  865. (770 (condition-supertypes . 30))
  866. (771 (define-condition-type . 30))
  867. (772 (*condition-decoder-alist* . 30))
  868. (773 (decode-condition . 30))
  869. (774 (define-condition-decoder . 30))
  870. (775 (condition-type . 30))
  871. (776 (condition-stuff . 30))
  872. (777 (condition-predicate . 30))
  873. (778 (error? . 30))
  874. (779 (call-error? . 30))
  875. (780 (read-error? . 30))
  876. (781 (vm-exception? . 30))
  877. (782 (vm-exception-opcode . 30))
  878. (783 (vm-exception-reason . 30))
  879. (784 (vm-exception-arguments . 30))
  880. (785 (make-vm-exception . 30))
  881. (786 (i/o-error? . 30))
  882. (787 (i/o-error-status . 30))
  883. (788 (i/o-error-message . 30))
  884. (789 (i/o-error-operation . 30))
  885. (790 (i/o-error-arguments . 30))
  886. (791 (make-i/o-error . 30))
  887. (792 (decoding-error? . 30))
  888. (793 (make-decoding-error . 30))
  889. (794 (decoding-error-encoding-name . 30))
  890. (795 (decoding-error-message . 30))
  891. (796 (decoding-error-bytes . 30))
  892. (797 (decoding-error-start . 30))
  893. (798 (warning? . 30))
  894. (799 (syntax-error? . 30))
  895. (800 (note? . 30))
  896. (801 (interrupt? . 30))
  897. (802 (*session-data-initializers* . 23))
  898. (803 (make-session-data-slot! . 23))
  899. (804 (session-data-ref . 23))
  900. (805 (session-data-set! . 23))
  901. (806 (initialize-session-data! . 23))
  902. (807 (initialize-interrupts! . 43))
  903. (808 (interrupt-handlers . 43))
  904. (809 (set-interrupt-handler! . 43))
  905. (810 (get-interrupt-handler . 43))
  906. (811 (no-interrupts . 43))
  907. (812 (all-interrupts . 43))
  908. (813 (with-interrupts-inhibited . 43))
  909. (814 (with-interrupts-allowed . 43))
  910. (815 (disable-interrupts! . 43))
  911. (816 (enable-interrupts! . 43))
  912. (817 (with-interrupts . 43))
  913. (818 (enabled-interrupts . 43))
  914. (819 (*post-gc-procedures* . 43))
  915. (820 (call-after-gc! . 43))
  916. (821 (post-gc-handler . 43))
  917. (822 (required-post-gc-space . 43))
  918. (823 (space-shortage-handler . 43))
  919. (824 (call-before-heap-overflow! . 43))
  920. (825 (dynamic-wind . 22))
  921. (826 (call-with-current-continuation . 22))
  922. (827 (continuation->procedure . 22))
  923. (828 (:point . 22))
  924. (829 (make-point . 22))
  925. (830 (point-parent . 22))
  926. (831 (point-dynamic-env . 22))
  927. (832 (point-out . 22))
  928. (833 (point-in . 22))
  929. (834 (point-depth . 22))
  930. (835 (travel-to-point! . 22))
  931. (836 (define-vm-exception-handler . 41))
  932. (837 (signal-condition . 41))
  933. (838 (signal-vm-exception . 41))
  934. (839 (vm-exception-handlers . 41))
  935. (840 (initialize-vm-exceptions! . 41))
  936. (841 (extend-opcode! . 41))
  937. (842 (template-overhead . 35))
  938. (843 (template-code . 35))
  939. (844 (template-byte-code . 35))
  940. (845 (template-info . 35))
  941. (846 (template-package-id . 35))
  942. (847 (set-template-code! . 35))
  943. (848 (set-template-byte-code! . 35))
  944. (849 (set-template-info! . 35))
  945. (850 (set-template-package-id! . 35))
  946. (851 (:closure . 37))
  947. (852 (:code-vector . 37))
  948. (853 (:location . 37))
  949. (854 (:cell . 37))
  950. (855 (:template . 37))
  951. (856 (:channel . 37))
  952. (857 (:port . 37))
  953. (858 (:double . 37))
  954. (859 (:weak-pointer . 37))
  955. (860 (:shared-binding . 37))
  956. (861 (make-ref . 36))
  957. (862 (continuation-cont . 36))
  958. (863 (real-continuation-code . 36))
  959. (864 (real-continuation-pc . 36))
  960. (865 (vm-exception-cont-pc . 36))
  961. (866 (vm-exception-cont-code . 36))
  962. (867 (vm-exception-continuation-exception . 36))
  963. (868 (vm-exception-continuation? . 36))
  964. (869 (call-with-values-continuation? . 36))
  965. (870 (continuation-pc . 36))
  966. (871 (continuation-code . 36))
  967. (872 (continuation-template . 36))
  968. (873 (continuation-arg . 36))
  969. (874 (continuation-arg-count . 36))
  970. (875 (:continuation . 36))
  971. (876 (continuation-preview . 36))
  972. (877 (really-signal-condition . 42))
  973. (878 (with-handler . 42))
  974. (879 ($exception-handlers . 42))
  975. (880 (initialize-exceptions! . 42))
  976. (881 (last-resort-exception-handler . 42))
  977. (882 (report-utter-lossage . 42))
  978. (883 (ignore-errors . 42))
  979. (884 (report-errors-as-warnings . 42))
  980. (885 (with-exception-handler . 42))
  981. (886 (raise . 42))
  982. (887 (guard . 42))
  983. (888 (guard-aux . 42))
  984. (889 (:thread . 44))
  985. (890 (really-make-thread . 44))
  986. (891 (thread-name . 44))
  987. (892 (thread-uid . 44))
  988. (893 (thread-cell . 44))
  989. (894 (set-thread-cell! . 44))
  990. (895 (thread-data . 44))
  991. (896 (set-thread-data! . 44))
  992. (897 (thread-events . 44))
  993. (898 (set-thread-events! . 44))
  994. (899 (thread-current-task . 44))
  995. (900 (set-thread-current-task! . 44))
  996. (901 (thread-scheduler . 44))
  997. (902 (set-thread-scheduler! . 44))
  998. (903 (thread-arguments . 44))
  999. (904 (set-thread-arguments! . 44))
  1000. (905 (thread-continuation . 44))
  1001. (906 (set-thread-continuation! . 44))
  1002. (907 (thread-time . 44))
  1003. (908 (set-thread-time! . 44))
  1004. (909 (thread-proposal . 44))
  1005. (910 (thread-dynamic-point . 44))
  1006. (911 (set-thread-dynamic-point! . 44))
  1007. (912 (thread-dynamic-env . 44))
  1008. (913 (set-thread-dynamic-env! . 44))
  1009. (914 (thread? . 44))
  1010. (915 (*thread-uid* . 44))
  1011. (916 (make-thread . 44))
  1012. (917 (thread-top-level . 44))
  1013. (918 (thread-uid->thread . 44))
  1014. (919 (all-threads . 44))
  1015. (920 (add-event! . 44))
  1016. (921 (next-event! . 44))
  1017. (922 (thunk->continuation . 44))
  1018. (923 (compose-continuation . 44))
  1019. (924 (maybe-dequeue-thread! . 44))
  1020. (925 (thread-queue-empty? . 44))
  1021. (926 (event-type . 44))
  1022. (927 (event-type-enumeration . 44))
  1023. (928 (event-type-count . 44))
  1024. (929 (run . 44))
  1025. (930 (find-and-run-next-thread . 44))
  1026. (931 (debit-thread-times-and-run! . 44))
  1027. (932 (handle-timer-interrupt . 44))
  1028. (933 (run-next-thread . 44))
  1029. (934 (min . 44))
  1030. (935 (switch-to-thread . 44))
  1031. (936 (run-thread . 44))
  1032. (937 (suspend . 44))
  1033. (938 (suspend-to . 44))
  1034. (939 (debit-down! . 44))
  1035. (940 (exit . 44))
  1036. (941 (wait . 44))
  1037. (942 (waiting? . 44))
  1038. (943 (relinquish-timeslice . 44))
  1039. (944 (block . 44))
  1040. (945 (maybe-commit-and-block . 44))
  1041. (946 (maybe-commit-and-block-on-queue . 44))
  1042. (947 (upcall . 44))
  1043. (948 (propogate-upcall . 44))
  1044. (949 (kill-thread! . 44))
  1045. (950 (terminate-thread! . 44))
  1046. (951 (interrupt-thread . 44))
  1047. (952 (get-next-event! . 44))
  1048. (953 (event-pending? . 44))
  1049. (954 (schedule-event . 44))
  1050. (955 (maybe-suspend . 44))
  1051. (956 (really-schedule-event . 44))
  1052. (957 (schedule-wakeup . 44))
  1053. (958 (show-running . 44))
  1054. (959 (running? . 44))
  1055. (960 (spawn . 44))
  1056. (961 (spawn-on-root . 44))
  1057. (962 (spawn-on-scheduler . 44))
  1058. (963 (make-ready . 44))
  1059. (964 (clear-thread-cell! . 44))
  1060. (965 (maybe-commit-and-make-ready . 44))
  1061. (966 (maybe-commit-no-interrupts . 44))
  1062. (967 (make-threads-ready . 44))
  1063. (968 (schedule-interrupt! . 44))
  1064. (969 (cancel-timer-interrupt! . 44))
  1065. (970 (interrupt-timer-time . 44))
  1066. (971 (real-time . 44))
  1067. (972 (with-threads . 44))
  1068. (973 (start-multitasking . 44))
  1069. (974 (deadlock? . 44))
  1070. (975 (terminate? . 44))
  1071. (976 (terminate-current-thread . 44))
  1072. (977 (root-scheduler-slot . 44))
  1073. (978 (root-scheduler . 44))
  1074. (979 (max2 . 44))
  1075. (980 (sleep . 44))
  1076. (981 (coerce-to-nonnegative-integer . 44))
  1077. (982 (register-dozer-unsafe! . 44))
  1078. (983 (register-dozer! . 44))
  1079. (984 (dozers . 44))
  1080. (985 (insert . 44))
  1081. (986 (wake-some-threads . 44))
  1082. (987 (enum-case . 48))
  1083. (988 (:text-codec . 24))
  1084. (989 (really-make-text-codec . 24))
  1085. (990 (text-codec-decode-char-proc . 24))
  1086. (991 (text-codec-encode-char-proc . 24))
  1087. (992 (text-codec-builtin-code . 24))
  1088. (993 (text-codec-names . 24))
  1089. (994 (text-codec? . 24))
  1090. (995 (make-builtin-text-codec . 24))
  1091. (996 (make-text-codec . 24))
  1092. (997 (*builtin-text-codecs* . 24))
  1093. (998 (spec->text-codec . 24))
  1094. (999 (text-codec->spec . 24))
  1095. (1000 (*text-codecs* . 24))
  1096. (1001 (register-text-codec! . 24))
  1097. (1002 (find-text-codec . 24))
  1098. (1003 (define-text-codec . 24))
  1099. (1004 (define-builtin-text-codec . 24))
  1100. (1005 (null-text-codec . 24))
  1101. (1006 (us-ascii-codec . 24))
  1102. (1007 (latin-1-codec . 24))
  1103. (1008 (utf-8-codec . 24))
  1104. (1009 (utf-16le-codec . 24))
  1105. (1010 (utf-16be-codec . 24))
  1106. (1011 (utf-32le-codec . 24))
  1107. (1012 (utf-32be-codec . 24))
  1108. (1013 (:port-handler . 27))
  1109. (1014 (make-port-handler . 27))
  1110. (1015 (port-handler-force . 27))
  1111. (1016 (port-handler-ready? . 27))
  1112. (1017 (port-handler-block . 27))
  1113. (1018 (port-handler-char . 27))
  1114. (1019 (port-handler-byte . 27))
  1115. (1020 (port-handler-close . 27))
  1116. (1021 (port-handler-discloser . 27))
  1117. (1022 (port-handler? . 27))
  1118. (1023 (disclose-port . 27))
  1119. (1024 (initialize-i/o-handlers! . 27))
  1120. (1025 (one-arg-proc->handler . 27))
  1121. (1026 (two-arg-proc->handler . 27))
  1122. (1027 (real-char-ready? . 27))
  1123. (1028 (real-byte-ready? . 27))
  1124. (1029 (read-block . 27))
  1125. (1030 (write-block . 27))
  1126. (1031 (write-string . 27))
  1127. (1032 (output-port-ready? . 27))
  1128. (1033 (force-output . 27))
  1129. (1034 (force-output-if-open . 27))
  1130. (1035 (close-input-port . 27))
  1131. (1036 (close-output-port . 27))
  1132. (1037 (port-text-codec . 27))
  1133. (1038 (set-port-text-codec! . 27))
  1134. (1039 (okay-limits? . 27))
  1135. (1040 (open-port? . 27))
  1136. (1041 (open-port-mask . 27))
  1137. (1042 (input-port-mask . 27))
  1138. (1043 (open-input-port-mask . 27))
  1139. (1044 (open-input-port-status . 27))
  1140. (1045 (open-input-port? . 27))
  1141. (1046 (make-input-port-closed! . 27))
  1142. (1047 (output-port-mask . 27))
  1143. (1048 (open-output-port-mask . 27))
  1144. (1049 (open-output-port-status . 27))
  1145. (1050 (open-output-port? . 27))
  1146. (1051 (make-output-port-closed! . 27))
  1147. (1052 (make-unbuffered-output-port . 27))
  1148. (1053 (make-one-byte-handler . 27))
  1149. (1054 (make-one-char-handler . 27))
  1150. (1055 (cr . 27))
  1151. (1056 (make-write-block-handler . 27))
  1152. (1057 (make-unbuffered-output-port-handler . 27))
  1153. (1058 (null-output-port-handler . 27))
  1154. (1059 (null-output-buffer . 27))
  1155. (1060 (make-null-output-port . 27))
  1156. (1061 (make-buffered-input-port . 27))
  1157. (1062 (make-buffered-output-port . 27))
  1158. (1063 (okay-buffer? . 27))
  1159. (1064 (make-buffered-input-port-handler . 27))
  1160. (1065 (note-buffer-reuse! . 27))
  1161. (1066 (check-buffer-timestamp! . 27))
  1162. (1067 (port-flushed? . 27))
  1163. (1068 (set-port-flushed?! . 27))
  1164. (1069 (make-one-byte-input . 27))
  1165. (1070 (make-one-char-input . 27))
  1166. (1071 (make-byte-ready? . 27))
  1167. (1072 (make-read-block . 27))
  1168. (1073 (get-available-bytes! . 27))
  1169. (1074 (make-buffered-output-port-handler . 27))
  1170. (1075 (make-closer . 27))
  1171. (1076 (make-one-byte-output . 27))
  1172. (1077 (make-one-char-output . 27))
  1173. (1078 (make-write-block . 27))
  1174. (1079 (copy-bytes-out! . 27))
  1175. (1080 (make-forcer . 27))
  1176. (1081 (default-buffer-size . 27))
  1177. (1082 (flush-these-ports . 27))
  1178. (1083 (periodically-force-output! . 27))
  1179. (1084 (output-port-forcers . 27))
  1180. (1085 (periodically-flushed-ports . 27))
  1181. (1086 (make-forcing-thunk . 27))
  1182. (1087 ($current-input-port . 27))
  1183. (1088 ($current-output-port . 27))
  1184. (1089 ($current-error-port . 27))
  1185. (1090 ($current-noise-port . 27))
  1186. (1091 (current-input-port . 27))
  1187. (1092 (current-output-port . 27))
  1188. (1093 (current-error-port . 27))
  1189. (1094 (current-noise-port . 27))
  1190. (1095 (initialize-i/o . 27))
  1191. (1096 (with-current-ports . 27))
  1192. (1097 (call-with-current-input-port . 27))
  1193. (1098 (call-with-current-output-port . 27))
  1194. (1099 (call-with-current-noise-port . 27))
  1195. (1100 (silently . 27))
  1196. (1101 (newline . 27))
  1197. (1102 (byte-ready? . 27))
  1198. (1103 (char-ready? . 27))
  1199. (1104 (output-port-option . 27))
  1200. (1105 (input-port-option . 27))
  1201. (1106 (write . 31))
  1202. (1107 (recurring-write . 31))
  1203. (1108 (write-boolean . 31))
  1204. (1109 (write-number . 31))
  1205. (1110 (write-char-literal . 31))
  1206. (1111 (*nul* . 31))
  1207. (1112 (*alarm* . 31))
  1208. (1113 (*backspace* . 31))
  1209. (1114 (*tab* . 31))
  1210. (1115 (*linefeed* . 31))
  1211. (1116 (*vtab* . 31))
  1212. (1117 (*page* . 31))
  1213. (1118 (*return* . 31))
  1214. (1119 (*escape* . 31))
  1215. (1120 (*rubout* . 31))
  1216. (1121 (*char-name-table* . 31))
  1217. (1122 (character-name . 31))
  1218. (1123 (write-string-literal . 31))
  1219. (1124 (write-list . 31))
  1220. (1125 (quotation? . 31))
  1221. (1126 (write-vector . 31))
  1222. (1127 (write-other . 31))
  1223. (1128 (display-type-name . 31))
  1224. (1129 (display . 31))
  1225. (1130 (read . 32))
  1226. (1131 (sub-read-carefully . 32))
  1227. (1132 (reader-token-marker . 32))
  1228. (1133 (make-reader-token . 32))
  1229. (1134 (reader-token? . 32))
  1230. (1135 (close-paren . 32))
  1231. (1136 (dot . 32))
  1232. (1137 (*dispatch-table-limit* . 32))
  1233. (1138 (read-dispatch-vector . 32))
  1234. (1139 (read-terminating?-vector . 32))
  1235. (1140 (set-standard-syntax! . 32))
  1236. (1141 (sub-read . 32))
  1237. (1142 (sub-read-constituent . 32))
  1238. (1143 (set-standard-read-macro! . 32))
  1239. (1144 (sub-read-list . 32))
  1240. (1145 (*nul* . 32))
  1241. (1146 (*alarm* . 32))
  1242. (1147 (*backspace* . 32))
  1243. (1148 (*tab* . 32))
  1244. (1149 (*linefeed* . 32))
  1245. (1150 (*vtab* . 32))
  1246. (1151 (*page* . 32))
  1247. (1152 (*return* . 32))
  1248. (1153 (*escape* . 32))
  1249. (1154 (*rubout* . 32))
  1250. (1155 (decode-escape . 32))
  1251. (1156 (char-semicolon? . 32))
  1252. (1157 (decode-hex-digits . 32))
  1253. (1158 (char-hex-digit? . 32))
  1254. (1159 (gobble-line . 32))
  1255. (1160 (*sharp-macros* . 32))
  1256. (1161 (define-sharp-macro . 32))
  1257. (1162 (*char-name-table* . 32))
  1258. (1163 (char-scalar-value-literal-delimiter? . 32))
  1259. (1164 (proper-list? . 32))
  1260. (1165 (sub-read-token . 32))
  1261. (1166 (parse-token . 32))
  1262. (1167 (strange-symbol-names . 32))
  1263. (1168 (delimiter? . 32))
  1264. (1169 (char-unicode-whitespace? . 32))
  1265. (1170 (preferred-case . 32))
  1266. (1171 (reading-error . 32))
  1267. (1172 (binary-search . 32))
  1268. (1173 (*non-symbol-constituents-above-127* . 32))
  1269. (1174 (*whitespaces* . 32))
  1270. (1175 (:condvar . 50))
  1271. (1176 (really-make-condvar . 50))
  1272. (1177 (condvar? . 50))
  1273. (1178 (condvar-id . 50))
  1274. (1179 (condvar-value . 50))
  1275. (1180 (set-condvar-value! . 50))
  1276. (1181 (condvar-has-value? . 50))
  1277. (1182 (set-condvar-has-value?! . 50))
  1278. (1183 (condvar-queue . 50))
  1279. (1184 (make-condvar . 50))
  1280. (1185 (maybe-commit-and-wait-for-condvar . 50))
  1281. (1186 (maybe-commit-and-set-condvar! . 50))
  1282. (1187 (condvar-has-waiters? . 50))
  1283. (1188 (channel-maybe-commit-and-read . 28))
  1284. (1189 (channel-maybe-commit-and-write . 28))
  1285. (1190 (note-channel-result! . 28))
  1286. (1191 (channel-write . 28))
  1287. (1192 (channel-maybe-commit-and-close . 28))
  1288. (1193 (input-channel? . 28))
  1289. (1194 (initialize-channel-i/o! . 28))
  1290. (1195 (i/o-completion-handler . 28))
  1291. (1196 (waiting-for-i/o? . 28))
  1292. (1197 (channel-wait-condvars-slot . 28))
  1293. (1198 (channel-condvars . 28))
  1294. (1199 (set-channel-condvars! . 28))
  1295. (1200 (add-channel-condvar! . 28))
  1296. (1201 (wait-for-channel . 28))
  1297. (1202 (fetch-channel-condvar! . 28))
  1298. (1203 (abort-unwanted-reads! . 28))
  1299. (1204 (define-coding-procs . 25))
  1300. (1205 (char-encoding-length/encoding . 25))
  1301. (1206 (string-encoding-length/encoding . 25))
  1302. (1207 (encode-char/encoding . 25))
  1303. (1208 (encode-string/encoding . 25))
  1304. (1209 (string->bytes-n/encoding . 25))
  1305. (1210 (string->bytes/encoding . 25))
  1306. (1211 (decode-char/encoding . 25))
  1307. (1212 (bytes-string-size/encoding . 25))
  1308. (1213 (decode-string/encoding . 25))
  1309. (1214 (bytes->string/encoding . 25))
  1310. (1215 (bytes->string-n/encoding . 25))
  1311. (1216 (primitive-encode-char/text-codec . 25))
  1312. (1217 (primitive-decode-char/text-codec . 25))
  1313. (1218 (char-encoding-length/text-codec . 25))
  1314. (1219 (string-encoding-length/text-codec . 25))
  1315. (1220 (encode-char/text-codec . 25))
  1316. (1221 (encode-string/text-codec . 25))
  1317. (1222 (string->bytes-n/text-codec . 25))
  1318. (1223 (string->bytes/text-codec . 25))
  1319. (1224 (decode-char/text-codec . 25))
  1320. (1225 (bytes-string-size/text-codec . 25))
  1321. (1226 (decode-string/text-codec . 25))
  1322. (1227 (bytes->string/text-codec . 25))
  1323. (1228 (bytes->string-n/text-codec . 25))
  1324. (1229 (define-text-codec-proc . 25))
  1325. (1230 (char-encoding-length . 25))
  1326. (1231 (string-encoding-length . 25))
  1327. (1232 (encode-char . 25))
  1328. (1233 (encode-string . 25))
  1329. (1234 (string->bytes-n . 25))
  1330. (1235 (string->bytes . 25))
  1331. (1236 (decode-char . 25))
  1332. (1237 (bytes-string-size . 25))
  1333. (1238 (decode-string . 25))
  1334. (1239 (bytes->string . 25))
  1335. (1240 (bytes->string-n . 25))
  1336. (1241 (empty-buffer . 25))
  1337. (1242 (encoding-status . 25))
  1338. (1243 (encoding-status-enumeration . 25))
  1339. (1244 (encoding-status-count . 25))
  1340. (1245 (decoding-error . 25))
  1341. (1246 (decoding-status . 25))
  1342. (1247 (decoding-status-enumeration . 25))
  1343. (1248 (decoding-status-count . 25))
  1344. (1249 (char-encoding-length/utf-8 . 25))
  1345. (1250 (string-encoding-length/utf-8 . 25))
  1346. (1251 (encode-char/utf-8 . 25))
  1347. (1252 (encode-string/utf-8 . 25))
  1348. (1253 (string->utf-8-n . 25))
  1349. (1254 (string->utf-8 . 25))
  1350. (1255 (decode-char/utf-8 . 25))
  1351. (1256 (bytes-string-size/utf-8 . 25))
  1352. (1257 (decode-string/utf-8 . 25))
  1353. (1258 (utf-8->string . 25))
  1354. (1259 (utf-8->string-n . 25))
  1355. (1260 (:os-string . 26))
  1356. (1261 (make-os-string . 26))
  1357. (1262 (os-string-byte-vector . 26))
  1358. (1263 (set-os-string-byte-vector! . 26))
  1359. (1264 (os-string-string . 26))
  1360. (1265 (set-os-string-string! . 26))
  1361. (1266 (os-string-text-codec . 26))
  1362. (1267 (os-string? . 26))
  1363. (1268 (*initial-os-string-text-codec* . 26))
  1364. (1269 (initialize-os-string-text-codec! . 26))
  1365. (1270 ($os-string-text-codec . 26))
  1366. (1271 (current-os-string-text-codec . 26))
  1367. (1272 (call-with-os-string-text-codec . 26))
  1368. (1273 (string->os-string . 26))
  1369. (1274 (byte-vector->os-string . 26))
  1370. (1275 (os-string->byte-vector . 26))
  1371. (1276 (os-string->string . 26))
  1372. (1277 (x->os-string . 26))
  1373. (1278 (byte-vector-copy . 26))
  1374. (1279 (:channel-cell . 29))
  1375. (1280 (really-make-channel-cell . 29))
  1376. (1281 (channel-cell? . 29))
  1377. (1282 (channel-cell-sent . 29))
  1378. (1283 (set-channel-cell-sent! . 29))
  1379. (1284 (channel-cell-in-use? . 29))
  1380. (1285 (set-channel-cell-in-use?! . 29))
  1381. (1286 (channel-cell-condvar . 29))
  1382. (1287 (channel-cell-closer . 29))
  1383. (1288 (channel-cell-ref . 29))
  1384. (1289 (make-channel-cell . 29))
  1385. (1290 (port->channel . 29))
  1386. (1291 (port-channel-closer . 29))
  1387. (1292 (fill-buffer! . 29))
  1388. (1293 (channel-port-ready? . 29))
  1389. (1294 (input-channel-handler . 29))
  1390. (1295 (input-channel->port . 29))
  1391. (1296 (input-channel+closer->port . 29))
  1392. (1297 (real-input-channel->port . 29))
  1393. (1298 (empty-buffer! . 29))
  1394. (1299 (send-some . 29))
  1395. (1300 (output-channel-handler . 29))
  1396. (1301 (output-channel->port . 29))
  1397. (1302 (output-channel+closer->port . 29))
  1398. (1303 (real-output-channel->port . 29))
  1399. (1304 (maybe-open-file . 29))
  1400. (1305 (really-open-input-file . 29))
  1401. (1306 (open-input-file . 29))
  1402. (1307 (really-open-output-file . 29))
  1403. (1308 (open-output-file . 29))
  1404. (1309 (call-with-input-file . 29))
  1405. (1310 (call-with-output-file . 29))
  1406. (1311 (with-input-from-file . 29))
  1407. (1312 (with-output-to-file . 29))
  1408. (1313 (force-channel-output-ports! . 29))
  1409. (1314 (unbuffered-output-handler . 29))
  1410. (1315 (channel-buffer-size . 29))
  1411. (1316 (channel-crlf? . 29))
  1412. (1317 (:table . 82))
  1413. (1318 (really-make-table . 82))
  1414. (1319 (table-set!-procedure . 82))
  1415. (1320 (set-table-set!-procedure! . 82))
  1416. (1321 (table-ref-procedure . 82))
  1417. (1322 (set-table-ref-procedure! . 82))
  1418. (1323 (table-data . 82))
  1419. (1324 (set-table-data! . 82))
  1420. (1325 (table-size . 82))
  1421. (1326 (set-table-size! . 82))
  1422. (1327 (table? . 82))
  1423. (1328 (table-ref . 82))
  1424. (1329 (table-set! . 82))
  1425. (1330 (linear-table-size-limit . 82))
  1426. (1331 (next-table-size . 82))
  1427. (1332 (make-table-maker . 82))
  1428. (1333 (assoc->table-maker . 82))
  1429. (1334 (null-entry . 82))
  1430. (1335 (new-entry . 82))
  1431. (1336 (entry-value . 82))
  1432. (1337 (entry-key . 82))
  1433. (1338 (set-entry-value! . 82))
  1434. (1339 (delete-entry! . 82))
  1435. (1340 (make-assoc . 82))
  1436. (1341 (make-linear-table-ref . 82))
  1437. (1342 (make-linear-table-set! . 82))
  1438. (1343 (make->hash-table . 82))
  1439. (1344 (make-hash-table-ref . 82))
  1440. (1345 (make-hash-table-set! . 82))
  1441. (1346 (expand-hash-table! . 82))
  1442. (1347 (table-enter-alist! . 82))
  1443. (1348 (table-expand-table! . 82))
  1444. (1349 (table-walk . 82))
  1445. (1350 (really-table-walk . 82))
  1446. (1351 (alist-walk . 82))
  1447. (1352 (make-table-immutable! . 82))
  1448. (1353 (table->entry-list . 82))
  1449. (1354 (default-hash-function . 82))
  1450. (1355 (eqv?-assoc . 82))
  1451. (1356 (default-table-assoc . 82))
  1452. (1357 (symbol-hash . 82))
  1453. (1358 (make-table . 82))
  1454. (1359 (make-string-table . 82))
  1455. (1360 (make-symbol-table . 82))
  1456. (1361 (make-integer-table . 82))
  1457. (1362 (make-population . 52))
  1458. (1363 (add-to-population! . 52))
  1459. (1364 (weak-memq . 52))
  1460. (1365 (population-reduce . 52))
  1461. (1366 (population->list . 52))
  1462. (1367 (walk-population . 52))
  1463. (1368 (:meta-type . 53))
  1464. (1369 (really-make-type . 53))
  1465. (1370 (type-info . 53))
  1466. (1371 (type-more . 53))
  1467. (1372 (type-mask . 53))
  1468. (1373 (meta-type? . 53))
  1469. (1374 (make-type . 53))
  1470. (1375 (name->type-table . 53))
  1471. (1376 (mask->name-table . 53))
  1472. (1377 (name->type . 53))
  1473. (1378 (set-type-name! . 53))
  1474. (1379 (*mask* . 53))
  1475. (1380 (new-type-bit . 53))
  1476. (1381 (mask->type . 53))
  1477. (1382 (bottom-type . 53))
  1478. (1383 (error-type . 53))
  1479. (1384 (bottom-type? . 53))
  1480. (1385 (new-atomic-type . 53))
  1481. (1386 (named-atomic-type . 53))
  1482. (1387 (syntax-type . 53))
  1483. (1388 (other-static-type . 53))
  1484. (1389 (empty-rail-type . 53))
  1485. (1390 (rail-type . 53))
  1486. (1391 (make-optional-type . 53))
  1487. (1392 (make-rest-type . 53))
  1488. (1393 (head-type . 53))
  1489. (1394 (head-type-really . 53))
  1490. (1395 (tail-type . 53))
  1491. (1396 (empty-rail-type? . 53))
  1492. (1397 (rest-type? . 53))
  1493. (1398 (optional-type? . 53))
  1494. (1399 (mask/no-values . 53))
  1495. (1400 (mask/two-or-more . 53))
  1496. (1401 (mask/&rest . 53))
  1497. (1402 (value-type . 53))
  1498. (1403 (mask/value . 53))
  1499. (1404 (value-type? . 53))
  1500. (1405 (any-values-type . 53))
  1501. (1406 (any-arguments-type . 53))
  1502. (1407 (mask/one-or-more . 53))
  1503. (1408 (same-type? . 53))
  1504. (1409 (subtype? . 53))
  1505. (1410 (meet-type . 53))
  1506. (1411 (other-type-info . 53))
  1507. (1412 (meet-rail . 53))
  1508. (1413 (meet-procedure . 53))
  1509. (1414 (meet? . 53))
  1510. (1415 (meet-procedure? . 53))
  1511. (1416 (join-type . 53))
  1512. (1417 (join-rail . 53))
  1513. (1418 (join-procedure . 53))
  1514. (1419 (number-hierarchy . 53))
  1515. (1420 (integer-type . 53))
  1516. (1421 (rational-type . 53))
  1517. (1422 (real-type . 53))
  1518. (1423 (complex-type . 53))
  1519. (1424 (number-type . 53))
  1520. (1425 (exact-type . 53))
  1521. (1426 (inexact-type . 53))
  1522. (1427 (exact-integer-type . 53))
  1523. (1428 (inexact-real-type . 53))
  1524. (1429 (boolean-type . 53))
  1525. (1430 (pair-type . 53))
  1526. (1431 (null-type . 53))
  1527. (1432 (record-type . 53))
  1528. (1433 (any-procedure-type . 53))
  1529. (1434 (other-value-type . 53))
  1530. (1435 (mask/other . 53))
  1531. (1436 (make-other-type . 53))
  1532. (1437 (char-type . 53))
  1533. (1438 (unspecific-type . 53))
  1534. (1439 (string-type . 53))
  1535. (1440 (symbol-type . 53))
  1536. (1441 (vector-type . 53))
  1537. (1442 (escape-type . 53))
  1538. (1443 (structure-type . 53))
  1539. (1444 (mask/procedure . 53))
  1540. (1445 (procedure-type . 53))
  1541. (1446 (make-procedure-type . 53))
  1542. (1447 (procedure-type-domain . 53))
  1543. (1448 (procedure-type-codomain . 53))
  1544. (1449 (restrictive? . 53))
  1545. (1450 (sexp->type . 53))
  1546. (1451 (sexp->values-type . 53))
  1547. (1452 (type->sexp . 53))
  1548. (1453 (atomic-type->sexp . 53))
  1549. (1454 (rail-type->sexp . 53))
  1550. (1455 (disjoin-type . 53))
  1551. (1456 (disjoin-rest . 53))
  1552. (1457 (mask/number . 53))
  1553. (1458 (make-some-values-type . 53))
  1554. (1459 (proc . 53))
  1555. (1460 (some-values . 53))
  1556. (1461 (procedure-type? . 53))
  1557. (1462 (fixed-arity-procedure-type? . 53))
  1558. (1463 (procedure-type-arity . 53))
  1559. (1464 (procedure-type-argument-types . 53))
  1560. (1465 (variable-type . 53))
  1561. (1466 (variable-type? . 53))
  1562. (1467 (variable-value-type . 53))
  1563. (1468 (usual-variable-type . 53))
  1564. (1469 (undeclared-type . 53))
  1565. (1470 (compatible-types? . 53))
  1566. (1471 (:interface . 70))
  1567. (1472 (really-make-interface . 70))
  1568. (1473 (interface-name . 70))
  1569. (1474 (set-interface-name! . 70))
  1570. (1475 (interface-clients . 70))
  1571. (1476 (walk-method . 70))
  1572. (1477 (ref-method . 70))
  1573. (1478 (interface? . 70))
  1574. (1479 (make-interface . 70))
  1575. (1480 (interface-ref . 70))
  1576. (1481 (interface-member? . 70))
  1577. (1482 (for-each-declaration . 70))
  1578. (1483 (note-reference-to-interface! . 70))
  1579. (1484 (note-interface-name! . 70))
  1580. (1485 (make-simple-interface . 70))
  1581. (1486 (make-simple-interface-table . 70))
  1582. (1487 (make-compound-interface . 70))
  1583. (1488 (make-modified-interface-maker . 70))
  1584. (1489 (process-commands . 70))
  1585. (1490 (okay-command? . 70))
  1586. (1491 (proper-list? . 70))
  1587. (1492 (process-prefix . 70))
  1588. (1493 (process-expose . 70))
  1589. (1494 (process-hide . 70))
  1590. (1495 (process-alias . 70))
  1591. (1496 (process-rename . 70))
  1592. (1497 (interface-lookup . 70))
  1593. (1498 (make-lookup . 70))
  1594. (1499 (prefix-match? . 70))
  1595. (1500 (remove-prefix . 70))
  1596. (1501 (make-interface-walker . 70))
  1597. (1502 (walk-default . 70))
  1598. (1503 (walk-alist . 70))
  1599. (1504 (symbol-append . 70))
  1600. (1505 (binding? . 54))
  1601. (1506 (binding-type . 54))
  1602. (1507 (binding-place . 54))
  1603. (1508 (binding-static . 54))
  1604. (1509 (binding-path . 54))
  1605. (1510 (set-binding-place! . 54))
  1606. (1511 (make-binding . 54))
  1607. (1512 (add-path . 54))
  1608. (1513 (clobber-binding! . 54))
  1609. (1514 (impose-type . 54))
  1610. (1515 (forget-integration . 54))
  1611. (1516 (same-denotation? . 54))
  1612. (1517 (maybe-fix-place! . 54))
  1613. (1518 (follow-forwarding-pointers . 54))
  1614. (1519 (name? . 55))
  1615. (1520 (:generated . 55))
  1616. (1521 (make-generated . 55))
  1617. (1522 (generated-parent-name . 55))
  1618. (1523 (generated-env . 55))
  1619. (1524 (generated-token . 55))
  1620. (1525 (generated-name . 55))
  1621. (1526 (generated? . 55))
  1622. (1527 (generate-name . 55))
  1623. (1528 (generated-uid . 55))
  1624. (1529 (*generated-uid* . 55))
  1625. (1530 (name->symbol . 55))
  1626. (1531 (name-hash . 55))
  1627. (1532 (make-name-table . 55))
  1628. (1533 (desyntaxify . 55))
  1629. (1534 (make-qualified . 55))
  1630. (1535 (qualified? . 55))
  1631. (1536 (qualified-parent-name . 55))
  1632. (1537 (qualified-symbol . 55))
  1633. (1538 (qualified-uid . 55))
  1634. (1539 (name->qualified . 55))
  1635. (1540 (qualify-parent . 55))
  1636. (1541 (:transform . 55))
  1637. (1542 (really-make-transform . 55))
  1638. (1543 (transform-id . 55))
  1639. (1544 (transform-source . 55))
  1640. (1545 (transform-aux-names . 55))
  1641. (1546 (transform-type . 55))
  1642. (1547 (transform-env . 55))
  1643. (1548 (transform-procedure . 55))
  1644. (1549 (transform? . 55))
  1645. (1550 (make-transform . 55))
  1646. (1551 (maybe-apply-macro-transform . 55))
  1647. (1552 (apply-inline-transform . 55))
  1648. (1553 (make-keyword-comparator . 55))
  1649. (1554 (name->source-name . 55))
  1650. (1555 (bind-aliases . 55))
  1651. (1556 (make-name-generator . 55))
  1652. (1557 (lookup . 55))
  1653. (1558 (lookup . 58))
  1654. (1559 (bind1 . 58))
  1655. (1560 (bind . 58))
  1656. (1561 (bindrec . 58))
  1657. (1562 (make-compiler-env . 58))
  1658. (1563 (funny-name/macro-eval . 58))
  1659. (1564 (environment-macro-eval . 58))
  1660. (1565 (funny-name/define! . 58))
  1661. (1566 (environment-define! . 58))
  1662. (1567 (funny-name/package . 58))
  1663. (1568 (extract-package-from-environment . 58))
  1664. (1569 (funny-name/source-file-name . 58))
  1665. (1570 (bind-source-file-name . 58))
  1666. (1571 (source-file-name . 58))
  1667. (1572 (:thingie . 56))
  1668. (1573 (make-thingie . 56))
  1669. (1574 (thingie-want-type . 56))
  1670. (1575 (thingie-name . 56))
  1671. (1576 (thingie-binding . 56))
  1672. (1577 (thingie? . 56))
  1673. (1578 (:structure . 71))
  1674. (1579 (really-make-structure . 71))
  1675. (1580 (structure-name . 71))
  1676. (1581 (set-structure-name! . 71))
  1677. (1582 (structure-clients . 71))
  1678. (1583 (structure-package . 71))
  1679. (1584 (structure-interface-really . 71))
  1680. (1585 (set-structure-interface! . 71))
  1681. (1586 (structure-interface-thunk . 71))
  1682. (1587 (structure? . 71))
  1683. (1588 (structure-interface . 71))
  1684. (1589 (initialize-structure! . 71))
  1685. (1590 (make-structure . 71))
  1686. (1591 (make-modified-structure . 71))
  1687. (1592 (note-structure-name! . 71))
  1688. (1593 (structure-unstable? . 71))
  1689. (1594 (for-each-export . 71))
  1690. (1595 (:package . 71))
  1691. (1596 (really-make-package . 71))
  1692. (1597 (package-cached . 71))
  1693. (1598 (package-clients . 71))
  1694. (1599 (package-real-undefined-but-assigneds . 71))
  1695. (1600 (set-package-undefined-but-assigneds! . 71))
  1696. (1601 (package-real-undefineds . 71))
  1697. (1602 (set-package-undefineds! . 71))
  1698. (1603 (package-accesses-thunk . 71))
  1699. (1604 (package-opens-thunk . 71))
  1700. (1605 (set-package-opens-thunk! . 71))
  1701. (1606 (package->environment . 71))
  1702. (1607 (set-package->environment! . 71))
  1703. (1608 (package-loaded? . 71))
  1704. (1609 (set-package-loaded?! . 71))
  1705. (1610 (package-clauses . 71))
  1706. (1611 (package-file-name . 71))
  1707. (1612 (package-get-location . 71))
  1708. (1613 (set-package-get-location! . 71))
  1709. (1614 (package-integrate? . 71))
  1710. (1615 (set-package-integrate?! . 71))
  1711. (1616 (package-unstable? . 71))
  1712. (1617 (package-definitions . 71))
  1713. (1618 (package-opens-really . 71))
  1714. (1619 (set-package-opens! . 71))
  1715. (1620 (package-uid . 71))
  1716. (1621 (package? . 71))
  1717. (1622 (make-package . 71))
  1718. (1623 (really-package->environment . 71))
  1719. (1624 (lazy-table-accessor . 71))
  1720. (1625 (package-undefineds . 71))
  1721. (1626 (package-undefined-but-assigneds . 71))
  1722. (1627 (new-package-uid . 71))
  1723. (1628 (*package-uid* . 71))
  1724. (1629 (package-name-table . 71))
  1725. (1630 (package-name . 71))
  1726. (1631 (note-package-name! . 71))
  1727. (1632 (package-opens . 71))
  1728. (1633 (initialize-package-if-necessary! . 71))
  1729. (1634 (package-accesses . 71))
  1730. (1635 (make-simple-package . 71))
  1731. (1636 (package-definition . 71))
  1732. (1637 (package-define! . 71))
  1733. (1638 (package-add-static! . 71))
  1734. (1639 (package-refine-type! . 71))
  1735. (1640 (package-lookup . 71))
  1736. (1641 (really-package-lookup . 71))
  1737. (1642 (search-opens . 71))
  1738. (1643 (structure-lookup . 71))
  1739. (1644 (real-structure-lookup . 71))
  1740. (1645 (generic-lookup . 71))
  1741. (1646 (initialize-package! . 71))
  1742. (1647 (for-each-definition . 71))
  1743. (1648 (get-new-location . 71))
  1744. (1649 (make-new-location . 71))
  1745. (1650 ($get-location . 71))
  1746. (1651 (*location-uid* . 71))
  1747. (1652 (location-info-table . 71))
  1748. (1653 (flush-location-names . 71))
  1749. (1654 (link! . 71))
  1750. (1655 (really-link! . 71))
  1751. (1656 (get-location . 71))
  1752. (1657 (location-on-demand . 71))
  1753. (1658 (get-undefined . 71))
  1754. (1659 (location-for-assignment . 71))
  1755. (1660 (package-note-caching! . 71))
  1756. (1661 (note-caching! . 71))
  1757. (1662 (get-location-for-unassignable . 71))
  1758. (1663 (get-location-for-undefined . 71))
  1759. (1664 ($note-undefined . 71))
  1760. (1665 (cenv->package . 71))
  1761. (1666 (location-for-reference . 71))
  1762. (1667 (noting-undefined-variables . 71))
  1763. (1668 (print-undefined-names . 71))
  1764. (1669 (environment-ref . 84))
  1765. (1670 (environment-set! . 84))
  1766. (1671 (environment-define! . 84))
  1767. (1672 (*structure-ref . 84))
  1768. (1673 (carefully . 84))
  1769. (1674 ($interaction-environment . 84))
  1770. (1675 (interaction-environment . 84))
  1771. (1676 (set-interaction-environment! . 84))
  1772. (1677 (with-interaction-environment . 84))
  1773. (1678 (scheme-report-environment . 84))
  1774. (1679 (*scheme-report-environment* . 84))
  1775. (1680 (*null-environment* . 84))
  1776. (1681 (*scheme-report-number* . 84))
  1777. (1682 (set-scheme-report-environment! . 84))
  1778. (1683 (null-environment . 84))
  1779. (1684 (make-reflective-tower . 84))
  1780. (1685 (set-reflective-tower-maker! . 84))
  1781. (1686 (namestring . 83))
  1782. (1687 (directory-component-separator . 83))
  1783. (1688 (type-component-separator . 83))
  1784. (1689 (namestring-component . 83))
  1785. (1690 (file-name-preferred-case . 83))
  1786. (1691 (*scheme-file-type* . 83))
  1787. (1692 (*load-file-type* . 83))
  1788. (1693 (file-name-directory . 83))
  1789. (1694 (file-name-nondirectory . 83))
  1790. (1695 (file-nondirectory-position . 83))
  1791. (1696 (string-posq . 83))
  1792. (1697 (*translations* . 83))
  1793. (1698 (translations . 83))
  1794. (1699 (set-translation! . 83))
  1795. (1700 (translate . 83))
  1796. (1701 ($note-file-package . 68))
  1797. (1702 (read-forms . 68))
  1798. (1703 (really-read-forms . 68))
  1799. (1704 (skip-line . 68))
  1800. (1705 (:operator . 57))
  1801. (1706 (make-operator . 57))
  1802. (1707 (operator-name . 57))
  1803. (1708 (operator-uid . 57))
  1804. (1709 (operator-nargs . 57))
  1805. (1710 (operator-type . 57))
  1806. (1711 (set-operator-type! . 57))
  1807. (1712 (operator? . 57))
  1808. (1713 (usual-operator-type . 57))
  1809. (1714 (get-operator . 57))
  1810. (1715 (*operator-uid* . 57))
  1811. (1716 (operators-table . 57))
  1812. (1717 (number-of-operators . 57))
  1813. (1718 (the-operators . 57))
  1814. (1719 (make-operator-table . 57))
  1815. (1720 (operator-table-ref . 57))
  1816. (1721 (operator-lookup . 57))
  1817. (1722 (operator-define! . 57))
  1818. (1723 (:node . 57))
  1819. (1724 (really-make-node . 57))
  1820. (1725 (node-plist . 57))
  1821. (1726 (set-node-plist! . 57))
  1822. (1727 (node-form . 57))
  1823. (1728 (node-operator-id . 57))
  1824. (1729 (node? . 57))
  1825. (1730 (make-node . 57))
  1826. (1731 (node-ref . 57))
  1827. (1732 (node-set! . 57))
  1828. (1733 (node-operator . 57))
  1829. (1734 (node-predicate . 57))
  1830. (1735 (make-similar-node . 57))
  1831. (1736 (force-node . 57))
  1832. (1737 (schemify . 57))
  1833. (1738 (schemifiers . 57))
  1834. (1739 (schemify-node . 57))
  1835. (1740 (schemify-nodes . 57))
  1836. (1741 (define-schemifier . 57))
  1837. (1742 (schemify-lambda . 57))
  1838. (1743 (schemify-formals . 57))
  1839. (1744 (schemify-letrec . 57))
  1840. (1745 (schemify-sexp . 57))
  1841. (1746 (number-of-required-args . 61))
  1842. (1747 (n-ary? . 61))
  1843. (1748 (normalize-formals . 61))
  1844. (1749 (scan-forms . 59))
  1845. (1750 (expand-scanned-form . 59))
  1846. (1751 (scan-define . 59))
  1847. (1752 (expand-define . 59))
  1848. (1753 (scan-define-syntax . 59))
  1849. (1754 (expand-form . 59))
  1850. (1755 (expand-head . 59))
  1851. (1756 (destructure-define . 59))
  1852. (1757 (make-operator-predicate . 59))
  1853. (1758 (define? . 59))
  1854. (1759 (begin? . 59))
  1855. (1760 (define-syntax? . 59))
  1856. (1761 (static-value . 59))
  1857. (1762 (expand-body . 59))
  1858. (1763 (scan-body-forms . 59))
  1859. (1764 (body-lossage . 59))
  1860. (1765 (expand . 59))
  1861. (1766 (expand-list . 59))
  1862. (1767 (expand-literal . 59))
  1863. (1768 (expand-call . 59))
  1864. (1769 (expand-name . 59))
  1865. (1770 (expand-macro-application . 59))
  1866. (1771 (expand-operator-form . 59))
  1867. (1772 (expanders . 59))
  1868. (1773 (define-expander . 59))
  1869. (1774 (unspecific-node . 59))
  1870. (1775 (expand-structure-ref . 59))
  1871. (1776 (expand-lambda . 59))
  1872. (1777 (bind-names . 59))
  1873. (1778 (names? . 59))
  1874. (1779 (expand-letrec . 59))
  1875. (1780 (process-syntax . 59))
  1876. (1781 (this-long? . 59))
  1877. (1782 (at-least-this-long? . 59))
  1878. (1783 (specs? . 59))
  1879. (1784 (literal? . 59))
  1880. (1785 (syntax? . 59))
  1881. (1786 (begin-node? . 59))
  1882. (1787 (call-node? . 59))
  1883. (1788 (name-node? . 59))
  1884. (1789 (operator/literal . 59))
  1885. (1790 (operator/quote . 59))
  1886. (1791 (operator/call . 59))
  1887. (1792 (operator/name . 59))
  1888. (1793 (operator/unspecific . 59))
  1889. (1794 (operator/unassigned . 59))
  1890. (1795 (operator/lambda . 59))
  1891. (1796 (operator/begin . 59))
  1892. (1797 (operator/letrec . 59))
  1893. (1798 (operator/define . 59))
  1894. (1799 (operator/define-syntax . 59))
  1895. (1800 (operator/primitive-procedure . 59))
  1896. (1801 (operator/structure-ref . 59))
  1897. (1802 (:primop . 64))
  1898. (1803 (make-primop . 64))
  1899. (1804 (primop-compilator . 64))
  1900. (1805 (primop-closed . 64))
  1901. (1806 (primop-type . 64))
  1902. (1807 (primop-name . 64))
  1903. (1808 (primop? . 64))
  1904. (1809 (primop-table . 64))
  1905. (1810 (walk-primops . 64))
  1906. (1811 (define-compiler-primitive . 64))
  1907. (1812 (get-primop . 64))
  1908. (1813 (arithmetic-shift-right . 40))
  1909. (1814 (shift-left . 40))
  1910. (1815 (adjoin-bits . 40))
  1911. (1816 (low-bits . 40))
  1912. (1817 (high-bits . 40))
  1913. (1818 (unsigned-high-bits . 40))
  1914. (1819 (assert . 40))
  1915. (1820 (useful-bits-per-word . 40))
  1916. (1821 (bits-per-byte . 40))
  1917. (1822 (bytes-per-cell . 40))
  1918. (1823 (bits-per-cell . 40))
  1919. (1824 (bytes->cells . 40))
  1920. (1825 (cells->bytes . 40))
  1921. (1826 (unused-field-width . 40))
  1922. (1827 (addressing-units-per-cell . 40))
  1923. (1828 (cells->a-units . 40))
  1924. (1829 (a-units->cells . 40))
  1925. (1830 (bytes->a-units . 40))
  1926. (1831 (tag-field-width . 40))
  1927. (1832 (data-field-width . 40))
  1928. (1833 (make-descriptor . 40))
  1929. (1834 (descriptor-tag . 40))
  1930. (1835 (descriptor-data . 40))
  1931. (1836 (unsigned-descriptor-data . 40))
  1932. (1837 (set-descriptor-tag . 40))
  1933. (1838 (vm-eq? . 40))
  1934. (1839 (tag . 40))
  1935. (1840 (tag-enumeration . 40))
  1936. (1841 (tag-count . 40))
  1937. (1842 (fixnum? . 40))
  1938. (1843 (immediate? . 40))
  1939. (1844 (header? . 40))
  1940. (1845 (stob? . 40))
  1941. (1846 (bits-per-fixnum . 40))
  1942. (1847 (least-fixnum-value . 40))
  1943. (1848 (greatest-fixnum-value . 40))
  1944. (1849 (too-big-for-fixnum? . 40))
  1945. (1850 (too-small-for-fixnum? . 40))
  1946. (1851 (enter-fixnum . 40))
  1947. (1852 (extract-fixnum . 40))
  1948. (1853 (descriptor->fixnum . 40))
  1949. (1854 (fixnum->stob . 40))
  1950. (1855 (fixnum= . 40))
  1951. (1856 (fixnum< . 40))
  1952. (1857 (fixnum> . 40))
  1953. (1858 (fixnum<= . 40))
  1954. (1859 (fixnum>= . 40))
  1955. (1860 (fixnum-bitwise-not . 40))
  1956. (1861 (fixnum-bitwise-and . 40))
  1957. (1862 (fixnum-bitwise-ior . 40))
  1958. (1863 (fixnum-bitwise-xor . 40))
  1959. (1864 (immediate-type-field-width . 40))
  1960. (1865 (make-immediate . 40))
  1961. (1866 (immediate-type . 40))
  1962. (1867 (immediate-info . 40))
  1963. (1868 (tag&immediate-type . 40))
  1964. (1869 (make-tag&immediate-type . 40))
  1965. (1870 (imm . 40))
  1966. (1871 (imm-enumeration . 40))
  1967. (1872 (imm-count . 40))
  1968. (1873 (immediate-predicate . 40))
  1969. (1874 (bytes-per-scalar-value-unit . 40))
  1970. (1875 (bytes->scalar-value-units . 40))
  1971. (1876 (scalar-value-units->bytes . 40))
  1972. (1877 (vm-char? . 40))
  1973. (1878 (undefined? . 40))
  1974. (1879 (true . 40))
  1975. (1880 (false . 40))
  1976. (1881 (eof-object . 40))
  1977. (1882 (null . 40))
  1978. (1883 (unspecific-value . 40))
  1979. (1884 (quiescent . 40))
  1980. (1885 (unbound-marker . 40))
  1981. (1886 (unassigned-marker . 40))
  1982. (1887 (unreleased-value . 40))
  1983. (1888 (false? . 40))
  1984. (1889 (enter-boolean . 40))
  1985. (1890 (extract-boolean . 40))
  1986. (1891 (vm-boolean? . 40))
  1987. (1892 (enter-char . 40))
  1988. (1893 (extract-char . 40))
  1989. (1894 (scalar-value->char . 40))
  1990. (1895 (char->scalar-value . 40))
  1991. (1896 (vm-char=? . 40))
  1992. (1897 (vm-char<? . 40))
  1993. (1898 (header-type-field-width . 40))
  1994. (1899 (header-size-field-width . 40))
  1995. (1900 (max-stob-contents-size-in-cells . 40))
  1996. (1901 (make-header . 40))
  1997. (1902 (header-immutable-bit-mask . 40))
  1998. (1903 (make-header-immutable . 40))
  1999. (1904 (header-type . 40))
  2000. (1905 (immutable-header? . 40))
  2001. (1906 (header-length-in-bytes . 40))
  2002. (1907 (header-length-in-cells . 40))
  2003. (1908 (header-length-in-a-units . 40))
  2004. (1909 (d-vector-header? . 40))
  2005. (1910 (b-vector-header? . 40))
  2006. (1911 (add-stob-tag . 40))
  2007. (1912 (remove-stob-tag . 40))
  2008. (1913 (:debug-data . 62))
  2009. (1914 (make-debug-data . 62))
  2010. (1915 (debug-data-source . 62))
  2011. (1916 (set-debug-data-source! . 62))
  2012. (1917 (debug-data-jump-back-dests . 62))
  2013. (1918 (set-debug-data-jump-back-dests! . 62))
  2014. (1919 (debug-data-env-maps . 62))
  2015. (1920 (set-debug-data-env-maps! . 62))
  2016. (1921 (debug-data-parent . 62))
  2017. (1922 (debug-data-name . 62))
  2018. (1923 (debug-data-uid . 62))
  2019. (1924 (debug-data? . 62))
  2020. (1925 (debug-data-env-shape . 62))
  2021. (1926 (new-template-uid . 62))
  2022. (1927 (*template-uid* . 62))
  2023. (1928 (template-uid . 62))
  2024. (1929 (set-template-uid! . 62))
  2025. (1930 (debug-flag-names . 62))
  2026. (1931 (type/debug-flags . 62))
  2027. (1932 (make-debug-flags . 62))
  2028. (1933 ($debug-flags . 62))
  2029. (1934 (debug-flag-accessor . 62))
  2030. (1935 (debug-flag-modifier . 62))
  2031. (1936 (keep-source-code? . 62))
  2032. (1937 (keep-environment-maps? . 62))
  2033. (1938 (keep-procedure-names? . 62))
  2034. (1939 (keep-file-names? . 62))
  2035. (1940 (tabulate-debug-data? . 62))
  2036. (1941 (debug-data-table . 62))
  2037. (1942 (with-fresh-compiler-state . 62))
  2038. (1943 (saving-and-restoring . 62))
  2039. (1944 (debug-data->info . 62))
  2040. (1945 (get-debug-data . 62))
  2041. (1946 (note-debug-data! . 62))
  2042. (1947 (new-debug-data . 62))
  2043. (1948 (:frame . 67))
  2044. (1949 (really-make-frame . 67))
  2045. (1950 (frame-debug-data . 67))
  2046. (1951 (frame-count . 67))
  2047. (1952 (set-frame-count! . 67))
  2048. (1953 (frame-literals . 67))
  2049. (1954 (set-frame-literals! . 67))
  2050. (1955 (frame-size . 67))
  2051. (1956 (set-frame-size! . 67))
  2052. (1957 (frame-closure-index . 67))
  2053. (1958 (frame-env-index . 67))
  2054. (1959 (frame-template-index . 67))
  2055. (1960 (frame? . 67))
  2056. (1961 (make-frame . 67))
  2057. (1962 (adjust-procedure-name . 67))
  2058. (1963 (index->offset . 67))
  2059. (1964 (template-offset . 67))
  2060. (1965 (environment-offset . 67))
  2061. (1966 (depth-check! . 67))
  2062. (1967 (binding->index . 67))
  2063. (1968 (literal->index . 67))
  2064. (1969 (literal-position . 67))
  2065. (1970 (position . 67))
  2066. (1971 (make-segment . 63))
  2067. (1972 (segment-size . 63))
  2068. (1973 (segment-emitter . 63))
  2069. (1974 (segment->cv . 63))
  2070. (1975 (segment->template . 63))
  2071. (1976 (segment-data->template . 63))
  2072. (1977 ($package-key . 63))
  2073. (1978 (with-package-key . 63))
  2074. (1979 (check-stack-use . 63))
  2075. (1980 (add-big-stack-protocol! . 63))
  2076. (1981 (:assembly-state . 63))
  2077. (1982 (make-assembly-state . 63))
  2078. (1983 (astate-jump-back-dests . 63))
  2079. (1984 (set-astate-jump-back-dests! . 63))
  2080. (1985 (astate-env-maps . 63))
  2081. (1986 (set-astate-env-maps! . 63))
  2082. (1987 (astate-pc . 63))
  2083. (1988 (set-astate-pc! . 63))
  2084. (1989 (astate-code-vector . 63))
  2085. (1990 (make-astate . 63))
  2086. (1991 (emit-byte! . 63))
  2087. (1992 (emit-segment! . 63))
  2088. (1993 (empty-segment . 63))
  2089. (1994 (instruction . 63))
  2090. (1995 (sequentially . 63))
  2091. (1996 (sequentially-2 . 63))
  2092. (1997 (continuation-data . 63))
  2093. (1998 (live-mask . 63))
  2094. (1999 (bits->bytes . 63))
  2095. (2000 (make-push-byte . 63))
  2096. (2001 (lambda-protocol . 63))
  2097. (2002 (nary-lambda-protocol . 63))
  2098. (2003 (nary-primitive-protocol . 63))
  2099. (2004 (dispatch-protocol-size . 63))
  2100. (2005 (make-dispatch-protocol . 63))
  2101. (2006 (continuation-protocol . 63))
  2102. (2007 (cwv-continuation-protocol . 63))
  2103. (2008 (make-label . 63))
  2104. (2009 (label-reference . 63))
  2105. (2010 (jump-instruction . 63))
  2106. (2011 (instruction-using-label . 63))
  2107. (2012 (optional-label-reference . 63))
  2108. (2013 (using-optional-label . 63))
  2109. (2014 (bytes->segment . 63))
  2110. (2015 (computed-goto-label-size . 63))
  2111. (2016 (computed-goto-instruction . 63))
  2112. (2017 (attach-label . 63))
  2113. (2018 (insert-label! . 63))
  2114. (2019 (insert-backward-label! . 63))
  2115. (2020 (code-vector-set2! . 63))
  2116. (2021 (high-byte . 63))
  2117. (2022 (low-byte . 63))
  2118. (2023 (note-source-code . 63))
  2119. (2024 (note-environment . 63))
  2120. (2025 (empty-segment? . 63))
  2121. (2026 (optimizers-table . 73))
  2122. (2027 (set-optimizer! . 73))
  2123. (2028 (get-optimizer . 73))
  2124. (2029 (apply-optimizers . 73))
  2125. (2030 (flatten-form . 69))
  2126. (2031 (flatten-node . 69))
  2127. (2032 (flatteners . 69))
  2128. (2033 (define-flattener . 69))
  2129. (2034 (flatten-list . 69))
  2130. (2035 (no-free-vars . 69))
  2131. (2036 (flatten-lambda . 69))
  2132. (2037 (convert-lambda-body . 69))
  2133. (2038 (add-cells . 69))
  2134. (2039 (flatten-letrec . 69))
  2135. (2040 (flatten-pure-letrec . 69))
  2136. (2041 (flatten-impure-letrec . 69))
  2137. (2042 (assigned? . 69))
  2138. (2043 (mark-set-variables! . 69))
  2139. (2044 (mark-sets . 69))
  2140. (2045 (define-set-marker . 69))
  2141. (2046 (no-sets . 69))
  2142. (2047 (mark-letrec-sets . 69))
  2143. (2048 (make-make-cell . 69))
  2144. (2049 (make-unassigned-cell . 69))
  2145. (2050 (make-cell-ref . 69))
  2146. (2051 (really-make-cell-ref . 69))
  2147. (2052 (make-cell-set! . 69))
  2148. (2053 (make-primop-call . 69))
  2149. (2054 (operator/flat-lambda . 69))
  2150. (2055 (operator/lambda . 69))
  2151. (2056 (operator/name . 69))
  2152. (2057 (operator/letrec . 69))
  2153. (2058 (operator/pure-letrec . 69))
  2154. (2059 (operator/begin . 69))
  2155. (2060 (operator/literal . 69))
  2156. (2061 (operator/call . 69))
  2157. (2062 (operator/unassigned . 69))
  2158. (2063 (operator/set! . 69))
  2159. (2064 (define-node? . 69))
  2160. (2065 (lambda-node? . 69))
  2161. (2066 (flat-lambda-node? . 69))
  2162. (2067 (define-primop . 69))
  2163. (2068 (temp0 . 69))
  2164. (2069 (make-cell-primop . 69))
  2165. (2070 (temp1 . 69))
  2166. (2071 (cell-ref-primop . 69))
  2167. (2072 (temp2 . 69))
  2168. (2073 (cell-set!-primop . 69))
  2169. (2074 (temp3 . 69))
  2170. (2075 (unassigned-check-primop . 69))
  2171. (2076 (install-new-set! . 69))
  2172. (2077 (install-set! . 69))
  2173. (2078 (set->list . 69))
  2174. (2079 (set-add-element! . 69))
  2175. (2080 (set-union! . 69))
  2176. (2081 (set-difference! . 69))
  2177. (2082 (clean-var-list . 69))
  2178. (2083 (clear-var-set! . 69))
  2179. (2084 (node-type . 65))
  2180. (2085 (reconstruct-type . 65))
  2181. (2086 (reconstruct . 65))
  2182. (2087 (examine . 65))
  2183. (2088 (reconstructors . 65))
  2184. (2089 (define-reconstructor . 65))
  2185. (2090 (reconstruct-lambda . 65))
  2186. (2091 (careful-codomain . 65))
  2187. (2092 (reconstruct-name . 65))
  2188. (2093 (proc->reconstructor . 65))
  2189. (2094 (reconstruct-call . 65))
  2190. (2095 (fork-constraints . 65))
  2191. (2096 (reconstruct-letrec . 65))
  2192. (2097 (node->type . 65))
  2193. (2098 (name-node? . 65))
  2194. (2099 (lambda-node? . 65))
  2195. (2100 (literal-node? . 65))
  2196. (2101 (primop-reconstructors . 65))
  2197. (2102 (define-primop-reconstructor . 65))
  2198. (2103 (reconstruct-apply . 65))
  2199. (2104 (constant-type . 65))
  2200. (2105 (compile-expression . 66))
  2201. (2106 (compile . 66))
  2202. (2107 (compilators . 66))
  2203. (2108 (define-compilator . 66))
  2204. (2109 (compile-constant . 66))
  2205. (2110 (small-integer? . 66))
  2206. (2111 (integer-literal-instruction . 66))
  2207. (2112 (deliver-constant-value . 66))
  2208. (2113 (compile-local-name . 66))
  2209. (2114 (index->offset . 66))
  2210. (2115 (maybe-compile-with-push . 66))
  2211. (2116 (constant-with-push . 66))
  2212. (2117 (lexical-ref-with-push . 66))
  2213. (2118 (push+stack-ref-instruction . 66))
  2214. (2119 (push+stack-indirect-instruction . 66))
  2215. (2120 (compile-call . 66))
  2216. (2121 (compile-name-call . 66))
  2217. (2122 (compile-unknown-call . 66))
  2218. (2123 (compile-redex . 66))
  2219. (2124 (compile-inline-body . 66))
  2220. (2125 (letrec-template-maker . 66))
  2221. (2126 (maybe-push-continuation . 66))
  2222. (2127 (push-continuation . 66))
  2223. (2128 (push-continuation-no-protocol . 66))
  2224. (2129 (really-push-continuation . 66))
  2225. (2130 (fixup-source . 66))
  2226. (2131 (push-arguments . 66))
  2227. (2132 (push-all-but-last . 66))
  2228. (2133 (push-all-with-names . 66))
  2229. (2134 (push-argument . 66))
  2230. (2135 (really-push-arguments . 66))
  2231. (2136 (compile-argument . 66))
  2232. (2137 (pre-push . 66))
  2233. (2138 (push-instruction . 66))
  2234. (2139 (call-instruction . 66))
  2235. (2140 (stack-ref-instruction . 66))
  2236. (2141 (stack-set!-instruction . 66))
  2237. (2142 (stack-indirect-instruction . 66))
  2238. (2143 (make-cont . 66))
  2239. (2144 (cont-kind . 66))
  2240. (2145 (cont-source-info . 66))
  2241. (2146 (return-cont . 66))
  2242. (2147 (return-cont? . 66))
  2243. (2148 (fall-through-cont . 66))
  2244. (2149 (plain-fall-through-cont . 66))
  2245. (2150 (fall-through-cont? . 66))
  2246. (2151 (ignore-values-segment . 66))
  2247. (2152 (ignore-values-cont . 66))
  2248. (2153 (ignore-values-cont? . 66))
  2249. (2154 (accept-values-cont . 66))
  2250. (2155 (accept-values-cont? . 66))
  2251. (2156 (deliver-value . 66))
  2252. (2157 (named-cont . 66))
  2253. (2158 (cont-name . 66))
  2254. (2159 (name-node-binding . 66))
  2255. (2160 (generate-trap . 66))
  2256. (2161 (type-check . 66))
  2257. (2162 (set-type-check?! . 66))
  2258. (2163 (*type-check?* . 66))
  2259. (2164 (diagnose-call-error . 66))
  2260. (2165 (lambda-node? . 66))
  2261. (2166 (flat-lambda-node? . 66))
  2262. (2167 (name-node? . 66))
  2263. (2168 (literal-node? . 66))
  2264. (2169 (quote-node? . 66))
  2265. (2170 (operator/lambda . 66))
  2266. (2171 (operator/set! . 66))
  2267. (2172 (operator/call . 66))
  2268. (2173 (operator/begin . 66))
  2269. (2174 (receive . 66))
  2270. (2175 (compile-flat-lambda . 66))
  2271. (2176 (really-compile-flat-lambda . 66))
  2272. (2177 (compile-lambda . 66))
  2273. (2178 (set-lexical-offsets! . 66))
  2274. (2179 (compile-lambda-code . 66))
  2275. (2180 (set-frame-locations! . 66))
  2276. (2181 (name-node->symbol . 66))
  2277. (2182 (compile-environment . 66))
  2278. (2183 (compile-recursive-environment . 66))
  2279. (2184 (finish-flat-env . 66))
  2280. (2185 (one-byte->two-byte . 66))
  2281. (2186 (flat-environment-code . 66))
  2282. (2187 (get-variables-locations . 66))
  2283. (2188 (add-variable . 66))
  2284. (2189 (figure-env-data . 66))
  2285. (2190 (primop-closed-template . 66))
  2286. (2191 (direct-compilator . 66))
  2287. (2192 (direct-closed-compilator . 66))
  2288. (2193 (nargs->domain . 66))
  2289. (2194 (get-primop-type . 66))
  2290. (2195 (primop-types . 66))
  2291. (2196 (define-simple-primitive . 66))
  2292. (2197 (simple-compilator . 66))
  2293. (2198 (simple-closed-compilator . 66))
  2294. (2199 (symbol-append . 66))
  2295. (2200 (define-stob-predicate . 66))
  2296. (2201 (define-data-struct-primitives . 66))
  2297. (2202 (define-vector-primitives . 66))
  2298. (2203 (define-more-vector-primitives . 66))
  2299. (2204 (thunk-node? . 66))
  2300. (2205 (thunk-body . 66))
  2301. (2206 (unflatten-form . 66))
  2302. (2207 (define-n-ary-compiler-primitive . 66))
  2303. (2208 (n-ary-primitive-compilator . 66))
  2304. (2209 (evaluate-arguments-for-effect . 66))
  2305. (2210 (call-on-arg-and-id . 66))
  2306. (2211 (call-on-args . 66))
  2307. (2212 (push-and-compile . 66))
  2308. (2213 (op/unspecific . 66))
  2309. (2214 (op/literal . 66))
  2310. (2215 (compile-forms . 66))
  2311. (2216 (compile-forms-loop . 66))
  2312. (2217 (compile-form . 66))
  2313. (2218 (call-template-inst . 66))
  2314. (2219 (template-call . 66))
  2315. (2220 (define-node? . 66))
  2316. (2221 (compile-definition . 66))
  2317. (2222 (location-contents-offset . 66))
  2318. (2223 (make-startup-procedure . 66))
  2319. (2224 (append-templates . 66))
  2320. (2225 (an-ignore-values-cont . 66))
  2321. (2226 (eval . 85))
  2322. (2227 (load-into . 85))
  2323. (2228 (load-script-into . 85))
  2324. (2229 (eval-from-file . 85))
  2325. (2230 (load . 85))
  2326. (2231 (really-load-into . 85))
  2327. (2232 (compile-and-run . 85))
  2328. (2233 (command-processor . 89))
  2329. (2234 (mini-load . 89))
  2330. (2235 (read-string . 89))
  2331. (2236 (byte-vector->string . 89))
  2332. (2237 (display-condition . 89))
  2333. (2238 (really-display-condition . 89))
  2334. (2239 (*depth* . 89))
  2335. (2240 (condition-display-depth . 89))
  2336. (2241 (set-condition-display-depth! . 89))
  2337. (2242 (*length* . 89))
  2338. (2243 (condition-display-length . 89))
  2339. (2244 (set-condition-display-length! . 89))
  2340. (2245 (&disclose-condition . 89))
  2341. (2246 (disclose-condition . 89))
  2342. (2247 (limited-write . 89))
  2343. (2248 (run-threads . 46))
  2344. (2249 (run-threads-with-housekeeper . 46))
  2345. (2250 (round-robin-event-handler . 46))
  2346. (2251 (make-counter . 46))
  2347. (2252 (counter-value . 46))
  2348. (2253 (increment-counter! . 46))
  2349. (2254 (decrement-counter! . 46))
  2350. (2255 (root-scheduler . 47))
  2351. (2256 (make-root-event-handler . 47))
  2352. (2257 (root-handler . 47))
  2353. (2258 (cheap-display-condition . 47))
  2354. (2259 (abort-token . 47))
  2355. (2260 (scheme-exit-now . 47))
  2356. (2261 (root-wait . 47))
  2357. (2262 (do-some-waiting . 47))
  2358. (2263 (one-minute-of-milliseconds . 47))
  2359. (2264 (one-day-of-milliseconds . 47))
  2360. (2265 (one-year-of-minutes . 47))
  2361. (2266 (deadlock-handler . 47))
  2362. (2267 (call-when-deadlocked! . 47))
  2363. (2268 (spawn-output-forcers . 47))
  2364. (2269 (make-usual-resumer . 51))
  2365. (2270 (usual-resumer . 51))
  2366. (2271 (warn-about-undefined-imported-bindings . 51))
  2367. (2272 (initialize-rts . 51))
  2368. (2273 (set-encoding! . 51))
  2369. (2274 (*initialization-thunks* . 51))
  2370. (2275 (add-initialization-thunk! . 51))
  2371. (2276 (run-initialization-thunks . 51))
  2372. (2277 (start . 90))
  2373. (2278 (make-built-in-structures . 90))
  2374. (2279 (initialize-interaction-environment! . 90))
  2375. (2280 (make-initial-package . 90))
  2376. (2281 (make-tower . 90))
  2377. (2282 (the-usual-transforms . 60))
  2378. (2283 (define-usual-macro . 60))
  2379. (2284 (usual-transform . 60))
  2380. (2285 (do-spec? . 60))
  2381. (2286 (specs? . 60))
  2382. (2287 (case-clause? . 60))
  2383. (2288 (process-rules . 60))
  2384. (2289 (segment-pattern? . 60))
  2385. (2290 (segment-template? . 60))
  2386. (2291 (segment-depth . 60))
  2387. (2292 (segment-tail . 60))
  2388. (2293 (indicators-for-zero-or-more . 60))
  2389. (2294 (find-free-names-in-syntax-rules . 60))
  2390. (2295 (strongly-connected-components . 81))
  2391. (2296 (find-next-vertex . 81))
  2392. (2297 (:vertex . 81))
  2393. (2298 (really-make-vertex . 81))
  2394. (2299 (vertex-lowpoint . 81))
  2395. (2300 (set-vertex-lowpoint! . 81))
  2396. (2301 (vertex-parent . 81))
  2397. (2302 (set-vertex-parent! . 81))
  2398. (2303 (vertex-index . 81))
  2399. (2304 (set-vertex-index! . 81))
  2400. (2305 (vertex-stack . 81))
  2401. (2306 (set-vertex-stack! . 81))
  2402. (2307 (vertex-edges . 81))
  2403. (2308 (set-vertex-edges! . 81))
  2404. (2309 (vertex-data . 81))
  2405. (2310 (vertex? . 81))
  2406. (2311 (make-vertex . 81))
  2407. (2312 (make-vertices . 81))
  2408. (2313 (do-vertex . 81))
  2409. (2314 (get-strong . 81))
  2410. (2315 (end-vertex . 81))
  2411. (2316 (unwind-stack . 81))
  2412. (2317 (follow-edge . 81))
  2413. (2318 (pop-vertex-edge! . 81))
  2414. (2319 (find-usages . 78))
  2415. (2320 (maybe-update-known-type . 78))
  2416. (2321 (find-node-usages . 78))
  2417. (2322 (analyze . 78))
  2418. (2323 (analyze-nodes . 78))
  2419. (2324 (usage-analyzers . 78))
  2420. (2325 (define-usage-analyzer . 78))
  2421. (2326 (nothing . 78))
  2422. (2327 (add-if-free . 78))
  2423. (2328 (analyze-letrec . 78))
  2424. (2329 (:usage . 78))
  2425. (2330 (really-make-usage . 78))
  2426. (2331 (usage-assignment-count . 78))
  2427. (2332 (set-assignment! . 78))
  2428. (2333 (usage-operator-count . 78))
  2429. (2334 (set-operator! . 78))
  2430. (2335 (usage-reference-count . 78))
  2431. (2336 (set-reference! . 78))
  2432. (2337 (usage-name-node . 78))
  2433. (2338 (usage? . 78))
  2434. (2339 (make-usage . 78))
  2435. (2340 (make-package-usage . 78))
  2436. (2341 (package-usage? . 78))
  2437. (2342 (usage-incrementator . 78))
  2438. (2343 (note-reference! . 78))
  2439. (2344 (note-operator! . 78))
  2440. (2345 (note-assignment! . 78))
  2441. (2346 (lambda-node? . 78))
  2442. (2347 (quote-node? . 78))
  2443. (2348 (literal-node? . 78))
  2444. (2349 (call-node? . 78))
  2445. (2350 (name-node? . 78))
  2446. (2351 (define-node? . 78))
  2447. (2352 (sort-forms . 78))
  2448. (2353 (stuff-count . 78))
  2449. (2354 (maybe-make-aliased . 78))
  2450. (2355 (topologically-sort . 78))
  2451. (2356 (:form . 78))
  2452. (2357 (really-make-form . 78))
  2453. (2358 (form-temp . 78))
  2454. (2359 (set-form-temp! . 78))
  2455. (2360 (form-free . 78))
  2456. (2361 (set-form-free! . 78))
  2457. (2362 (form-unaliased? . 78))
  2458. (2363 (set-form-unaliased?! . 78))
  2459. (2364 (form-aliases . 78))
  2460. (2365 (set-form-aliases! . 78))
  2461. (2366 (form-node . 78))
  2462. (2367 (form? . 78))
  2463. (2368 (make-form . 78))
  2464. (2369 (insert-aliases . 78))
  2465. (2370 (make-inline-transform . 80))
  2466. (2371 (clean-node . 80))
  2467. (2372 (clean-lambda . 80))
  2468. (2373 (clean-lookup . 80))
  2469. (2374 (unused-name . 80))
  2470. (2375 (remove-bindings . 80))
  2471. (2376 (inline-transform . 80))
  2472. (2377 (make-substitution . 80))
  2473. (2378 (reconstitute . 80))
  2474. (2379 (reconstitute-name . 80))
  2475. (2380 (operator/name . 80))
  2476. (2381 (operator/literal . 80))
  2477. (2382 (qualified->name . 80))
  2478. (2383 (get-qualified-env . 80))
  2479. (2384 (quote-node? . 80))
  2480. (2385 (call-node? . 80))
  2481. (2386 (lambda-node? . 80))
  2482. (2387 (name-node? . 80))
  2483. (2388 (loophole-node? . 80))
  2484. (2389 (operator . 87))
  2485. (2390 (primop . 87))
  2486. (2391 (simple-interface . 87))
  2487. (2392 (package . 87))
  2488. (2393 (transform . 87))
  2489. (2394 (package-define-static! . 87))
  2490. (2395 (:syntax . 76))
  2491. (2396 (:values . 76))
  2492. (2397 (:arguments . 76))
  2493. (2398 (:value . 76))
  2494. (2399 (procedure . 76))
  2495. (2400 (:boolean . 76))
  2496. (2401 (:char . 76))
  2497. (2402 (:null . 76))
  2498. (2403 (:unspecific . 76))
  2499. (2404 (:number . 76))
  2500. (2405 (:complex . 76))
  2501. (2406 (:real . 76))
  2502. (2407 (:rational . 76))
  2503. (2408 (:integer . 76))
  2504. (2409 (:exact-integer . 76))
  2505. (2410 (:pair . 76))
  2506. (2411 (:string . 76))
  2507. (2412 (:symbol . 76))
  2508. (2413 (:vector . 76))
  2509. (2414 (:procedure . 76))
  2510. (2415 (:input-port . 76))
  2511. (2416 (:output-port . 76))
  2512. (2417 (:error . 76))
  2513. (2418 (:escape . 76))
  2514. (2419 (:structure . 76))
  2515. (2420 (:type . 76))
  2516. (2421 (def . 75))
  2517. (2422 (really-def . 75))
  2518. (2423 (define-multiple . 75))
  2519. (2424 (define-interface . 75))
  2520. (2425 (compound-interface . 75))
  2521. (2426 (export . 75))
  2522. (2427 (define-structure . 75))
  2523. (2428 (define-structures . 75))
  2524. (2429 (structure . 75))
  2525. (2430 (structures . 75))
  2526. (2431 (modify . 75))
  2527. (2432 (subset . 75))
  2528. (2433 (with-prefix . 75))
  2529. (2434 (a-package . 75))
  2530. (2435 (receive . 75))
  2531. (2436 (define-reflective-tower-maker . 75))
  2532. (2437 (export-reflective-tower-maker . 75))
  2533. (2438 (define-module . 75))
  2534. (2439 (make-a-package . 75))
  2535. (2440 (loser . 75))
  2536. (2441 (interface-of . 75))
  2537. (2442 (*verify-later!* . 75))
  2538. (2443 (verify-later! . 75))
  2539. (2444 (set-verify-later! . 75))
  2540. (2445 (note-name! . 75))
  2541. (2446 (collect-packages . 72))
  2542. (2447 (package-source . 72))
  2543. (2448 (read-files . 72))
  2544. (2449 (package-optimizer-names . 72))
  2545. (2450 (check-structure . 72))
  2546. (2451 (compile-package . 74))
  2547. (2452 (expand-package . 74))
  2548. (2453 (define-usual-transform . 74))
  2549. (2454 (define-primitives . 74))
  2550. (2455 (operator/define . 74))
  2551. (2456 (operator/primitive-procedure . 74))
  2552. (2457 (operator/call . 74))
  2553. (2458 (operator/literal . 74))
  2554. (2459 (analyze-forms . 79))
  2555. (2460 (analyze-form . 79))
  2556. (2461 (inlinable-rhs? . 79))
  2557. (2462 (simple-lambda? . 79))
  2558. (2463 (operator/name . 79))
  2559. (2464 (simple? . 79))
  2560. (2465 (simple-list? . 79))
  2561. (2466 (analyzers . 79))
  2562. (2467 (define-analyzer . 79))
  2563. (2468 (static-value . 79))
  2564. (2469 (really-simple-call? . 79))
  2565. (2470 (primitive-proc? . 79))
  2566. (2471 (no-ret . 79))
  2567. (2472 (ret . 79))
  2568. (2473 (simple-literal? . 79))
  2569. (2474 (require . 79))
  2570. (2475 (*debug?* . 79))
  2571. (2476 (package-lookup-type . 79))
  2572. (2477 (lambda-node? . 79))
  2573. (2478 (name-node? . 79))
  2574. (2479 (loophole-node? . 79))
  2575. (2480 (define-node? . 79))
  2576. (2481 (literal-node? . 79))
  2577. (2482 (ensure-loaded . 86))
  2578. -
  2579. ; Template uid -> name, parent, env maps
  2580. (0 scheme-level-0 #f () ())
  2581. (1 scheme-level-0 #f () ())
  2582. (2 atan #f () ())
  2583. (3 scheme-level-0 #f () ())
  2584. (4 scheme-level-0 #f () ())
  2585. (5 set-location-defined?! #f () ())
  2586. (6 scheme-level-0 #f () ())
  2587. (7 scheme-level-0 #f () ())
  2588. (8 acos #f () ())
  2589. (9 scheme-level-0 #f () ())
  2590. (10 scheme-level-0 #f () ())
  2591. (11 vm-extension #f () ())
  2592. (12 scheme-level-0 #f () ())
  2593. (13 scheme-level-0 #f () ())
  2594. (14 asin #f () ())
  2595. (15 scheme-level-0 #f () ())
  2596. (16 scheme-level-0 #f () ())
  2597. (17 system-parameter #f () ())
  2598. (18 scheme-level-0 #f () ())
  2599. (19 scheme-level-0 #f () ())
  2600. (20 location-defined? #f () ())
  2601. (21 scheme-level-0 #f () ())
  2602. (22 scheme-level-0 #f () ())
  2603. (23 time #f () ())
  2604. (24 scheme-level-0 #f () ())
  2605. (25 scheme-level-0 #f () ())
  2606. (26 template-set! #f () ())
  2607. (27 scheme-level-0 #f () ())
  2608. (28 scheme-level-0 #f () ())
  2609. (29 set-current-proposal! #f () ())
  2610. (30 scheme-level-0 #f () ())
  2611. (31 scheme-level-0 #f () ())
  2612. (32 scheme-level-0 #f () ())
  2613. (33 cons #f () ())
  2614. (34 scheme-level-0 #f () ())
  2615. (35 scheme-level-0 #f () ())
  2616. (36 wait #f () ())
  2617. (37 scheme-level-0 #f () ())
  2618. (38 scheme-level-0 #f () ())
  2619. (39 poll #f () ())
  2620. (40 scheme-level-0 #f () ())
  2621. (41 scheme-level-0 #f () ())
  2622. (42 trap #f () ())
  2623. (43 scheme-level-0 #f () ())
  2624. (44 scheme-level-0 #f () ())
  2625. (45 assq #f () ())
  2626. (46 scheme-level-0 #f () ())
  2627. (47 scheme-level-0 #f () ())
  2628. (48 resume-interrupted-call-to-native-code #f () ())
  2629. (49 scheme-level-0 #f () ())
  2630. (50 scheme-level-0 #f () ())
  2631. (51 current-proposal #f () ())
  2632. (52 scheme-level-0 #f () ())
  2633. (53 scheme-level-0 #f () ())
  2634. (54 make-weak-pointer #f () ())
  2635. (55 scheme-level-0 #f () ())
  2636. (56 scheme-level-0 #f () ())
  2637. (57 scalar-value? #f () ())
  2638. (58 scheme-level-0 #f () ())
  2639. (59 scheme-level-0 #f () ())
  2640. (60 lookup-shared-binding #f () ())
  2641. (61 scheme-level-0 #f () ())
  2642. (62 scheme-level-0 #f () ())
  2643. (63 push #f () ())
  2644. (64 scheme-level-0 #f () ())
  2645. (65 scheme-level-0 #f () ())
  2646. (66 provisional-set-contents! #f () ())
  2647. (67 scheme-level-0 #f () ())
  2648. (68 scheme-level-0 #f () ())
  2649. (69 set-contents! #f () ())
  2650. (70 scheme-level-0 #f () ())
  2651. (71 scheme-level-0 #f () ())
  2652. (72 resume-interrupted-opcode-to-byte-code #f () ())
  2653. (73 scheme-level-0 #f () ())
  2654. (74 scheme-level-0 #f () ())
  2655. (75 read-char #f () ())
  2656. (76 scheme-level-0 #f () ())
  2657. (77 scheme-level-0 #f () ())
  2658. (78 make-cell #f () ())
  2659. (79 scheme-level-0 #f () ())
  2660. (80 scheme-level-0 #f () ())
  2661. (81 provisional-contents #f () ())
  2662. (82 scheme-level-0 #f () ())
  2663. (83 scheme-level-0 #f () ())
  2664. (84 sqrt #f () ())
  2665. (85 scheme-level-0 #f () ())
  2666. (86 scheme-level-0 #f () ())
  2667. (87 * #f () ())
  2668. (88 scheme-level-0 #f () ())
  2669. (89 scheme-level-0 #f () ())
  2670. (90 contents #f () ())
  2671. (91 scheme-level-0 #f () ())
  2672. (92 scheme-level-0 #f () ())
  2673. (93 + #f () ())
  2674. (94 scheme-level-0 #f () ())
  2675. (95 scheme-level-0 #f () ())
  2676. (96 peek-char #f () ())
  2677. (97 scheme-level-0 #f () ())
  2678. (98 scheme-level-0 #f () ())
  2679. (99 - #f () ())
  2680. (100 scheme-level-0 #f () ())
  2681. (101 scheme-level-0 #f () ())
  2682. (102 continuation-set! #f () ())
  2683. (103 scheme-level-0 #f () ())
  2684. (104 scheme-level-0 #f () ())
  2685. (105 / #f () ())
  2686. (106 scheme-level-0 #f () ())
  2687. (107 scheme-level-0 #f () ())
  2688. (108 weak-pointer? #f () ())
  2689. (109 scheme-level-0 #f () ())
  2690. (110 scheme-level-0 #f () ())
  2691. (111 atan1 #f () ())
  2692. (112 scheme-level-0 #f () ())
  2693. (113 scheme-level-0 #f () ())
  2694. (114 atan2 #f () ())
  2695. (115 scheme-level-0 #f () ())
  2696. (116 scheme-level-0 #f () ())
  2697. (117 quotient #f () ())
  2698. (118 scheme-level-0 #f () ())
  2699. (119 scheme-level-0 #f () ())
  2700. (120 close-channel #f () ())
  2701. (121 scheme-level-0 #f () ())
  2702. (122 scheme-level-0 #f () ())
  2703. (123 channel-abort #f () ())
  2704. (124 scheme-level-0 #f () ())
  2705. (125 scheme-level-0 #f () ())
  2706. (126 read-byte #f () ())
  2707. (127 scheme-level-0 #f () ())
  2708. (128 scheme-level-0 #f () ())
  2709. (129 char? #f () ())
  2710. (130 scheme-level-0 #f () ())
  2711. (131 scheme-level-0 #f () ())
  2712. (132 < #f () ())
  2713. (133 scheme-level-0 #f () ())
  2714. (134 scheme-level-0 #f () ())
  2715. (135 = #f () ())
  2716. (136 scheme-level-0 #f () ())
  2717. (137 scheme-level-0 #f () ())
  2718. (138 provisional-set-port-data! #f () ())
  2719. (139 scheme-level-0 #f () ())
  2720. (140 scheme-level-0 #f () ())
  2721. (141 cell? #f () ())
  2722. (142 scheme-level-0 #f () ())
  2723. (143 scheme-level-0 #f () ())
  2724. (144 > #f () ())
  2725. (145 scheme-level-0 #f () ())
  2726. (146 scheme-level-0 #f () ())
  2727. (147 make-location #f () ())
  2728. (148 scheme-level-0 #f () ())
  2729. (149 scheme-level-0 #f () ())
  2730. (150 imag-part #f () ())
  2731. (151 scheme-level-0 #f () ())
  2732. (152 scheme-level-0 #f () ())
  2733. (153 channel-parameter #f () ())
  2734. (154 scheme-level-0 #f () ())
  2735. (155 scheme-level-0 #f () ())
  2736. (156 set-port-data! #f () ())
  2737. (157 scheme-level-0 #f () ())
  2738. (158 scheme-level-0 #f () ())
  2739. (159 make-template #f () ())
  2740. (160 scheme-level-0 #f () ())
  2741. (161 scheme-level-0 #f () ())
  2742. (162 scalar-value->char #f () ())
  2743. (163 scheme-level-0 #f () ())
  2744. (164 scheme-level-0 #f () ())
  2745. (165 char->scalar-value #f () ())
  2746. (166 scheme-level-0 #f () ())
  2747. (167 scheme-level-0 #f () ())
  2748. (168 real? #f () ())
  2749. (169 scheme-level-0 #f () ())
  2750. (170 scheme-level-0 #f () ())
  2751. (171 peek-byte #f () ())
  2752. (172 scheme-level-0 #f () ())
  2753. (173 scheme-level-0 #f () ())
  2754. (174 real-part #f () ())
  2755. (175 scheme-level-0 #f () ())
  2756. (176 scheme-level-0 #f () ())
  2757. (177 provisional-port-data #f () ())
  2758. (178 scheme-level-0 #f () ())
  2759. (179 scheme-level-0 #f () ())
  2760. (180 record-length #f () ())
  2761. (181 scheme-level-0 #f () ())
  2762. (182 scheme-level-0 #f () ())
  2763. (183 port-data #f () ())
  2764. (184 scheme-level-0 #f () ())
  2765. (185 scheme-level-0 #f () ())
  2766. (186 pair? #f () ())
  2767. (187 scheme-level-0 #f () ())
  2768. (188 scheme-level-0 #f () ())
  2769. (189 provisional-set-port-lock! #f () ())
  2770. (190 scheme-level-0 #f () ())
  2771. (191 scheme-level-0 #f () ())
  2772. (192 make-port #f () ())
  2773. (193 scheme-level-0 #f () ())
  2774. (194 scheme-level-0 #f () ())
  2775. (195 set-port-lock! #f () ())
  2776. (196 scheme-level-0 #f () ())
  2777. (197 scheme-level-0 #f () ())
  2778. (198 bit-count #f () ())
  2779. (199 scheme-level-0 #f () ())
  2780. (200 scheme-level-0 #f () ())
  2781. (201 provisional-checked-record-ref #f () ())
  2782. (202 scheme-level-0 #f () ())
  2783. (203 scheme-level-0 #f () ())
  2784. (204 return-from-exception #f () ())
  2785. (205 scheme-level-0 #f () ())
  2786. (206 scheme-level-0 #f () ())
  2787. (207 provisional-port-lock #f () ())
  2788. (208 scheme-level-0 #f () ())
  2789. (209 scheme-level-0 #f () ())
  2790. (210 location? #f () ())
  2791. (211 scheme-level-0 #f () ())
  2792. (212 scheme-level-0 #f () ())
  2793. (213 checked-record-ref #f () ())
  2794. (214 scheme-level-0 #f () ())
  2795. (215 scheme-level-0 #f () ())
  2796. (216 channel-maybe-read #f () ())
  2797. (217 scheme-level-0 #f () ())
  2798. (218 scheme-level-0 #f () ())
  2799. (219 add-finalizer! #f () ())
  2800. (220 scheme-level-0 #f () ())
  2801. (221 scheme-level-0 #f () ())
  2802. (222 rational? #f () ())
  2803. (223 scheme-level-0 #f () ())
  2804. (224 scheme-level-0 #f () ())
  2805. (225 copy-string-chars! #f () ())
  2806. (226 scheme-level-0 #f () ())
  2807. (227 scheme-level-0 #f () ())
  2808. (228 template? #f () ())
  2809. (229 scheme-level-0 #f () ())
  2810. (230 scheme-level-0 #f () ())
  2811. (231 port-lock #f () ())
  2812. (232 scheme-level-0 #f () ())
  2813. (233 scheme-level-0 #f () ())
  2814. (234 vector-length #f () ())
  2815. (235 scheme-level-0 #f () ())
  2816. (236 scheme-level-0 #f () ())
  2817. (237 make-continuation #f () ())
  2818. (238 scheme-level-0 #f () ())
  2819. (239 scheme-level-0 #f () ())
  2820. (240 provisional-shared-binding-ref #f () ())
  2821. (241 scheme-level-0 #f () ())
  2822. (242 scheme-level-0 #f () ())
  2823. (243 string-length #f () ())
  2824. (244 scheme-level-0 #f () ())
  2825. (245 scheme-level-0 #f () ())
  2826. (246 shared-binding-ref #f () ())
  2827. (247 scheme-level-0 #f () ())
  2828. (248 scheme-level-0 #f () ())
  2829. (249 port? #f () ())
  2830. (250 scheme-level-0 #f () ())
  2831. (251 scheme-level-0 #f () ())
  2832. (252 angle #f () ())
  2833. (253 scheme-level-0 #f () ())
  2834. (254 scheme-level-0 #f () ())
  2835. (255 false #f () ())
  2836. (256 scheme-level-0 #f () ())
  2837. (257 scheme-level-0 #f () ())
  2838. (258 remainder #f () ())
  2839. (259 scheme-level-0 #f () ())
  2840. (260 scheme-level-0 #f () ())
  2841. (261 continuation? #f () ())
  2842. (262 scheme-level-0 #f () ())
  2843. (263 scheme-level-0 #f () ())
  2844. (264 channel-ready? #f () ())
  2845. (265 scheme-level-0 #f () ())
  2846. (266 scheme-level-0 #f () ())
  2847. (267 binary-reduce1 #f () ())
  2848. (268 scheme-level-0 #f () ())
  2849. (269 scheme-level-0 #f () ())
  2850. (270 binary-reduce2 #f () ())
  2851. (271 scheme-level-0 #f () ())
  2852. (272 scheme-level-0 #f () ())
  2853. (273 char<? #f () ())
  2854. (274 scheme-level-0 #f () ())
  2855. (275 scheme-level-0 #f () ())
  2856. (276 char=? #f () ())
  2857. (277 scheme-level-0 #f () ())
  2858. (278 scheme-level-0 #f () ())
  2859. (279 <= #f () ())
  2860. (280 scheme-level-0 #f () ())
  2861. (281 scheme-level-0 #f () ())
  2862. (282 magnitude #f () ())
  2863. (283 scheme-level-0 #f () ())
  2864. (284 scheme-level-0 #f () ())
  2865. (285 >= #f () ())
  2866. (286 scheme-level-0 #f () ())
  2867. (287 scheme-level-0 #f () ())
  2868. (288 with-continuation #f () ())
  2869. (289 scheme-level-0 #f () ())
  2870. (290 scheme-level-0 #f () ())
  2871. (291 floor #f () ())
  2872. (292 scheme-level-0 #f () ())
  2873. (293 scheme-level-0 #f () ())
  2874. (294 provisional-checked-record-set! #f () ())
  2875. (295 scheme-level-0 #f () ())
  2876. (296 scheme-level-0 #f () ())
  2877. (297 apply #f () ())
  2878. (298 scheme-level-0 #f () ())
  2879. (299 scheme-level-0 #f () ())
  2880. (300 memory-status #f () ())
  2881. (301 scheme-level-0 #f () ())
  2882. (302 scheme-level-0 #f () ())
  2883. (303 checked-record-set! #f () ())
  2884. (304 scheme-level-0 #f () ())
  2885. (305 scheme-level-0 #f () ())
  2886. (306 inexact->exact #f () ())
  2887. (307 scheme-level-0 #f () ())
  2888. (308 scheme-level-0 #f () ())
  2889. (309 exact->inexact #f () ())
  2890. (310 scheme-level-0 #f () ())
  2891. (311 scheme-level-0 #f () ())
  2892. (312 provisional-set-port-crlf?! #f () ())
  2893. (313 scheme-level-0 #f () ())
  2894. (314 scheme-level-0 #f () ())
  2895. (315 extended-number-length #f () ())
  2896. (316 scheme-level-0 #f () ())
  2897. (317 scheme-level-0 #f () ())
  2898. (318 set-port-crlf?! #f () ())
  2899. (319 scheme-level-0 #f () ())
  2900. (320 scheme-level-0 #f () ())
  2901. (321 open-channels-list #f () ())
  2902. (322 scheme-level-0 #f () ())
  2903. (323 scheme-level-0 #f () ())
  2904. (324 provisional-shared-binding-set! #f () ())
  2905. (325 scheme-level-0 #f () ())
  2906. (326 scheme-level-0 #f () ())
  2907. (327 channel-id #f () ())
  2908. (328 scheme-level-0 #f () ())
  2909. (329 scheme-level-0 #f () ())
  2910. (330 provisional-port-crlf? #f () ())
  2911. (331 scheme-level-0 #f () ())
  2912. (332 scheme-level-0 #f () ())
  2913. (333 shared-binding-set! #f () ())
  2914. (334 scheme-level-0 #f () ())
  2915. (335 scheme-level-0 #f () ())
  2916. (336 port-crlf? #f () ())
  2917. (337 scheme-level-0 #f () ())
  2918. (338 scheme-level-0 #f () ())
  2919. (339 numerator #f () ())
  2920. (340 scheme-level-0 #f () ())
  2921. (341 scheme-level-0 #f () ())
  2922. (342 eof-object #f () ())
  2923. (343 scheme-level-0 #f () ())
  2924. (344 scheme-level-0 #f () ())
  2925. (345 byte-vector-length #f () ())
  2926. (346 scheme-level-0 #f () ())
  2927. (347 scheme-level-0 #f () ())
  2928. (348 resume-native-poll #f () ())
  2929. (349 scheme-level-0 #f () ())
  2930. (350 scheme-level-0 #f () ())
  2931. (351 record-ref #f () ())
  2932. (352 scheme-level-0 #f () ())
  2933. (353 scheme-level-0 #f () ())
  2934. (354 make-polar #f () ())
  2935. (355 scheme-level-0 #f () ())
  2936. (356 scheme-level-0 #f () ())
  2937. (357 write-char #f () ())
  2938. (358 scheme-level-0 #f () ())
  2939. (359 scheme-level-0 #f () ())
  2940. (360 symbol->string #f () ())
  2941. (361 scheme-level-0 #f () ())
  2942. (362 scheme-level-0 #f () ())
  2943. (363 exact? #f () ())
  2944. (364 scheme-level-0 #f () ())
  2945. (365 scheme-level-0 #f () ())
  2946. (366 push-false #f () ())
  2947. (367 scheme-level-0 #f () ())
  2948. (368 scheme-level-0 #f () ())
  2949. (369 provisional-vector-ref #f () ())
  2950. (370 scheme-level-0 #f () ())
  2951. (371 scheme-level-0 #f () ())
  2952. (372 vector-ref #f () ())
  2953. (373 scheme-level-0 #f () ())
  2954. (374 scheme-level-0 #f () ())
  2955. (375 set-current-thread! #f () ())
  2956. (376 scheme-level-0 #f () ())
  2957. (377 scheme-level-0 #f () ())
  2958. (378 provisional-set-port-index! #f () ())
  2959. (379 scheme-level-0 #f () ())
  2960. (380 scheme-level-0 #f () ())
  2961. (381 immutable? #f () ())
  2962. (382 scheme-level-0 #f () ())
  2963. (383 scheme-level-0 #f () ())
  2964. (384 set-exception-handlers! #f () ())
  2965. (385 scheme-level-0 #f () ())
  2966. (386 scheme-level-0 #f () ())
  2967. (387 string-ref #f () ())
  2968. (388 scheme-level-0 #f () ())
  2969. (389 scheme-level-0 #f () ())
  2970. (390 set-port-index! #f () ())
  2971. (391 scheme-level-0 #f () ())
  2972. (392 scheme-level-0 #f () ())
  2973. (393 provisional-set-port-limit! #f () ())
  2974. (394 scheme-level-0 #f () ())
  2975. (395 scheme-level-0 #f () ())
  2976. (396 make-shared-binding #f () ())
  2977. (397 scheme-level-0 #f () ())
  2978. (398 scheme-level-0 #f () ())
  2979. (399 current-thread #f () ())
  2980. (400 scheme-level-0 #f () ())
  2981. (401 scheme-level-0 #f () ())
  2982. (402 provisional-port-index #f () ())
  2983. (403 scheme-level-0 #f () ())
  2984. (404 scheme-level-0 #f () ())
  2985. (405 channel-status #f () ())
  2986. (406 scheme-level-0 #f () ())
  2987. (407 scheme-level-0 #f () ())
  2988. (408 set-port-limit! #f () ())
  2989. (409 scheme-level-0 #f () ())
  2990. (410 scheme-level-0 #f () ())
  2991. (411 shared-binding-name #f () ())
  2992. (412 scheme-level-0 #f () ())
  2993. (413 scheme-level-0 #f () ())
  2994. (414 port-index #f () ())
  2995. (415 scheme-level-0 #f () ())
  2996. (416 scheme-level-0 #f () ())
  2997. (417 make-immutable! #f () ())
  2998. (418 scheme-level-0 #f () ())
  2999. (419 scheme-level-0 #f () ())
  3000. (420 write-byte #f () ())
  3001. (421 scheme-level-0 #f () ())
  3002. (422 scheme-level-0 #f () ())
  3003. (423 byte-vector-logging-ref #f () ())
  3004. (424 scheme-level-0 #f () ())
  3005. (425 scheme-level-0 #f () ())
  3006. (426 set-enabled-interrupts! #f () ())
  3007. (427 scheme-level-0 #f () ())
  3008. (428 scheme-level-0 #f () ())
  3009. (429 provisional-port-limit #f () ())
  3010. (430 scheme-level-0 #f () ())
  3011. (431 scheme-level-0 #f () ())
  3012. (432 port-limit #f () ())
  3013. (433 scheme-level-0 #f () ())
  3014. (434 scheme-level-0 #f () ())
  3015. (435 undefine-shared-binding #f () ())
  3016. (436 scheme-level-0 #f () ())
  3017. (437 scheme-level-0 #f () ())
  3018. (438 channel-close-silently? #f () ())
  3019. (439 scheme-level-0 #f () ())
  3020. (440 scheme-level-0 #f () ())
  3021. (441 attempt-copy-bytes! #f () ())
  3022. (442 scheme-level-0 #f () ())
  3023. (443 scheme-level-0 #f () ())
  3024. (444 record-set! #f () ())
  3025. (445 scheme-level-0 #f () ())
  3026. (446 scheme-level-0 #f () ())
  3027. (447 shared-binding? #f () ())
  3028. (448 scheme-level-0 #f () ())
  3029. (449 scheme-level-0 #f () ())
  3030. (450 eof-object? #f () ())
  3031. (451 scheme-level-0 #f () ())
  3032. (452 scheme-level-0 #f () ())
  3033. (453 set-interrupt-handlers! #f () ())
  3034. (454 scheme-level-0 #f () ())
  3035. (455 scheme-level-0 #f () ())
  3036. (456 record #f () ())
  3037. (457 scheme-level-0 #f () ())
  3038. (458 scheme-level-0 #f () ())
  3039. (459 schedule-interrupt #f () ())
  3040. (460 scheme-level-0 #f () ())
  3041. (461 scheme-level-0 #f () ())
  3042. (462 channel-maybe-write #f () ())
  3043. (463 scheme-level-0 #f () ())
  3044. (464 scheme-level-0 #f () ())
  3045. (465 unspecific #f () ())
  3046. (466 scheme-level-0 #f () ())
  3047. (467 scheme-level-0 #f () ())
  3048. (468 provisional-vector-set! #f () ())
  3049. (469 scheme-level-0 #f () ())
  3050. (470 scheme-level-0 #f () ())
  3051. (471 extended-number-ref #f () ())
  3052. (472 scheme-level-0 #f () ())
  3053. (473 scheme-level-0 #f () ())
  3054. (474 vector-set! #f () ())
  3055. (475 scheme-level-0 #f () ())
  3056. (476 scheme-level-0 #f () ())
  3057. (477 decode-char #f () ())
  3058. (478 scheme-level-0 #f () ())
  3059. (479 scheme-level-0 #f () ())
  3060. (480 copy-bytes! #f () ())
  3061. (481 scheme-level-0 #f () ())
  3062. (482 scheme-level-0 #f () ())
  3063. (483 string-set! #f () ())
  3064. (484 scheme-level-0 #f () ())
  3065. (485 scheme-level-0 #f () ())
  3066. (486 unassigned #f () ())
  3067. (487 scheme-level-0 #f () ())
  3068. (488 scheme-level-0 #f () ())
  3069. (489 call-external-value #f () ())
  3070. (490 scheme-level-0 #f () ())
  3071. (491 scheme-level-0 #f () ())
  3072. (492 values #f () ())
  3073. (493 scheme-level-0 #f () ())
  3074. (494 scheme-level-0 #f () ())
  3075. (495 intern #f () ())
  3076. (496 scheme-level-0 #f () ())
  3077. (497 scheme-level-0 #f () ())
  3078. (498 vector #f () ())
  3079. (499 scheme-level-0 #f () ())
  3080. (500 scheme-level-0 #f () ())
  3081. (501 write-image-low #f () ())
  3082. (502 scheme-level-0 #f () ())
  3083. (503 scheme-level-0 #f () ())
  3084. (504 provisional-byte-vector-ref #f () ())
  3085. (505 scheme-level-0 #f () ())
  3086. (506 scheme-level-0 #f () ())
  3087. (507 encode-char #f () ())
  3088. (508 scheme-level-0 #f () ())
  3089. (509 scheme-level-0 #f () ())
  3090. (510 byte-vector-logging-set! #f () ())
  3091. (511 scheme-level-0 #f () ())
  3092. (512 scheme-level-0 #f () ())
  3093. (513 byte-vector-ref #f () ())
  3094. (514 scheme-level-0 #f () ())
  3095. (515 scheme-level-0 #f () ())
  3096. (516 make-double #f () ())
  3097. (517 scheme-level-0 #f () ())
  3098. (518 scheme-level-0 #f () ())
  3099. (519 provisional-set-location-id! #f () ())
  3100. (520 scheme-level-0 #f () ())
  3101. (521 scheme-level-0 #f () ())
  3102. (522 make-record #f () ())
  3103. (523 scheme-level-0 #f () ())
  3104. (524 scheme-level-0 #f () ())
  3105. (525 set-location-id! #f () ())
  3106. (526 scheme-level-0 #f () ())
  3107. (527 scheme-level-0 #f () ())
  3108. (528 provisional-location-id #f () ())
  3109. (529 scheme-level-0 #f () ())
  3110. (530 scheme-level-0 #f () ())
  3111. (531 decode-char! #f () ())
  3112. (532 scheme-level-0 #f () ())
  3113. (533 scheme-level-0 #f () ())
  3114. (534 location-id #f () ())
  3115. (535 scheme-level-0 #f () ())
  3116. (536 scheme-level-0 #f () ())
  3117. (537 bitwise-and #f () ())
  3118. (538 scheme-level-0 #f () ())
  3119. (539 scheme-level-0 #f () ())
  3120. (540 eq? #f () ())
  3121. (541 scheme-level-0 #f () ())
  3122. (542 scheme-level-0 #f () ())
  3123. (543 encode-char! #f () ())
  3124. (544 scheme-level-0 #f () ())
  3125. (545 scheme-level-0 #f () ())
  3126. (546 double? #f () ())
  3127. (547 scheme-level-0 #f () ())
  3128. (548 scheme-level-0 #f () ())
  3129. (549 extended-number-set! #f () ())
  3130. (550 scheme-level-0 #f () ())
  3131. (551 scheme-level-0 #f () ())
  3132. (552 make-vector #f () ())
  3133. (553 scheme-level-0 #f () ())
  3134. (554 scheme-level-0 #f () ())
  3135. (555 record? #f () ())
  3136. (556 scheme-level-0 #f () ())
  3137. (557 scheme-level-0 #f () ())
  3138. (558 provisional-set-port-buffer! #f () ())
  3139. (559 scheme-level-0 #f () ())
  3140. (560 scheme-level-0 #f () ())
  3141. (561 make-string #f () ())
  3142. (562 scheme-level-0 #f () ())
  3143. (563 scheme-level-0 #f () ())
  3144. (564 find-undefined-imported-bindings #f () ())
  3145. (565 scheme-level-0 #f () ())
  3146. (566 scheme-level-0 #f () ())
  3147. (567 set-port-buffer! #f () ())
  3148. (568 scheme-level-0 #f () ())
  3149. (569 scheme-level-0 #f () ())
  3150. (570 primitive-catch #f () ())
  3151. (571 scheme-level-0 #f () ())
  3152. (572 scheme-level-0 #f () ())
  3153. (573 string-hash #f () ())
  3154. (574 scheme-level-0 #f () ())
  3155. (575 scheme-level-0 #f () ())
  3156. (576 provisional-byte-vector-set! #f () ())
  3157. (577 scheme-level-0 #f () ())
  3158. (578 scheme-level-0 #f () ())
  3159. (579 template-length #f () ())
  3160. (580 scheme-level-0 #f () ())
  3161. (581 scheme-level-0 #f () ())
  3162. (582 provisional-port-buffer #f () ())
  3163. (583 scheme-level-0 #f () ())
  3164. (584 scheme-level-0 #f () ())
  3165. (585 number? #f () ())
  3166. (586 scheme-level-0 #f () ())
  3167. (587 scheme-level-0 #f () ())
  3168. (588 provisional-set-port-pending-cr?! #f () ())
  3169. (589 scheme-level-0 #f () ())
  3170. (590 scheme-level-0 #f () ())
  3171. (591 provisional-set-port-text-codec-spec! #f () ())
  3172. (592 scheme-level-0 #f () ())
  3173. (593 scheme-level-0 #f () ())
  3174. (594 port-buffer #f () ())
  3175. (595 scheme-level-0 #f () ())
  3176. (596 scheme-level-0 #f () ())
  3177. (597 byte-vector-set! #f () ())
  3178. (598 scheme-level-0 #f () ())
  3179. (599 scheme-level-0 #f () ())
  3180. (600 bitwise-ior #f () ())
  3181. (601 scheme-level-0 #f () ())
  3182. (602 scheme-level-0 #f () ())
  3183. (603 set-port-pending-cr?! #f () ())
  3184. (604 scheme-level-0 #f () ())
  3185. (605 scheme-level-0 #f () ())
  3186. (606 set-port-text-codec-spec! #f () ())
  3187. (607 scheme-level-0 #f () ())
  3188. (608 scheme-level-0 #f () ())
  3189. (609 provisional-set-car! #f () ())
  3190. (610 scheme-level-0 #f () ())
  3191. (611 scheme-level-0 #f () ())
  3192. (612 provisional-set-cdr! #f () ())
  3193. (613 scheme-level-0 #f () ())
  3194. (614 scheme-level-0 #f () ())
  3195. (615 set-car! #f () ())
  3196. (616 scheme-level-0 #f () ())
  3197. (617 scheme-level-0 #f () ())
  3198. (618 provisional-port-pending-cr? #f () ())
  3199. (619 scheme-level-0 #f () ())
  3200. (620 scheme-level-0 #f () ())
  3201. (621 provisional-port-text-codec-spec #f () ())
  3202. (622 scheme-level-0 #f () ())
  3203. (623 scheme-level-0 #f () ())
  3204. (624 closure-env #f () ())
  3205. (625 scheme-level-0 #f () ())
  3206. (626 scheme-level-0 #f () ())
  3207. (627 vector? #f () ())
  3208. (628 scheme-level-0 #f () ())
  3209. (629 scheme-level-0 #f () ())
  3210. (630 bitwise-not #f () ())
  3211. (631 scheme-level-0 #f () ())
  3212. (632 scheme-level-0 #f () ())
  3213. (633 set-cdr! #f () ())
  3214. (634 scheme-level-0 #f () ())
  3215. (635 scheme-level-0 #f () ())
  3216. (636 port-pending-cr? #f () ())
  3217. (637 scheme-level-0 #f () ())
  3218. (638 scheme-level-0 #f () ())
  3219. (639 port-text-codec-spec #f () ())
  3220. (640 scheme-level-0 #f () ())
  3221. (641 scheme-level-0 #f () ())
  3222. (642 provisional-car #f () ())
  3223. (643 scheme-level-0 #f () ())
  3224. (644 scheme-level-0 #f () ())
  3225. (645 symbol? #f () ())
  3226. (646 scheme-level-0 #f () ())
  3227. (647 scheme-level-0 #f () ())
  3228. (648 string? #f () ())
  3229. (649 scheme-level-0 #f () ())
  3230. (650 scheme-level-0 #f () ())
  3231. (651 provisional-cdr #f () ())
  3232. (652 scheme-level-0 #f () ())
  3233. (653 scheme-level-0 #f () ())
  3234. (654 car #f () ())
  3235. (655 scheme-level-0 #f () ())
  3236. (656 scheme-level-0 #f () ())
  3237. (657 bitwise-xor #f () ())
  3238. (658 scheme-level-0 #f () ())
  3239. (659 scheme-level-0 #f () ())
  3240. (660 cdr #f () ())
  3241. (661 scheme-level-0 #f () ())
  3242. (662 scheme-level-0 #f () ())
  3243. (663 find-all-records #f () ())
  3244. (664 scheme-level-0 #f () ())
  3245. (665 scheme-level-0 #f () ())
  3246. (666 continuation-length #f () ())
  3247. (667 scheme-level-0 #f () ())
  3248. (668 scheme-level-0 #f () ())
  3249. (669 log #f () ())
  3250. (670 scheme-level-0 #f () ())
  3251. (671 scheme-level-0 #f () ())
  3252. (672 message #f () ())
  3253. (673 scheme-level-0 #f () ())
  3254. (674 scheme-level-0 #f () ())
  3255. (675 tan #f () ())
  3256. (676 scheme-level-0 #f () ())
  3257. (677 scheme-level-0 #f () ())
  3258. (678 collect #f () ())
  3259. (679 scheme-level-0 #f () ())
  3260. (680 scheme-level-0 #f () ())
  3261. (681 cos #f () ())
  3262. (682 scheme-level-0 #f () ())
  3263. (683 scheme-level-0 #f () ())
  3264. (684 channel-os-index #f () ())
  3265. (685 scheme-level-0 #f () ())
  3266. (686 scheme-level-0 #f () ())
  3267. (687 provisional-set-port-status! #f () ())
  3268. (688 scheme-level-0 #f () ())
  3269. (689 scheme-level-0 #f () ())
  3270. (690 make-extended-number #f () ())
  3271. (691 scheme-level-0 #f () ())
  3272. (692 scheme-level-0 #f () ())
  3273. (693 set-port-status! #f () ())
  3274. (694 scheme-level-0 #f () ())
  3275. (695 scheme-level-0 #f () ())
  3276. (696 sin #f () ())
  3277. (697 scheme-level-0 #f () ())
  3278. (698 scheme-level-0 #f () ())
  3279. (699 exp #f () ())
  3280. (700 scheme-level-0 #f () ())
  3281. (701 scheme-level-0 #f () ())
  3282. (702 provisional-port-status #f () ())
  3283. (703 scheme-level-0 #f () ())
  3284. (704 scheme-level-0 #f () ())
  3285. (705 pop #f () ())
  3286. (706 scheme-level-0 #f () ())
  3287. (707 scheme-level-0 #f () ())
  3288. (708 port-status #f () ())
  3289. (709 scheme-level-0 #f () ())
  3290. (710 scheme-level-0 #f () ())
  3291. (711 return-from-callback #f () ())
  3292. (712 scheme-level-0 #f () ())
  3293. (713 scheme-level-0 #f () ())
  3294. (714 make-byte-vector #f () ())
  3295. (715 scheme-level-0 #f () ())
  3296. (716 scheme-level-0 #f () ())
  3297. (717 weak-pointer-ref #f () ())
  3298. (718 scheme-level-0 #f () ())
  3299. (719 scheme-level-0 #f () ())
  3300. (720 call-with-values #f () ())
  3301. (721 scheme-level-0 #f () ())
  3302. (722 scheme-level-0 #f () ())
  3303. (723 denominator #f () ())
  3304. (724 scheme-level-0 #f () ())
  3305. (725 scheme-level-0 #f () ())
  3306. (726 reverse-list->string #f () ())
  3307. (727 scheme-level-0 #f () ())
  3308. (728 scheme-level-0 #f () ())
  3309. (729 extended-number? #f () ())
  3310. (730 scheme-level-0 #f () ())
  3311. (731 scheme-level-0 #f () ())
  3312. (732 shared-binding-is-import? #f () ())
  3313. (733 scheme-level-0 #f () ())
  3314. (734 scheme-level-0 #f () ())
  3315. (735 provisional-cell-ref #f () ())
  3316. (736 scheme-level-0 #f () ())
  3317. (737 scheme-level-0 #f () ())
  3318. (738 return-from-native-exception #f () ())
  3319. (739 scheme-level-0 #f () ())
  3320. (740 scheme-level-0 #f () ())
  3321. (741 os-error-message #f () ())
  3322. (742 scheme-level-0 #f () ())
  3323. (743 scheme-level-0 #f () ())
  3324. (744 find-all #f () ())
  3325. (745 scheme-level-0 #f () ())
  3326. (746 scheme-level-0 #f () ())
  3327. (747 cell-ref #f () ())
  3328. (748 scheme-level-0 #f () ())
  3329. (749 scheme-level-0 #f () ())
  3330. (750 byte-vector? #f () ())
  3331. (751 scheme-level-0 #f () ())
  3332. (752 scheme-level-0 #f () ())
  3333. (753 string=? #f () ())
  3334. (754 scheme-level-0 #f () ())
  3335. (755 scheme-level-0 #f () ())
  3336. (756 open-channel #f () ())
  3337. (757 scheme-level-0 #f () ())
  3338. (758 scheme-level-0 #f () ())
  3339. (759 channel? #f () ())
  3340. (760 scheme-level-0 #f () ())
  3341. (761 scheme-level-0 #f () ())
  3342. (762 unassigned-check #f () ())
  3343. (763 scheme-level-0 #f () ())
  3344. (764 scheme-level-0 #f () ())
  3345. (765 make-rectangular #f () ())
  3346. (766 scheme-level-0 #f () ())
  3347. (767 scheme-level-0 #f () ())
  3348. (768 set-session-data! #f () ())
  3349. (769 scheme-level-0 #f () ())
  3350. (770 scheme-level-0 #f () ())
  3351. (771 maybe-commit #f () ())
  3352. (772 scheme-level-0 #f () ())
  3353. (773 scheme-level-0 #f () ())
  3354. (774 template-ref #f () ())
  3355. (775 scheme-level-0 #f () ())
  3356. (776 scheme-level-0 #f () ())
  3357. (777 make-closure #f () ())
  3358. (778 scheme-level-0 #f () ())
  3359. (779 scheme-level-0 #f () ())
  3360. (780 session-data #f () ())
  3361. (781 scheme-level-0 #f () ())
  3362. (782 scheme-level-0 #f () ())
  3363. (783 integer? #f () ())
  3364. (784 scheme-level-0 #f () ())
  3365. (785 scheme-level-0 #f () ())
  3366. (786 signal-condition #f () ())
  3367. (787 scheme-level-0 #f () ())
  3368. (788 scheme-level-0 #f () ())
  3369. (789 provisional-set-port-pending-eof?! #f () ())
  3370. (790 scheme-level-0 #f () ())
  3371. (791 scheme-level-0 #f () ())
  3372. (792 port-handler #f () ())
  3373. (793 scheme-level-0 #f () ())
  3374. (794 scheme-level-0 #f () ())
  3375. (795 set-port-pending-eof?! #f () ())
  3376. (796 scheme-level-0 #f () ())
  3377. (797 scheme-level-0 #f () ())
  3378. (798 arithmetic-shift #f () ())
  3379. (799 scheme-level-0 #f () ())
  3380. (800 scheme-level-0 #f () ())
  3381. (801 provisional-port-pending-eof? #f () ())
  3382. (802 scheme-level-0 #f () ())
  3383. (803 scheme-level-0 #f () ())
  3384. (804 provisional-cell-set! #f () ())
  3385. (805 scheme-level-0 #f () ())
  3386. (806 scheme-level-0 #f () ())
  3387. (807 complex? #f () ())
  3388. (808 scheme-level-0 #f () ())
  3389. (809 scheme-level-0 #f () ())
  3390. (810 port-pending-eof? #f () ())
  3391. (811 scheme-level-0 #f () ())
  3392. (812 scheme-level-0 #f () ())
  3393. (813 cell-set! #f () ())
  3394. (814 scheme-level-0 #f () ())
  3395. (815 scheme-level-0 #f () ())
  3396. (816 scheme-level-0 #f () ())
  3397. (817 closure? #f () ())
  3398. (818 scheme-level-0 #f () ())
  3399. (819 scheme-level-0 #f () ())
  3400. (820 continuation-ref #f () ())
  3401. (821 scheme-level-0 #f () ())
  3402. (822 scheme-level-0 #f () ())
  3403. (823 closure-template #f () ())
  3404. (824 scheme-level-0 #f () ())
  3405. (825 scheme-level-0 #f () ())
  3406. (826 current-cont #f () ())
  3407. (827 scheme-level-0 #f () ())
  3408. (828 scheme-level-0 #f () ())
  3409. (829 char->ascii 828 () ())
  3410. (830 scheme-level-0 #f () ())
  3411. (831 ascii->char 830 () ())
  3412. (832 scheme-level-0 #f () ())
  3413. (833 char->integer 832 () ())
  3414. (834 scheme-level-0 #f () ())
  3415. (835 integer->char 834 () ())
  3416. (836 scheme-level-0 #f () ())
  3417. (837 invoke-closure 836 () ())
  3418. (838 scheme-level-0 #f () ())
  3419. (839 primitive-cwcc 838 () ())
  3420. (840 #f 839 () ())
  3421. (841 scheme-level-0 #f () ())
  3422. (842 make-undefined-location 841 () ())
  3423. (843 scheme-level-0 #f () ())
  3424. (844 location-assigned? 843 () ())
  3425. (845 scheme-level-0 #f () ())
  3426. (846 cell-unassigned? 845 () ())
  3427. (847 scheme-level-0 #f () ())
  3428. (848 vector-unassigned? 847 () ())
  3429. (849 scheme-level-0 #f () ())
  3430. (850 string-copy 849 () ())
  3431. (851 scheme-level-0 #f () ())
  3432. (852 string->symbol 851 () ())
  3433. (853 scheme-level-0 #f () ())
  3434. (854 input-port? 853 () ())
  3435. (855 scheme-level-0 #f () ())
  3436. (856 output-port? 855 () ())
  3437. (857 scheme-level-0 #f () ())
  3438. (858 record-type 857 () ())
  3439. (859 scheme-level-0 #f () ())
  3440. (860 make-code-vector 859 () ())
  3441. (861 scheme-level-0 #f () ())
  3442. (862 code-vector? 861 () ())
  3443. (863 scheme-level-0 #f () ())
  3444. (864 code-vector-length 863 () ())
  3445. (865 scheme-level-0 #f () ())
  3446. (866 code-vector-ref 865 () ())
  3447. (867 scheme-level-0 #f () ())
  3448. (868 code-vector-set! 867 () ())
  3449. (869 scheme-level-0 #f () ())
  3450. (870 lookup-imported-binding 869 () ())
  3451. (871 scheme-level-0 #f () ())
  3452. (872 lookup-exported-binding 871 () ())
  3453. (873 scheme-level-0 #f () ())
  3454. (874 define-imported-binding 873 () ())
  3455. (875 scheme-level-0 #f () ())
  3456. (876 define-exported-binding 875 () ())
  3457. (877 scheme-level-0 #f () ())
  3458. (878 undefine-imported-binding 877 () ())
  3459. (879 scheme-level-0 #f () ())
  3460. (880 undefine-exported-binding 879 () ())
  3461. (881 scheme-level-0 #f () ())
  3462. (882 secret-length 881 () ())
  3463. (883 scheme-level-0 #f () ())
  3464. (884 byte-vector 883 () ())
  3465. (885 loop##1 884 () ())
  3466. (886 scheme-level-0 #f () ())
  3467. (887 debug-message 886 () ())
  3468. (888 scheme-level-0 #f () ())
  3469. (889 signal 888 () ())
  3470. (890 scheme-level-0 #f () ())
  3471. (891 vector-prefix->list 890 () ())
  3472. (892 loop##2 891 () ())
  3473. (893 scheme-level-0 #f () ())
  3474. (894 write-image 893 () ())
  3475. (895 scheme-level-0 #f () ())
  3476. (896 make-proposal 895 () ())
  3477. (897 scheme-level-0 #f () ())
  3478. (898 error 897 () ())
  3479. (899 scheme-level-0 #f () ())
  3480. (900 warn 899 () ())
  3481. (901 scheme-level-0 #f () ())
  3482. (902 note 901 () ())
  3483. (903 scheme-level-0 #f () ())
  3484. (904 syntax-error 903 () ())
  3485. (905 scheme-level-0 #f () ())
  3486. (906 call-error 905 () ())
  3487. (907 scheme-level-0 #f () ())
  3488. (908 scheme-level-0 #f () ())
  3489. (909 scheme-level-0 #f () ())
  3490. (910 scheme-level-1 #f () ())
  3491. (911 scheme-level-1 #f () ())
  3492. (912 scheme-level-1 #f () ())
  3493. (913 scheme-level-1 #f () ())
  3494. (914 scheme-level-1 #f () ())
  3495. (915 scheme-level-1 #f () ())
  3496. (916 scheme-level-1 #f () ())
  3497. (917 scheme-level-1 #f () ())
  3498. (918 scheme-level-1 #f () ())
  3499. (919 scheme-level-1 #f () ())
  3500. (920 scheme-level-1 #f () ())
  3501. (921 scheme-level-1 #f () ())
  3502. (922 scheme-level-1 #f () ())
  3503. (923 scheme-level-1 #f () ())
  3504. (924 scheme-level-1 #f () ())
  3505. (925 scheme-level-1 #f () ())
  3506. (926 scheme-level-1 #f () ())
  3507. (927 scheme-level-1 #f () ())
  3508. (928 #f 927 () ())
  3509. (929 scheme-level-1 #f () ())
  3510. (930 #f 929 () ())
  3511. (931 scheme-level-1 #f () ())
  3512. (932 scheme-level-1 #f () ())
  3513. (933 char-whitespace?-proc 932 () ())
  3514. (934 scheme-level-1 #f () ())
  3515. (935 char-whitespace? 934 () ())
  3516. (936 scheme-level-1 #f () ())
  3517. (937 not 936 () ())
  3518. (938 scheme-level-1 #f () ())
  3519. (939 char>=? 938 () ())
  3520. (940 scheme-level-1 #f () ())
  3521. (941 char>? 940 () ())
  3522. (942 scheme-level-1 #f () ())
  3523. (943 char<=? 942 () ())
  3524. (944 scheme-level-1 #f () ())
  3525. (945 char-lower-case?-proc 944 () ())
  3526. (946 scheme-level-1 #f () ())
  3527. (947 char-lower-case? 946 () ())
  3528. (948 scheme-level-1 #f () ())
  3529. (949 char-upper-case?-proc 948 () ())
  3530. (950 scheme-level-1 #f () ())
  3531. (951 char-upper-case? 950 () ())
  3532. (952 scheme-level-1 #f () ())
  3533. (953 char-numeric?-proc 952 () ())
  3534. (954 scheme-level-1 #f () ())
  3535. (955 char-numeric? 954 () ())
  3536. (956 scheme-level-1 #f () ())
  3537. (957 char-alphabetic?-proc 956 () ())
  3538. (958 scheme-level-1 #f () ())
  3539. (959 char-alphabetic? 958 () ())
  3540. (960 scheme-level-1 #f () ())
  3541. (961 make-character-map 960 () ())
  3542. (962 loop##5 961 () ())
  3543. (963 scheme-level-1 #f () ())
  3544. (964 char-upcase-proc 963 () ())
  3545. (965 scheme-level-1 #f () ())
  3546. (966 char-upcase 965 () ())
  3547. (967 scheme-level-1 #f () ())
  3548. (968 char-downcase-proc 967 () ())
  3549. (969 scheme-level-1 #f () ())
  3550. (970 char-downcase 969 () ())
  3551. (971 scheme-level-1 #f () ())
  3552. (972 char-foldcase 971 () ())
  3553. (973 scheme-level-1 #f () ())
  3554. (974 char-ci-compare 973 () ())
  3555. (975 #f 974 () ())
  3556. (976 scheme-level-1 #f () ())
  3557. (977 set-char-map-procedures! 976 () ())
  3558. (978 scheme-level-1 #f () ())
  3559. (979 boolean? 978 () ())
  3560. (980 scheme-level-1 #f () ())
  3561. (981 eqv? 980 () ())
  3562. (982 scheme-level-1 #f () ())
  3563. (983 equal? 982 () ())
  3564. (984 loop 983 () ())
  3565. (985 scheme-level-1 #f () ())
  3566. (986 null? 985 () ())
  3567. (987 scheme-level-1 #f () ())
  3568. (988 inexact? 987 () ())
  3569. (989 scheme-level-1 #f () ())
  3570. (990 max-or-min 989 () ())
  3571. (991 loop 990 () ())
  3572. (992 scheme-level-1 #f () ())
  3573. (993 max 992 () ())
  3574. (994 scheme-level-1 #f () ())
  3575. (995 min 994 () ())
  3576. (996 scheme-level-1 #f () ())
  3577. (997 abs 996 () ())
  3578. (998 scheme-level-1 #f () ())
  3579. (999 zero? 998 () ())
  3580. (1000 scheme-level-1 #f () ())
  3581. (1001 positive? 1000 () ())
  3582. (1002 scheme-level-1 #f () ())
  3583. (1003 negative? 1002 () ())
  3584. (1004 scheme-level-1 #f () ())
  3585. (1005 even? 1004 () ())
  3586. (1006 scheme-level-1 #f () ())
  3587. (1007 odd? 1006 () ())
  3588. (1008 scheme-level-1 #f () ())
  3589. (1009 caar 1008 () ())
  3590. (1010 scheme-level-1 #f () ())
  3591. (1011 cadr 1010 () ())
  3592. (1012 scheme-level-1 #f () ())
  3593. (1013 cdar 1012 () ())
  3594. (1014 scheme-level-1 #f () ())
  3595. (1015 cddr 1014 () ())
  3596. (1016 scheme-level-1 #f () ())
  3597. (1017 caaar 1016 () ())
  3598. (1018 scheme-level-1 #f () ())
  3599. (1019 caadr 1018 () ())
  3600. (1020 scheme-level-1 #f () ())
  3601. (1021 cadar 1020 () ())
  3602. (1022 scheme-level-1 #f () ())
  3603. (1023 caddr 1022 () ())
  3604. (1024 scheme-level-1 #f () ())
  3605. (1025 cdaar 1024 () ())
  3606. (1026 scheme-level-1 #f () ())
  3607. (1027 cdadr 1026 () ())
  3608. (1028 scheme-level-1 #f () ())
  3609. (1029 cddar 1028 () ())
  3610. (1030 scheme-level-1 #f () ())
  3611. (1031 cdddr 1030 () ())
  3612. (1032 scheme-level-1 #f () ())
  3613. (1033 caaaar 1032 () ())
  3614. (1034 scheme-level-1 #f () ())
  3615. (1035 caaadr 1034 () ())
  3616. (1036 scheme-level-1 #f () ())
  3617. (1037 caadar 1036 () ())
  3618. (1038 scheme-level-1 #f () ())
  3619. (1039 caaddr 1038 () ())
  3620. (1040 scheme-level-1 #f () ())
  3621. (1041 cadaar 1040 () ())
  3622. (1042 scheme-level-1 #f () ())
  3623. (1043 cadadr 1042 () ())
  3624. (1044 scheme-level-1 #f () ())
  3625. (1045 caddar 1044 () ())
  3626. (1046 scheme-level-1 #f () ())
  3627. (1047 cadddr 1046 () ())
  3628. (1048 scheme-level-1 #f () ())
  3629. (1049 cdaaar 1048 () ())
  3630. (1050 scheme-level-1 #f () ())
  3631. (1051 cdaadr 1050 () ())
  3632. (1052 scheme-level-1 #f () ())
  3633. (1053 cdadar 1052 () ())
  3634. (1054 scheme-level-1 #f () ())
  3635. (1055 cdaddr 1054 () ())
  3636. (1056 scheme-level-1 #f () ())
  3637. (1057 cddaar 1056 () ())
  3638. (1058 scheme-level-1 #f () ())
  3639. (1059 cddadr 1058 () ())
  3640. (1060 scheme-level-1 #f () ())
  3641. (1061 cdddar 1060 () ())
  3642. (1062 scheme-level-1 #f () ())
  3643. (1063 cddddr 1062 () ())
  3644. (1064 scheme-level-1 #f () ())
  3645. (1065 list 1064 () ())
  3646. (1066 scheme-level-1 #f () ())
  3647. (1067 real-length 1066 () ())
  3648. (1068 scheme-level-1 #f () ())
  3649. (1069 length 1068 () ())
  3650. (1070 scheme-level-1 #f () ())
  3651. (1071 reduce 1070 () ())
  3652. (1072 scheme-level-1 #f () ())
  3653. (1073 append 1072 () ())
  3654. (1074 recur 1073 () ())
  3655. (1075 scheme-level-1 #f () ())
  3656. (1076 append-reverse 1075 () ())
  3657. (1077 scheme-level-1 #f () ())
  3658. (1078 reverse 1077 () ())
  3659. (1079 scheme-level-1 #f () ())
  3660. (1080 list-tail 1079 () ())
  3661. (1081 scheme-level-1 #f () ())
  3662. (1082 list-ref 1081 () ())
  3663. (1083 scheme-level-1 #f () ())
  3664. (1084 mem 1083 () ())
  3665. (1085 #f 1084 () ())
  3666. (1086 loop 1085 () ())
  3667. (1087 scheme-level-1 #f () ())
  3668. (1088 ass 1087 () ())
  3669. (1089 #f 1088 () ())
  3670. (1090 loop 1089 () ())
  3671. (1091 scheme-level-1 #f () ())
  3672. (1092 list? 1091 () ())
  3673. (1093 recur 1092 () ())
  3674. (1094 scheme-level-1 #f () ())
  3675. (1095 list->string 1094 () ())
  3676. (1096 loop##12 1095 () ())
  3677. (1097 scheme-level-1 #f () ())
  3678. (1098 string 1097 () ())
  3679. (1099 scheme-level-1 #f () ())
  3680. (1100 substring 1099 () ())
  3681. (1101 loop##13 1100 () ())
  3682. (1102 scheme-level-1 #f () ())
  3683. (1103 string-append 1102 () ())
  3684. (1104 #f 1103 () ())
  3685. (1105 loop 1103 () ())
  3686. (1106 loop##14 1105 () ())
  3687. (1107 scheme-level-1 #f () ())
  3688. (1108 string->list 1107 () ())
  3689. (1109 loop##15 1108 () ())
  3690. (1110 scheme-level-1 #f () ())
  3691. (1111 unspecific 1110 () ())
  3692. (1112 scheme-level-1 #f () ())
  3693. (1113 string-fill! 1112 () ())
  3694. (1114 loop##16 1113 () ())
  3695. (1115 scheme-level-1 #f () ())
  3696. (1116 make-string=? 1115 () ())
  3697. (1117 #f 1116 () ())
  3698. (1118 loop 1117 () ())
  3699. (1119 scheme-level-1 #f () ())
  3700. (1120 string-ci=? 1119 () ())
  3701. (1121 scheme-level-1 #f () ())
  3702. (1122 make-string<? 1121 () ())
  3703. (1123 #f 1122 () ())
  3704. (1124 loop 1123 () ())
  3705. (1125 scheme-level-1 #f () ())
  3706. (1126 string-ci<? 1125 () ())
  3707. (1127 scheme-level-1 #f () ())
  3708. (1128 string>? 1127 () ())
  3709. (1129 scheme-level-1 #f () ())
  3710. (1130 string<=? 1129 () ())
  3711. (1131 scheme-level-1 #f () ())
  3712. (1132 string>=? 1131 () ())
  3713. (1133 scheme-level-1 #f () ())
  3714. (1134 string-ci>? 1133 () ())
  3715. (1135 scheme-level-1 #f () ())
  3716. (1136 string-ci<=? 1135 () ())
  3717. (1137 scheme-level-1 #f () ())
  3718. (1138 string-ci>=? 1137 () ())
  3719. (1139 scheme-level-1 #f () ())
  3720. (1140 set-string-ci-procedures! 1139 () ())
  3721. (1141 scheme-level-1 #f () ())
  3722. (1142 vector->list 1141 () ())
  3723. (1143 loop##18 1142 () ())
  3724. (1144 scheme-level-1 #f () ())
  3725. (1145 list->vector 1144 () ())
  3726. (1146 loop##19 1145 () ())
  3727. (1147 scheme-level-1 #f () ())
  3728. (1148 vector-fill! 1147 () ())
  3729. (1149 loop##20 1148 () ())
  3730. (1150 scheme-level-1 #f () ())
  3731. (1151 map1 1150 () ())
  3732. (1152 scheme-level-1 #f () ())
  3733. (1153 any 1152 () ())
  3734. (1154 scheme-level-1 #f () ())
  3735. (1155 map2+ 1154 () ())
  3736. (1156 scheme-level-1 #f () ())
  3737. (1157 map 1156 () ())
  3738. (1158 scheme-level-1 #f () ())
  3739. (1159 for-each1 1158 () ())
  3740. (1160 loop 1159 () ())
  3741. (1161 scheme-level-1 #f () ())
  3742. (1162 for-each2+ 1161 () ())
  3743. (1163 loop 1162 () ())
  3744. (1164 scheme-level-1 #f () ())
  3745. (1165 for-each 1164 () ())
  3746. (1166 scheme-level-1 #f () ())
  3747. (1167 make-promise 1166 () ())
  3748. (1168 #f 1167 () ())
  3749. (1169 scheme-level-1 #f () ())
  3750. (1170 force 1169 () ())
  3751. (1171 scheme-level-1 #f () ())
  3752. (1172 filter 1171 () ())
  3753. (1173 #f 1172 () ())
  3754. (1174 scheme-level-1 #f () ())
  3755. (1175 pos 1174 () ())
  3756. (1176 #f 1175 () ())
  3757. (1177 loop 1176 () ())
  3758. (1178 scheme-level-1 #f () ())
  3759. (1179 every 1178 () ())
  3760. (1180 scheme-level-1 #f () ())
  3761. (1181 sublist 1180 () ())
  3762. (1182 recur 1181 () ())
  3763. (1183 scheme-level-1 #f () ())
  3764. (1184 last 1183 () ())
  3765. (1185 scheme-level-1 #f () ())
  3766. (1186 insert 1185 () ())
  3767. (1187 scheme-level-1 #f () ())
  3768. (1188 fold 1187 () ())
  3769. (1189 loop##24 1188 () ())
  3770. (1190 scheme-level-1 #f () ())
  3771. (1191 fold->2 1190 () ())
  3772. (1192 loop 1191 () ())
  3773. (1193 #f 1192 () ())
  3774. (1194 #f 1192 () ())
  3775. (1195 scheme-level-1 #f () ())
  3776. (1196 fold->3 1195 () ())
  3777. (1197 loop 1196 () ())
  3778. (1198 #f 1197 () ())
  3779. (1199 #f 1197 () ())
  3780. (1200 scheme-level-1 #f () ())
  3781. (1201 modulo 1200 () ())
  3782. (1202 scheme-level-1 #f () ())
  3783. (1203 ceiling 1202 () ())
  3784. (1204 scheme-level-1 #f () ())
  3785. (1205 truncate 1204 () ())
  3786. (1206 scheme-level-1 #f () ())
  3787. (1207 round 1206 () ())
  3788. (1208 scheme-level-1 #f () ())
  3789. (1209 euclid 1208 () ())
  3790. (1210 scheme-level-1 #f () ())
  3791. (1211 gcd 1210 () ())
  3792. (1212 #f 1211 () ())
  3793. (1213 scheme-level-1 #f () ())
  3794. (1214 lcm 1213 () ())
  3795. (1215 #f 1214 () ())
  3796. (1216 scheme-level-1 #f () ())
  3797. (1217 raise-to-integer-power 1216 () ())
  3798. (1218 loop 1217 () ())
  3799. (1219 scheme-level-1 #f () ())
  3800. (1220 expt 1219 () ())
  3801. (1221 scheme-level-1 #f () ())
  3802. (1222 simplest-rational 1221 () ())
  3803. (1223 simplest-rational-internal 1222 () ())
  3804. (1224 scheme-level-1 #f () ())
  3805. (1225 rationalize 1224 () ())
  3806. (1226 record-types #f () ())
  3807. (1227 #f 1226 () ())
  3808. (1228 record-types #f () ())
  3809. (1229 record-types #f () ())
  3810. (1230 record-types #f () ())
  3811. (1231 record-types #f () ())
  3812. (1232 record-type-name 1231 () ())
  3813. (1233 record-types #f () ())
  3814. (1234 make-default-record-discloser 1233 () ())
  3815. (1235 #f 1234 () ())
  3816. (1236 record-types #f () ())
  3817. (1237 make-record-type 1236 () ())
  3818. (1238 record-types #f () ())
  3819. (1239 record-type? 1238 () ())
  3820. (1240 record-types #f () ())
  3821. (1241 record-type-resumer 1240 () ())
  3822. (1242 record-types #f () ())
  3823. (1243 set-record-type-resumer! 1242 () ())
  3824. (1244 record-types #f () ())
  3825. (1245 record-type-uid 1244 () ())
  3826. (1246 record-types #f () ())
  3827. (1247 record-type-field-names 1246 () ())
  3828. (1248 record-types #f () ())
  3829. (1249 record-type-number-of-fields 1248 () ())
  3830. (1250 record-types #f () ())
  3831. (1251 record-type-discloser 1250 () ())
  3832. (1252 record-types #f () ())
  3833. (1253 set-record-type-discloser! 1252 () ())
  3834. (1254 record-types #f () ())
  3835. (1255 record-field-index 1254 () ())
  3836. (1256 loop 1255 () ())
  3837. (1257 record-types #f () ())
  3838. (1258 record-constructor 1257 () ())
  3839. (1259 #f 1258 () ())
  3840. (1260 #f 1258 () ())
  3841. (1261 loop 1260 () ())
  3842. (1262 record-types #f () ())
  3843. (1263 record-accessor 1262 () ())
  3844. (1264 #f 1263 () ())
  3845. (1265 record-types #f () ())
  3846. (1266 record-modifier 1265 () ())
  3847. (1267 #f 1266 () ())
  3848. (1268 record-types #f () ())
  3849. (1269 record-predicate 1268 () ())
  3850. (1270 #f 1269 () ())
  3851. (1271 record-types #f () ())
  3852. (1272 define-record-discloser 1271 () ())
  3853. (1273 record-types #f () ())
  3854. (1274 disclose-record 1273 () ())
  3855. (1275 record-types #f () ())
  3856. (1276 define-record-resumer 1275 () ())
  3857. (1277 record-types #f () ())
  3858. (1278 resume-record 1277 () ())
  3859. (1279 record-types #f () ())
  3860. (1280 initialize-records! 1279 () ())
  3861. (1281 loop##27 1280 () ())
  3862. (1282 record-types #f () ())
  3863. (1283 record-types #f () ())
  3864. (1284 record-types #f () ())
  3865. (1285 record-types #f () ())
  3866. (1286 define-record-types #f () ())
  3867. (1287 methods #f () ())
  3868. (1288 &add-method! 1287 () ())
  3869. (1289 methods #f () ())
  3870. (1290 &disclose 1289 () ())
  3871. (1291 methods #f () ())
  3872. (1292 &disclose 1291 () ())
  3873. (1293 methods #f () ())
  3874. (1294 methods #f () ())
  3875. (1295 disclose 1294 () ())
  3876. (1296 methods #f () ())
  3877. (1297 &same-type? 1296 () ())
  3878. (1298 methods #f () ())
  3879. (1299 &type-priority 1298 () ())
  3880. (1300 methods #f () ())
  3881. (1301 &type-predicate 1300 () ())
  3882. (1302 methods #f () ())
  3883. (1303 #f 1302 () ())
  3884. (1304 methods #f () ())
  3885. (1305 singleton-value 1304 () ())
  3886. (1306 methods #f () ())
  3887. (1307 singleton 1306 () ())
  3888. (1308 methods #f () ())
  3889. (1309 methods #f () ())
  3890. (1310 &same-type? 1309 () ())
  3891. (1311 methods #f () ())
  3892. (1312 &same-type? 1311 () ())
  3893. (1313 methods #f () ())
  3894. (1314 methods #f () ())
  3895. (1315 same-type? 1314 () ())
  3896. (1316 methods #f () ())
  3897. (1317 &type-superiors 1316 () ())
  3898. (1318 methods #f () ())
  3899. (1319 &type-superiors 1318 () ())
  3900. (1320 methods #f () ())
  3901. (1321 methods #f () ())
  3902. (1322 type-superiors 1321 () ())
  3903. (1323 methods #f () ())
  3904. (1324 &type-priority 1323 () ())
  3905. (1325 methods #f () ())
  3906. (1326 &type-priority 1325 () ())
  3907. (1327 methods #f () ())
  3908. (1328 methods #f () ())
  3909. (1329 type-priority 1328 () ())
  3910. (1330 methods #f () ())
  3911. (1331 &type-predicate 1330 () ())
  3912. (1332 methods #f () ())
  3913. (1333 &type-predicate 1332 () ())
  3914. (1334 methods #f () ())
  3915. (1335 methods #f () ())
  3916. (1336 type-predicate 1335 () ())
  3917. (1337 methods #f () ())
  3918. (1338 add-method! 1337 () ())
  3919. (1339 methods #f () ())
  3920. (1340 methods #f () ())
  3921. (1341 add-method! 1340 () ())
  3922. (1342 methods #f () ())
  3923. (1343 #f 1342 () ())
  3924. (1344 methods #f () ())
  3925. (1345 set-method-table-methods! 1344 () ())
  3926. (1346 methods #f () ())
  3927. (1347 method-table-methods 1346 () ())
  3928. (1348 methods #f () ())
  3929. (1349 method-table-prototype 1348 () ())
  3930. (1350 methods #f () ())
  3931. (1351 make-generic 1350 () ())
  3932. (1352 methods #f () ())
  3933. (1353 method-table-get-perform 1352 () ())
  3934. (1354 methods #f () ())
  3935. (1355 method-table-set-perform! 1354 () ())
  3936. (1356 methods #f () ())
  3937. (1357 method-table-id 1356 () ())
  3938. (1358 methods #f () ())
  3939. (1359 really-make-method-table 1358 () ())
  3940. (1360 methods #f () ())
  3941. (1361 methods #f () ())
  3942. (1362 #f 1361 () ())
  3943. (1363 methods #f () ())
  3944. (1364 method-info-types 1363 () ())
  3945. (1365 methods #f () ())
  3946. (1366 method-info-n-ary? 1365 () ())
  3947. (1367 methods #f () ())
  3948. (1368 method-info-proc 1367 () ())
  3949. (1369 methods #f () ())
  3950. (1370 really-make-method-info 1369 () ())
  3951. (1371 methods #f () ())
  3952. (1372 methods #f () ())
  3953. (1373 record-type-priority 1372 () ())
  3954. (1374 methods #f () ())
  3955. (1375 methods #f () ())
  3956. (1376 methods #f () ())
  3957. (1377 methods #f () ())
  3958. (1378 methods #f () ())
  3959. (1379 methods #f () ())
  3960. (1380 methods #f () ())
  3961. (1381 methods #f () ())
  3962. (1382 methods #f () ())
  3963. (1383 methods #f () ())
  3964. (1384 methods #f () ())
  3965. (1385 methods #f () ())
  3966. (1386 methods #f () ())
  3967. (1387 #f 1386 () ())
  3968. (1388 methods #f () ())
  3969. (1389 methods #f () ())
  3970. (1390 methods #f () ())
  3971. (1391 methods #f () ())
  3972. (1392 methods #f () ())
  3973. (1393 methods #f () ())
  3974. (1394 #f 1393 () ())
  3975. (1395 methods #f () ())
  3976. (1396 methods #f () ())
  3977. (1397 methods #f () ())
  3978. (1398 methods #f () ())
  3979. (1399 #f 1398 () ())
  3980. (1400 methods #f () ())
  3981. (1401 simple-type-superiors 1400 () ())
  3982. (1402 methods #f () ())
  3983. (1403 simple-type-predicate 1402 () ())
  3984. (1404 methods #f () ())
  3985. (1405 simple-type-priority 1404 () ())
  3986. (1406 methods #f () ())
  3987. (1407 simple-type-id 1406 () ())
  3988. (1408 methods #f () ())
  3989. (1409 really-make-simple-type 1408 () ())
  3990. (1410 methods #f () ())
  3991. (1411 methods #f () ())
  3992. (1412 simple-type? 1411 () ())
  3993. (1413 methods #f () ())
  3994. (1414 %type-priority 1413 () ())
  3995. (1415 methods #f () ())
  3996. (1416 compute-priority 1415 () ())
  3997. (1417 methods #f () ())
  3998. (1418 make-simple-type 1417 () ())
  3999. (1419 methods #f () ())
  4000. (1420 %type-predicate 1419 () ())
  4001. (1421 methods #f () ())
  4002. (1422 %same-type? 1421 () ())
  4003. (1423 methods #f () ())
  4004. (1424 value? 1423 () ())
  4005. (1425 methods #f () ())
  4006. (1426 method-info? 1425 () ())
  4007. (1427 methods #f () ())
  4008. (1428 make-method-info 1427 () ())
  4009. (1429 methods #f () ())
  4010. (1430 empty-method-list 1429 () ())
  4011. (1431 methods #f () ())
  4012. (1432 more-specific-type? 1431 () ())
  4013. (1433 methods #f () ())
  4014. (1434 more-specific? 1433 () ())
  4015. (1435 loop 1434 () ())
  4016. (1436 methods #f () ())
  4017. (1437 every2 1436 () ())
  4018. (1438 methods #f () ())
  4019. (1439 same-applicability? 1438 () ())
  4020. (1440 methods #f () ())
  4021. (1441 insert-method 1440 () ())
  4022. (1442 recur 1441 () ())
  4023. (1443 methods #f () ())
  4024. (1444 method-table? 1443 () ())
  4025. (1445 methods #f () ())
  4026. (1446 last-action 1445 () ())
  4027. (1447 #f 1446 () ())
  4028. (1448 methods #f () ())
  4029. (1449 one-action 1448 () ())
  4030. (1450 #f 1449 () ())
  4031. (1451 #f 1450 () ())
  4032. (1452 methods #f () ())
  4033. (1453 check-for-next 1452 () ())
  4034. (1454 #f 1453 () ())
  4035. (1455 methods #f () ())
  4036. (1456 check-next 1455 () ())
  4037. (1457 #f 1456 () ())
  4038. (1458 methods #f () ())
  4039. (1459 argument-sequence-predicate 1458 () ())
  4040. (1460 recur 1459 () ())
  4041. (1461 methods #f () ())
  4042. (1462 methods->perform 1461 () ())
  4043. (1463 recur 1462 () ())
  4044. (1464 methods #f () ())
  4045. (1465 add-to-method-table! 1464 () ())
  4046. (1466 methods #f () ())
  4047. (1467 set-final-method! 1466 () ())
  4048. (1468 methods #f () ())
  4049. (1469 make-cell-for-generic 1468 () ())
  4050. (1470 #f 1469 () ())
  4051. (1471 #f 1469 () ())
  4052. (1472 #f 1469 () ())
  4053. (1473 methods #f () ())
  4054. (1474 make-method-table 1473 () ())
  4055. (1475 #f 1474 () ())
  4056. (1476 #f 1474 () ())
  4057. (1477 methods #f () ())
  4058. (1478 apply-generic 1477 () ())
  4059. (1479 methods #f () ())
  4060. (1480 compare-to 1479 () ())
  4061. (1481 #f 1480 () ())
  4062. (1482 methods #f () ())
  4063. (1483 proc->discloser 1482 () ())
  4064. (1484 #f 1483 () ())
  4065. (1485 #f 1484 () ())
  4066. (1486 methods #f () ())
  4067. (1487 number-i/o #f () ())
  4068. (1488 #f 1487 () ())
  4069. (1489 #f 1487 () ())
  4070. (1490 loop 1489 () ())
  4071. (1491 #f 1487 () ())
  4072. (1492 number-i/o #f () ())
  4073. (1493 set-exactness 1492 () ())
  4074. (1494 number-i/o #f () ())
  4075. (1495 &really-string->number 1494 () ())
  4076. (1496 number-i/o #f () ())
  4077. (1497 #f 1496 () ())
  4078. (1498 loop 1497 () ())
  4079. (1499 number-i/o #f () ())
  4080. (1500 &really-string->number 1499 () ())
  4081. (1501 number-i/o #f () ())
  4082. (1502 number-i/o #f () ())
  4083. (1503 number-i/o #f () ())
  4084. (1504 string->number 1503 () ())
  4085. (1505 loop 1504 () ())
  4086. (1506 radix-is 1505 () ())
  4087. (1507 radix-is 1505 () ())
  4088. (1508 loop 1505 () ())
  4089. (1509 number-i/o #f () ())
  4090. (1510 #f 1509 () ())
  4091. (1511 recur 1510 () ())
  4092. (1512 #f 1509 () ())
  4093. (1513 number-i/o #f () ())
  4094. (1514 &number->string 1513 () ())
  4095. (1515 number-i/o #f () ())
  4096. (1516 &number->string 1515 () ())
  4097. (1517 number-i/o #f () ())
  4098. (1518 number->string 1517 () ())
  4099. (1519 number-i/o #f () ())
  4100. (1520 number-i/o #f () ())
  4101. (1521 fluids #f () ())
  4102. (1522 fluids #f () ())
  4103. (1523 set-fluid-top-level-value! 1522 () ())
  4104. (1524 fluids #f () ())
  4105. (1525 fluid-top-level-value 1524 () ())
  4106. (1526 fluids #f () ())
  4107. (1527 make-fluid 1526 () ())
  4108. (1528 fluids #f () ())
  4109. (1529 fluids #f () ())
  4110. (1530 thread-dynamic-env 1529 () ())
  4111. (1531 fluids #f () ())
  4112. (1532 thread-dynamic-point 1531 () ())
  4113. (1533 fluids #f () ())
  4114. (1534 thread-proposal 1533 () ())
  4115. (1535 fluids #f () ())
  4116. (1536 make-thread 1535 () ())
  4117. (1537 fluids #f () ())
  4118. (1538 fluids #f () ())
  4119. (1539 get-dynamic-env 1538 () ())
  4120. (1540 fluids #f () ())
  4121. (1541 set-dynamic-env! 1540 () ())
  4122. (1542 fluids #f () ())
  4123. (1543 get-dynamic-point 1542 () ())
  4124. (1544 fluids #f () ())
  4125. (1545 set-dynamic-point! 1544 () ())
  4126. (1546 fluids #f () ())
  4127. (1547 empty-dynamic-env 1546 () ())
  4128. (1548 fluids #f () ())
  4129. (1549 initialize-dynamic-state! 1548 () ())
  4130. (1550 fluids #f () ())
  4131. (1551 with-dynamic-env 1550 () ())
  4132. (1552 #f 1551 () ())
  4133. (1553 fluids #f () ())
  4134. (1554 fluid 1553 () ())
  4135. (1555 fluids #f () ())
  4136. (1556 set-fluid! 1555 () ())
  4137. (1557 fluids #f () ())
  4138. (1558 let-fluid 1557 () ())
  4139. (1559 fluids #f () ())
  4140. (1560 let-fluids 1559 () ())
  4141. (1561 loop 1560 () ())
  4142. (1562 fluids #f () ())
  4143. (1563 fluid-cell-ref 1562 () ())
  4144. (1564 fluids #f () ())
  4145. (1565 fluid-cell-set! 1564 () ())
  4146. (1566 enumerated #f () ())
  4147. (1567 lookup-enumerand 1566 () ())
  4148. (1568 loop 1567 () ())
  4149. (1569 architecture #f () ())
  4150. (1570 architecture #f () ())
  4151. (1571 architecture #f () ())
  4152. (1572 architecture #f () ())
  4153. (1573 architecture #f () ())
  4154. (1574 architecture #f () ())
  4155. (1575 architecture #f () ())
  4156. (1576 architecture #f () ())
  4157. (1577 architecture #f () ())
  4158. (1578 architecture #f () ())
  4159. (1579 architecture #f () ())
  4160. (1580 architecture #f () ())
  4161. (1581 architecture #f () ())
  4162. (1582 architecture #f () ())
  4163. (1583 architecture #f () ())
  4164. (1584 architecture #f () ())
  4165. (1585 architecture #f () ())
  4166. (1586 architecture #f () ())
  4167. (1587 architecture #f () ())
  4168. (1588 architecture #f () ())
  4169. (1589 architecture #f () ())
  4170. (1590 architecture #f () ())
  4171. (1591 architecture #f () ())
  4172. (1592 architecture #f () ())
  4173. (1593 architecture #f () ())
  4174. (1594 architecture #f () ())
  4175. (1595 architecture #f () ())
  4176. (1596 architecture #f () ())
  4177. (1597 architecture #f () ())
  4178. (1598 architecture #f () ())
  4179. (1599 architecture #f () ())
  4180. (1600 architecture #f () ())
  4181. (1601 architecture #f () ())
  4182. (1602 architecture #f () ())
  4183. (1603 architecture #f () ())
  4184. (1604 architecture #f () ())
  4185. (1605 architecture #f () ())
  4186. (1606 architecture #f () ())
  4187. (1607 architecture #f () ())
  4188. (1608 architecture #f () ())
  4189. (1609 architecture #f () ())
  4190. (1610 architecture #f () ())
  4191. (1611 architecture #f () ())
  4192. (1612 architecture #f () ())
  4193. (1613 next-protocol 1612 () ())
  4194. (1614 architecture #f () ())
  4195. (1615 architecture #f () ())
  4196. (1616 architecture #f () ())
  4197. (1617 architecture #f () ())
  4198. (1618 architecture #f () ())
  4199. (1619 architecture #f () ())
  4200. (1620 architecture #f () ())
  4201. (1621 architecture #f () ())
  4202. (1622 architecture #f () ())
  4203. (1623 architecture #f () ())
  4204. (1624 architecture #f () ())
  4205. (1625 architecture #f () ())
  4206. (1626 architecture #f () ())
  4207. (1627 architecture #f () ())
  4208. (1628 architecture #f () ())
  4209. (1629 proposals #f () ())
  4210. (1630 proposals #f () ())
  4211. (1631 invalidate-current-proposal! 1630 () ())
  4212. (1632 proposals #f () ())
  4213. (1633 remove-current-proposal! 1632 () ())
  4214. (1634 proposals #f () ())
  4215. (1635 call-ensuring-atomicity! 1634 () ())
  4216. (1636 proposals #f () ())
  4217. (1637 call-ensuring-atomicity 1636 () ())
  4218. (1638 proposals #f () ())
  4219. (1639 call-atomically! 1638 () ())
  4220. (1640 #f 1639 () ())
  4221. (1641 #f 1639 () ())
  4222. (1642 lose 1641 () ())
  4223. (1643 proposals #f () ())
  4224. (1644 call-atomically 1643 () ())
  4225. (1645 loop 1644 () ())
  4226. (1646 #f 1645 () ())
  4227. (1647 queues #f () ())
  4228. (1648 queues #f () ())
  4229. (1649 queue-uid 1648 () ())
  4230. (1650 queues #f () ())
  4231. (1651 set-queue-head! 1650 () ())
  4232. (1652 queues #f () ())
  4233. (1653 real-queue-head 1652 () ())
  4234. (1654 queues #f () ())
  4235. (1655 set-queue-tail! 1654 () ())
  4236. (1656 queues #f () ())
  4237. (1657 queue-tail 1656 () ())
  4238. (1658 queues #f () ())
  4239. (1659 really-make-queue 1658 () ())
  4240. (1660 queues #f () ())
  4241. (1661 queues #f () ())
  4242. (1662 queue? 1661 () ())
  4243. (1663 queues #f () ())
  4244. (1664 next-uid 1663 () ())
  4245. (1665 #f 1664 () ())
  4246. (1666 queues #f () ())
  4247. (1667 make-queue 1666 () ())
  4248. (1668 queues #f () ())
  4249. (1669 queue-empty? 1668 () ())
  4250. (1670 queues #f () ())
  4251. (1671 enqueue! 1670 () ())
  4252. (1672 #f 1671 () ())
  4253. (1673 queues #f () ())
  4254. (1674 queue-head 1673 () ())
  4255. (1675 #f 1674 () ())
  4256. (1676 queues #f () ())
  4257. (1677 dequeue! 1676 () ())
  4258. (1678 #f 1677 () ())
  4259. (1679 queues #f () ())
  4260. (1680 maybe-dequeue! 1679 () ())
  4261. (1681 #f 1680 () ())
  4262. (1682 queues #f () ())
  4263. (1683 empty-queue! 1682 () ())
  4264. (1684 #f 1683 () ())
  4265. (1685 queues #f () ())
  4266. (1686 on-queue? 1685 () ())
  4267. (1687 #f 1686 () ())
  4268. (1688 queues #f () ())
  4269. (1689 delete-from-queue-if! 1688 () ())
  4270. (1690 #f 1689 () ())
  4271. (1691 loop 1690 () ())
  4272. (1692 queues #f () ())
  4273. (1693 delete-from-queue! 1692 () ())
  4274. (1694 #f 1693 () ())
  4275. (1695 queues #f () ())
  4276. (1696 queue->list 1695 () ())
  4277. (1697 #f 1696 () ())
  4278. (1698 #f 1697 () ())
  4279. (1699 queues #f () ())
  4280. (1700 list->queue 1699 () ())
  4281. (1701 loop 1700 () ())
  4282. (1702 queues #f () ())
  4283. (1703 queue-length 1702 () ())
  4284. (1704 #f 1703 () ())
  4285. (1705 simple-conditions #f () ())
  4286. (1706 simple-conditions #f () ())
  4287. (1707 simple-conditions #f () ())
  4288. (1708 simple-conditions #f () ())
  4289. (1709 simple-conditions #f () ())
  4290. (1710 simple-conditions #f () ())
  4291. (1711 simple-conditions #f () ())
  4292. (1712 simple-conditions #f () ())
  4293. (1713 simple-conditions #f () ())
  4294. (1714 decoding-error-start 1713 () ())
  4295. (1715 simple-conditions #f () ())
  4296. (1716 decoding-error-bytes 1715 () ())
  4297. (1717 simple-conditions #f () ())
  4298. (1718 decoding-error-message 1717 () ())
  4299. (1719 simple-conditions #f () ())
  4300. (1720 decoding-error-encoding-name 1719 () ())
  4301. (1721 simple-conditions #f () ())
  4302. (1722 make-decoding-error 1721 () ())
  4303. (1723 simple-conditions #f () ())
  4304. (1724 simple-conditions #f () ())
  4305. (1725 simple-conditions #f () ())
  4306. (1726 make-i/o-error 1725 () ())
  4307. (1727 simple-conditions #f () ())
  4308. (1728 i/o-error-arguments 1727 () ())
  4309. (1729 simple-conditions #f () ())
  4310. (1730 i/o-error-operation 1729 () ())
  4311. (1731 simple-conditions #f () ())
  4312. (1732 i/o-error-message 1731 () ())
  4313. (1733 simple-conditions #f () ())
  4314. (1734 i/o-error-status 1733 () ())
  4315. (1735 simple-conditions #f () ())
  4316. (1736 simple-conditions #f () ())
  4317. (1737 simple-conditions #f () ())
  4318. (1738 make-vm-exception 1737 () ())
  4319. (1739 simple-conditions #f () ())
  4320. (1740 vm-exception-arguments 1739 () ())
  4321. (1741 simple-conditions #f () ())
  4322. (1742 vm-exception-reason 1741 () ())
  4323. (1743 simple-conditions #f () ())
  4324. (1744 vm-exception-opcode 1743 () ())
  4325. (1745 simple-conditions #f () ())
  4326. (1746 simple-conditions #f () ())
  4327. (1747 simple-conditions #f () ())
  4328. (1748 simple-conditions #f () ())
  4329. (1749 simple-conditions #f () ())
  4330. (1750 simple-conditions #f () ())
  4331. (1751 simple-conditions #f () ())
  4332. (1752 simple-conditions #f () ())
  4333. (1753 simple-conditions #f () ())
  4334. (1754 condition-predicate 1753 () ())
  4335. (1755 #f 1754 () ())
  4336. (1756 simple-conditions #f () ())
  4337. (1757 condition-stuff 1756 () ())
  4338. (1758 #f 1757 () ())
  4339. (1759 #f 1757 () ())
  4340. (1760 simple-conditions #f () ())
  4341. (1761 condition-type 1760 () ())
  4342. (1762 #f 1761 () ())
  4343. (1763 #f 1761 () ())
  4344. (1764 simple-conditions #f () ())
  4345. (1765 define-condition-decoder 1764 () ())
  4346. (1766 simple-conditions #f () ())
  4347. (1767 decode-condition 1766 () ())
  4348. (1768 loop 1767 () ())
  4349. (1769 simple-conditions #f () ())
  4350. (1770 simple-conditions #f () ())
  4351. (1771 define-condition-type 1770 () ())
  4352. (1772 #f 1771 () ())
  4353. (1773 simple-conditions #f () ())
  4354. (1774 condition-supertypes 1773 () ())
  4355. (1775 simple-conditions #f () ())
  4356. (1776 session-data #f () ())
  4357. (1777 make-session-data-slot! 1776 () ())
  4358. (1778 session-data #f () ())
  4359. (1779 session-data-ref 1778 () ())
  4360. (1780 session-data #f () ())
  4361. (1781 session-data-set! 1780 () ())
  4362. (1782 session-data #f () ())
  4363. (1783 initialize-session-data! 1782 () ())
  4364. (1784 session-data #f () ())
  4365. (1785 interrupts #f () ())
  4366. (1786 #f 1785 () ())
  4367. (1787 interrupts #f () ())
  4368. (1788 interrupts #f () ())
  4369. (1789 interrupts #f () ())
  4370. (1790 interrupts #f () ())
  4371. (1791 enabled-interrupts 1790 () ())
  4372. (1792 interrupts #f () ())
  4373. (1793 post-gc-handler 1792 () ())
  4374. (1794 #f 1793 () ())
  4375. (1795 #f 1794 () ())
  4376. (1796 #f 1794 () ())
  4377. (1797 #f 1796 () ())
  4378. (1798 #f 1796 () ())
  4379. (1799 interrupts #f () ())
  4380. (1800 initialize-interrupts! 1799 () ())
  4381. (1801 #f 1800 () ())
  4382. (1802 loop##93 1801 () ())
  4383. (1803 #f 1802 () ())
  4384. (1804 #f 1801 () ())
  4385. (1805 #f 1804 () ())
  4386. (1806 interrupts #f () ())
  4387. (1807 set-interrupt-handler! 1806 () ())
  4388. (1808 interrupts #f () ())
  4389. (1809 get-interrupt-handler 1808 () ())
  4390. (1810 interrupts #f () ())
  4391. (1811 with-interrupts 1810 () ())
  4392. (1812 #f 1811 () ())
  4393. (1813 interrupts #f () ())
  4394. (1814 with-interrupts-inhibited 1813 () ())
  4395. (1815 interrupts #f () ())
  4396. (1816 with-interrupts-allowed 1815 () ())
  4397. (1817 interrupts #f () ())
  4398. (1818 disable-interrupts! 1817 () ())
  4399. (1819 interrupts #f () ())
  4400. (1820 enable-interrupts! 1819 () ())
  4401. (1821 interrupts #f () ())
  4402. (1822 call-after-gc! 1821 () ())
  4403. (1823 interrupts #f () ())
  4404. (1824 call-before-heap-overflow! 1823 () ())
  4405. (1825 interrupts #f () ())
  4406. (1826 interrupts #f () ())
  4407. (1827 wind #f () ())
  4408. (1828 point-depth 1827 () ())
  4409. (1829 wind #f () ())
  4410. (1830 point-in 1829 () ())
  4411. (1831 wind #f () ())
  4412. (1832 point-out 1831 () ())
  4413. (1833 wind #f () ())
  4414. (1834 point-dynamic-env 1833 () ())
  4415. (1835 wind #f () ())
  4416. (1836 point-parent 1835 () ())
  4417. (1837 wind #f () ())
  4418. (1838 make-point 1837 () ())
  4419. (1839 wind #f () ())
  4420. (1840 wind #f () ())
  4421. (1841 dynamic-wind 1840 () ())
  4422. (1842 wind #f () ())
  4423. (1843 travel-to-point! 1842 () ())
  4424. (1844 wind #f () ())
  4425. (1845 continuation->procedure 1844 () ())
  4426. (1846 #f 1845 () ())
  4427. (1847 #f 1846 () ())
  4428. (1848 wind #f () ())
  4429. (1849 call-with-current-continuation 1848 () ())
  4430. (1850 #f 1849 () ())
  4431. (1851 vm-exceptions #f () ())
  4432. (1852 extend-opcode! 1851 () ())
  4433. (1853 except 1852 () ())
  4434. (1854 #f 1852 () ())
  4435. (1855 vm-exceptions #f () ())
  4436. (1856 #f 1855 () ())
  4437. (1857 vm-exceptions #f () ())
  4438. (1858 #f 1857 () ())
  4439. (1859 vm-exceptions #f () ())
  4440. (1860 initialize-vm-exceptions! 1859 () ())
  4441. (1861 vm-exceptions #f () ())
  4442. (1862 vm-exceptions #f () ())
  4443. (1863 signal-vm-exception 1862 () ())
  4444. (1864 vm-exceptions #f () ())
  4445. (1865 vm-exceptions #f () ())
  4446. (1866 define-vm-exception-handler 1865 () ())
  4447. (1867 templates #f () ())
  4448. (1868 template-code 1867 () ())
  4449. (1869 templates #f () ())
  4450. (1870 template-byte-code 1869 () ())
  4451. (1871 templates #f () ())
  4452. (1872 template-info 1871 () ())
  4453. (1873 templates #f () ())
  4454. (1874 template-package-id 1873 () ())
  4455. (1875 templates #f () ())
  4456. (1876 set-template-code! 1875 () ())
  4457. (1877 templates #f () ())
  4458. (1878 set-template-byte-code! 1877 () ())
  4459. (1879 templates #f () ())
  4460. (1880 set-template-info! 1879 () ())
  4461. (1881 templates #f () ())
  4462. (1882 set-template-package-id! 1881 () ())
  4463. (1883 templates #f () ())
  4464. (1884 more-types #f () ())
  4465. (1885 &disclose 1884 () ())
  4466. (1886 more-types #f () ())
  4467. (1887 more-types #f () ())
  4468. (1888 &disclose 1887 () ())
  4469. (1889 more-types #f () ())
  4470. (1890 more-types #f () ())
  4471. (1891 more-types #f () ())
  4472. (1892 more-types #f () ())
  4473. (1893 more-types #f () ())
  4474. (1894 more-types #f () ())
  4475. (1895 more-types #f () ())
  4476. (1896 more-types #f () ())
  4477. (1897 more-types #f () ())
  4478. (1898 continuations #f () ())
  4479. (1899 &disclose 1898 () ())
  4480. (1900 continuations #f () ())
  4481. (1901 continuations #f () ())
  4482. (1902 continuations #f () ())
  4483. (1903 continuations #f () ())
  4484. (1904 continuations #f () ())
  4485. (1905 continuations #f () ())
  4486. (1906 continuations #f () ())
  4487. (1907 continuations #f () ())
  4488. (1908 make-ref 1907 () ())
  4489. (1909 #f 1908 () ())
  4490. (1910 continuations #f () ())
  4491. (1911 vm-exception-continuation? 1910 () ())
  4492. (1912 continuations #f () ())
  4493. (1913 call-with-values-continuation? 1912 () ())
  4494. (1914 continuations #f () ())
  4495. (1915 continuation-pc 1914 () ())
  4496. (1916 continuations #f () ())
  4497. (1917 continuation-code 1916 () ())
  4498. (1918 continuations #f () ())
  4499. (1919 continuation-arg 1918 () ())
  4500. (1920 continuations #f () ())
  4501. (1921 continuation-template 1920 () ())
  4502. (1922 loop 1921 () ())
  4503. (1923 loop 1921 () ())
  4504. (1924 continuations #f () ())
  4505. (1925 continuation-arg-count 1924 () ())
  4506. (1926 continuations #f () ())
  4507. (1927 continuation-preview 1926 () ())
  4508. (1928 exceptions #f () ())
  4509. (1929 raise 1928 () ())
  4510. (1930 #f 1929 () ())
  4511. (1931 loop 1930 () ())
  4512. (1932 #f 1931 () ())
  4513. (1933 exceptions #f () ())
  4514. (1934 with-exception-handler 1933 () ())
  4515. (1935 #f 1934 () ())
  4516. (1936 exceptions #f () ())
  4517. (1937 &disclose 1936 () ())
  4518. (1938 exceptions #f () ())
  4519. (1939 &disclose 1938 () ())
  4520. (1940 exceptions #f () ())
  4521. (1941 report-errors-as-warnings 1940 () ())
  4522. (1942 #f 1941 () ())
  4523. (1943 exceptions #f () ())
  4524. (1944 ignore-errors 1943 () ())
  4525. (1945 #f 1944 () ())
  4526. (1946 #f 1945 () ())
  4527. (1947 exceptions #f () ())
  4528. (1948 report-utter-lossage 1947 () ())
  4529. (1949 #f 1948 () ())
  4530. (1950 exceptions #f () ())
  4531. (1951 last-resort-exception-handler 1950 () ())
  4532. (1952 #f 1951 () ())
  4533. (1953 #f 1952 () ())
  4534. (1954 exceptions #f () ())
  4535. (1955 initialize-exceptions! 1954 () ())
  4536. (1956 #f 1955 () ())
  4537. (1957 exceptions #f () ())
  4538. (1958 exceptions #f () ())
  4539. (1959 with-handler 1958 () ())
  4540. (1960 exceptions #f () ())
  4541. (1961 really-signal-condition 1960 () ())
  4542. (1962 loop 1961 () ())
  4543. (1963 #f 1962 () ())
  4544. (1964 threads #f () ())
  4545. (1965 threads #f () ())
  4546. (1966 threads #f () ())
  4547. (1967 threads #f () ())
  4548. (1968 threads #f () ())
  4549. (1969 threads #f () ())
  4550. (1970 threads #f () ())
  4551. (1971 #f 1970 () ())
  4552. (1972 threads #f () ())
  4553. (1973 set-thread-dynamic-env! 1972 () ())
  4554. (1974 threads #f () ())
  4555. (1975 thread-dynamic-env 1974 () ())
  4556. (1976 threads #f () ())
  4557. (1977 set-thread-dynamic-point! 1976 () ())
  4558. (1978 threads #f () ())
  4559. (1979 thread-dynamic-point 1978 () ())
  4560. (1980 threads #f () ())
  4561. (1981 thread-proposal 1980 () ())
  4562. (1982 threads #f () ())
  4563. (1983 set-thread-time! 1982 () ())
  4564. (1984 threads #f () ())
  4565. (1985 thread-time 1984 () ())
  4566. (1986 threads #f () ())
  4567. (1987 set-thread-continuation! 1986 () ())
  4568. (1988 threads #f () ())
  4569. (1989 thread-continuation 1988 () ())
  4570. (1990 threads #f () ())
  4571. (1991 set-thread-arguments! 1990 () ())
  4572. (1992 threads #f () ())
  4573. (1993 thread-arguments 1992 () ())
  4574. (1994 threads #f () ())
  4575. (1995 set-thread-scheduler! 1994 () ())
  4576. (1996 threads #f () ())
  4577. (1997 thread-scheduler 1996 () ())
  4578. (1998 threads #f () ())
  4579. (1999 set-thread-current-task! 1998 () ())
  4580. (2000 threads #f () ())
  4581. (2001 thread-current-task 2000 () ())
  4582. (2002 threads #f () ())
  4583. (2003 set-thread-events! 2002 () ())
  4584. (2004 threads #f () ())
  4585. (2005 thread-events 2004 () ())
  4586. (2006 threads #f () ())
  4587. (2007 set-thread-data! 2006 () ())
  4588. (2008 threads #f () ())
  4589. (2009 thread-data 2008 () ())
  4590. (2010 threads #f () ())
  4591. (2011 set-thread-cell! 2010 () ())
  4592. (2012 threads #f () ())
  4593. (2013 thread-cell 2012 () ())
  4594. (2014 threads #f () ())
  4595. (2015 thread-uid 2014 () ())
  4596. (2016 threads #f () ())
  4597. (2017 thread-name 2016 () ())
  4598. (2018 threads #f () ())
  4599. (2019 really-make-thread 2018 () ())
  4600. (2020 threads #f () ())
  4601. (2021 threads #f () ())
  4602. (2022 thread? 2021 () ())
  4603. (2023 threads #f () ())
  4604. (2024 compose-continuation 2023 () ())
  4605. (2025 #f 2024 () ())
  4606. (2026 #f 2025 () ())
  4607. (2027 #f 2026 () ())
  4608. (2028 #f 2027 () ())
  4609. (2029 #f 2028 () ())
  4610. (2030 threads #f () ())
  4611. (2031 thunk->continuation 2030 () ())
  4612. (2032 threads #f () ())
  4613. (2033 max2 2032 () ())
  4614. (2034 threads #f () ())
  4615. (2035 interrupt-timer-time 2034 () ())
  4616. (2036 threads #f () ())
  4617. (2037 debit-down! 2036 () ())
  4618. (2038 loop 2037 () ())
  4619. (2039 threads #f () ())
  4620. (2040 run-thread 2039 () ())
  4621. (2041 #f 2040 () ())
  4622. (2042 threads #f () ())
  4623. (2043 switch-to-thread 2042 () ())
  4624. (2044 #f 2043 () ())
  4625. (2045 threads #f () ())
  4626. (2046 suspend-to 2045 () ())
  4627. (2047 threads #f () ())
  4628. (2048 suspend 2047 () ())
  4629. (2049 threads #f () ())
  4630. (2050 thread-top-level 2049 () ())
  4631. (2051 thread-start 2050 () ())
  4632. (2052 #f 2051 () ())
  4633. (2053 threads #f () ())
  4634. (2054 make-thread 2053 () ())
  4635. (2055 threads #f () ())
  4636. (2056 all-threads 2055 () ())
  4637. (2057 threads #f () ())
  4638. (2058 thread-uid->thread 2057 () ())
  4639. (2059 loop 2058 () ())
  4640. (2060 threads #f () ())
  4641. (2061 add-event! 2060 () ())
  4642. (2062 threads #f () ())
  4643. (2063 next-event! 2062 () ())
  4644. (2064 threads #f () ())
  4645. (2065 maybe-dequeue-thread! 2064 () ())
  4646. (2066 loop 2065 () ())
  4647. (2067 threads #f () ())
  4648. (2068 thread-queue-empty? 2067 () ())
  4649. (2069 #f 2068 () ())
  4650. (2070 loop 2069 () ())
  4651. (2071 threads #f () ())
  4652. (2072 event-pending? 2071 () ())
  4653. (2073 threads #f () ())
  4654. (2074 min 2073 () ())
  4655. (2075 threads #f () ())
  4656. (2076 schedule-interrupt! 2075 () ())
  4657. (2077 threads #f () ())
  4658. (2078 run-next-thread 2077 () ())
  4659. (2079 threads #f () ())
  4660. (2080 debit-thread-times-and-run! 2079 () ())
  4661. (2081 loop 2080 () ())
  4662. (2082 threads #f () ())
  4663. (2083 find-and-run-next-thread 2082 () ())
  4664. (2084 loop 2083 () ())
  4665. (2085 threads #f () ())
  4666. (2086 run 2085 () ())
  4667. (2087 threads #f () ())
  4668. (2088 handle-timer-interrupt 2087 () ())
  4669. (2089 threads #f () ())
  4670. (2090 exit 2089 () ())
  4671. (2091 threads #f () ())
  4672. (2092 wait 2091 () ())
  4673. (2093 threads #f () ())
  4674. (2094 waiting? 2093 () ())
  4675. (2095 threads #f () ())
  4676. (2096 relinquish-timeslice 2095 () ())
  4677. (2097 threads #f () ())
  4678. (2098 block 2097 () ())
  4679. (2099 threads #f () ())
  4680. (2100 maybe-commit-and-block 2099 () ())
  4681. (2101 threads #f () ())
  4682. (2102 maybe-commit-and-block-on-queue 2101 () ())
  4683. (2103 threads #f () ())
  4684. (2104 running? 2103 () ())
  4685. (2105 loop 2104 () ())
  4686. (2106 threads #f () ())
  4687. (2107 interrupt-thread 2106 () ())
  4688. (2108 threads #f () ())
  4689. (2109 propogate-upcall 2108 () ())
  4690. (2110 #f 2109 () ())
  4691. (2111 threads #f () ())
  4692. (2112 upcall 2111 () ())
  4693. (2113 threads #f () ())
  4694. (2114 kill-thread! 2113 () ())
  4695. (2115 #f 2114 () ())
  4696. (2116 threads #f () ())
  4697. (2117 clear-thread-cell! 2116 () ())
  4698. (2118 threads #f () ())
  4699. (2119 terminate-current-thread 2118 () ())
  4700. (2120 threads #f () ())
  4701. (2121 terminate-thread! 2120 () ())
  4702. (2122 #f 2121 () ())
  4703. (2123 threads #f () ())
  4704. (2124 get-next-event! 2123 () ())
  4705. (2125 threads #f () ())
  4706. (2126 schedule-wakeup 2125 () ())
  4707. (2127 threads #f () ())
  4708. (2128 really-schedule-event 2127 () ())
  4709. (2129 threads #f () ())
  4710. (2130 root-scheduler 2129 () ())
  4711. (2131 threads #f () ())
  4712. (2132 maybe-suspend 2131 () ())
  4713. (2133 loop 2132 () ())
  4714. (2134 threads #f () ())
  4715. (2135 schedule-event 2134 () ())
  4716. (2136 threads #f () ())
  4717. (2137 show-running 2136 () ())
  4718. (2138 loop##165 2137 () ())
  4719. (2139 threads #f () ())
  4720. (2140 spawn-on-scheduler 2139 () ())
  4721. (2141 threads #f () ())
  4722. (2142 spawn 2141 () ())
  4723. (2143 threads #f () ())
  4724. (2144 spawn-on-root 2143 () ())
  4725. (2145 threads #f () ())
  4726. (2146 make-ready 2145 () ())
  4727. (2147 threads #f () ())
  4728. (2148 make-threads-ready 2147 () ())
  4729. (2149 loop 2148 () ())
  4730. (2150 threads #f () ())
  4731. (2151 maybe-commit-and-make-ready 2150 () ())
  4732. (2152 threads #f () ())
  4733. (2153 maybe-commit-no-interrupts 2152 () ())
  4734. (2154 threads #f () ())
  4735. (2155 cancel-timer-interrupt! 2154 () ())
  4736. (2156 threads #f () ())
  4737. (2157 real-time 2156 () ())
  4738. (2158 threads #f () ())
  4739. (2159 start-multitasking 2158 () ())
  4740. (2160 #f 2159 () ())
  4741. (2161 #f 2160 () ())
  4742. (2162 #f 2160 () ())
  4743. (2163 #f 2162 () ())
  4744. (2164 #f 2163 () ())
  4745. (2165 #f 2163 () ())
  4746. (2166 threads #f () ())
  4747. (2167 with-threads 2166 () ())
  4748. (2168 #f 2167 () ())
  4749. (2169 #f 2168 () ())
  4750. (2170 #f 2168 () ())
  4751. (2171 #f 2168 () ())
  4752. (2172 threads #f () ())
  4753. (2173 insert 2172 () ())
  4754. (2174 threads #f () ())
  4755. (2175 register-dozer-unsafe! 2174 () ())
  4756. (2176 #f 2175 () ())
  4757. (2177 threads #f () ())
  4758. (2178 coerce-to-nonnegative-integer 2177 () ())
  4759. (2179 threads #f () ())
  4760. (2180 sleep 2179 () ())
  4761. (2181 #f 2180 () ())
  4762. (2182 #f 2180 () ())
  4763. (2183 threads #f () ())
  4764. (2184 register-dozer! 2183 () ())
  4765. (2185 threads #f () ())
  4766. (2186 wake-some-threads 2185 () ())
  4767. (2187 loop 2186 () ())
  4768. (2188 threads #f () ())
  4769. (2189 threads #f () ())
  4770. (2190 threads #f () ())
  4771. (2191 enum-case #f () ())
  4772. (2192 text-codecs #f () ())
  4773. (2193 text-codecs #f () ())
  4774. (2194 text-codecs #f () ())
  4775. (2195 text-codecs #f () ())
  4776. (2196 text-codecs #f () ())
  4777. (2197 text-codecs #f () ())
  4778. (2198 text-codecs #f () ())
  4779. (2199 text-codecs #f () ())
  4780. (2200 text-codecs #f () ())
  4781. (2201 text-codecs #f () ())
  4782. (2202 text-codecs #f () ())
  4783. (2203 text-codecs #f () ())
  4784. (2204 text-codecs #f () ())
  4785. (2205 text-codecs #f () ())
  4786. (2206 text-codecs #f () ())
  4787. (2207 text-codecs #f () ())
  4788. (2208 text-codecs #f () ())
  4789. (2209 text-codecs #f () ())
  4790. (2210 text-codecs #f () ())
  4791. (2211 text-codecs #f () ())
  4792. (2212 text-codecs #f () ())
  4793. (2213 text-codecs #f () ())
  4794. (2214 text-codecs #f () ())
  4795. (2215 #f 2214 () ())
  4796. (2216 #f 2214 () ())
  4797. (2217 text-codecs #f () ())
  4798. (2218 text-codecs #f () ())
  4799. (2219 #f 2218 () ())
  4800. (2220 text-codecs #f () ())
  4801. (2221 text-codec-names 2220 () ())
  4802. (2222 text-codecs #f () ())
  4803. (2223 text-codec-builtin-code 2222 () ())
  4804. (2224 text-codecs #f () ())
  4805. (2225 text-codec-encode-char-proc 2224 () ())
  4806. (2226 text-codecs #f () ())
  4807. (2227 text-codec-decode-char-proc 2226 () ())
  4808. (2228 text-codecs #f () ())
  4809. (2229 really-make-text-codec 2228 () ())
  4810. (2230 text-codecs #f () ())
  4811. (2231 text-codecs #f () ())
  4812. (2232 text-codec? 2231 () ())
  4813. (2233 text-codecs #f () ())
  4814. (2234 make-builtin-text-codec 2233 () ())
  4815. (2235 #f 2234 () ())
  4816. (2236 #f 2234 () ())
  4817. (2237 text-codecs #f () ())
  4818. (2238 make-text-codec 2237 () ())
  4819. (2239 text-codecs #f () ())
  4820. (2240 spec->text-codec 2239 () ())
  4821. (2241 text-codecs #f () ())
  4822. (2242 text-codec->spec 2241 () ())
  4823. (2243 text-codecs #f () ())
  4824. (2244 register-text-codec! 2243 () ())
  4825. (2245 text-codecs #f () ())
  4826. (2246 find-text-codec 2245 () ())
  4827. (2247 loop 2246 () ())
  4828. (2248 text-codecs #f () ())
  4829. (2249 i/o #f () ())
  4830. (2250 i/o #f () ())
  4831. (2251 i/o #f () ())
  4832. (2252 i/o #f () ())
  4833. (2253 i/o #f () ())
  4834. (2254 i/o #f () ())
  4835. (2255 i/o #f () ())
  4836. (2256 i/o #f () ())
  4837. (2257 #f 2256 () ())
  4838. (2258 #f 2256 () ())
  4839. (2259 #f 2256 () ())
  4840. (2260 #f 2256 () ())
  4841. (2261 #f 2256 () ())
  4842. (2262 #f 2256 () ())
  4843. (2263 i/o #f () ())
  4844. (2264 i/o #f () ())
  4845. (2265 i/o #f () ())
  4846. (2266 i/o #f () ())
  4847. (2267 i/o #f () ())
  4848. (2268 i/o #f () ())
  4849. (2269 i/o #f () ())
  4850. (2270 i/o #f () ())
  4851. (2271 i/o #f () ())
  4852. (2272 &disclose 2271 () ())
  4853. (2273 i/o #f () ())
  4854. (2274 &disclose 2273 () ())
  4855. (2275 i/o #f () ())
  4856. (2276 port-handler-discloser 2275 () ())
  4857. (2277 i/o #f () ())
  4858. (2278 port-handler-close 2277 () ())
  4859. (2279 i/o #f () ())
  4860. (2280 port-handler-byte 2279 () ())
  4861. (2281 i/o #f () ())
  4862. (2282 port-handler-char 2281 () ())
  4863. (2283 i/o #f () ())
  4864. (2284 port-handler-block 2283 () ())
  4865. (2285 i/o #f () ())
  4866. (2286 port-handler-ready? 2285 () ())
  4867. (2287 i/o #f () ())
  4868. (2288 port-handler-force 2287 () ())
  4869. (2289 i/o #f () ())
  4870. (2290 make-port-handler 2289 () ())
  4871. (2291 i/o #f () ())
  4872. (2292 i/o #f () ())
  4873. (2293 port-handler? 2292 () ())
  4874. (2294 i/o #f () ())
  4875. (2295 disclose-port 2294 () ())
  4876. (2296 i/o #f () ())
  4877. (2297 one-arg-proc->handler 2296 () ())
  4878. (2298 #f 2297 () ())
  4879. (2299 i/o #f () ())
  4880. (2300 two-arg-proc->handler 2299 () ())
  4881. (2301 #f 2300 () ())
  4882. (2302 i/o #f () ())
  4883. (2303 initialize-i/o-handlers! 2302 () ())
  4884. (2304 #f 2303 () ())
  4885. (2305 #f 2303 () ())
  4886. (2306 #f 2303 () ())
  4887. (2307 #f 2303 () ())
  4888. (2308 #f 2303 () ())
  4889. (2309 #f 2303 () ())
  4890. (2310 i/o #f () ())
  4891. (2311 open-input-port? 2310 () ())
  4892. (2312 i/o #f () ())
  4893. (2313 current-input-port 2312 () ())
  4894. (2314 i/o #f () ())
  4895. (2315 input-port-option 2314 () ())
  4896. (2316 i/o #f () ())
  4897. (2317 char-ready? 2316 () ())
  4898. (2318 i/o #f () ())
  4899. (2319 real-char-ready? 2318 () ())
  4900. (2320 i/o #f () ())
  4901. (2321 real-byte-ready? 2320 () ())
  4902. (2322 i/o #f () ())
  4903. (2323 okay-limits? 2322 () ())
  4904. (2324 i/o #f () ())
  4905. (2325 read-block 2324 () ())
  4906. (2326 i/o #f () ())
  4907. (2327 open-output-port? 2326 () ())
  4908. (2328 i/o #f () ())
  4909. (2329 write-block 2328 () ())
  4910. (2330 i/o #f () ())
  4911. (2331 write-string 2330 () ())
  4912. (2332 loop##189 2331 () ())
  4913. (2333 i/o #f () ())
  4914. (2334 output-port-ready? 2333 () ())
  4915. (2335 i/o #f () ())
  4916. (2336 force-output 2335 () ())
  4917. (2337 i/o #f () ())
  4918. (2338 force-output-if-open 2337 () ())
  4919. (2339 i/o #f () ())
  4920. (2340 close-input-port 2339 () ())
  4921. (2341 i/o #f () ())
  4922. (2342 close-output-port 2341 () ())
  4923. (2343 i/o #f () ())
  4924. (2344 port-text-codec 2343 () ())
  4925. (2345 i/o #f () ())
  4926. (2346 set-port-text-codec! 2345 () ())
  4927. (2347 i/o #f () ())
  4928. (2348 open-port? 2347 () ())
  4929. (2349 i/o #f () ())
  4930. (2350 make-input-port-closed! 2349 () ())
  4931. (2351 i/o #f () ())
  4932. (2352 make-output-port-closed! 2351 () ())
  4933. (2353 i/o #f () ())
  4934. (2354 make-unbuffered-output-port 2353 () ())
  4935. (2355 i/o #f () ())
  4936. (2356 make-one-byte-handler 2355 () ())
  4937. (2357 #f 2356 () ())
  4938. (2358 loop 2357 () ())
  4939. (2359 i/o #f () ())
  4940. (2360 make-one-char-handler 2359 () ())
  4941. (2361 #f 2360 () ())
  4942. (2362 #f 2361 () ())
  4943. (2363 #f 2362 () ())
  4944. (2364 #f 2363 () ())
  4945. (2365 #f 2363 () ())
  4946. (2366 #f 2362 () ())
  4947. (2367 #f 2361 () ())
  4948. (2368 #f 2367 () ())
  4949. (2369 #f 2368 () ())
  4950. (2370 #f 2368 () ())
  4951. (2371 #f 2367 () ())
  4952. (2372 loop 2361 () ())
  4953. (2373 i/o #f () ())
  4954. (2374 make-write-block-handler 2373 () ())
  4955. (2375 #f 2374 () ())
  4956. (2376 loop 2375 () ())
  4957. (2377 i/o #f () ())
  4958. (2378 make-unbuffered-output-port-handler 2377 () ())
  4959. (2379 #f 2378 () ())
  4960. (2380 i/o #f () ())
  4961. (2381 make-null-output-port 2380 () ())
  4962. (2382 i/o #f () ())
  4963. (2383 okay-buffer? 2382 () ())
  4964. (2384 i/o #f () ())
  4965. (2385 make-buffered-input-port 2384 () ())
  4966. (2386 i/o #f () ())
  4967. (2387 make-buffered-output-port 2386 () ())
  4968. (2388 i/o #f () ())
  4969. (2389 make-one-byte-input 2388 () ())
  4970. (2390 #f 2389 () ())
  4971. (2391 #f 2390 () ())
  4972. (2392 #f 2390 () ())
  4973. (2393 lose 2392 () ())
  4974. (2394 i/o #f () ())
  4975. (2395 make-one-char-input 2394 () ())
  4976. (2396 #f 2395 () ())
  4977. (2397 #f 2396 () ())
  4978. (2398 #f 2396 () ())
  4979. (2399 lose 2398 () ())
  4980. (2400 loop 2399 () ())
  4981. (2401 consume&deliver 2400 () ())
  4982. (2402 #f 2400 () ())
  4983. (2403 #f 2400 () ())
  4984. (2404 i/o #f () ())
  4985. (2405 get-available-bytes! 2404 () ())
  4986. (2406 i/o #f () ())
  4987. (2407 make-read-block 2406 () ())
  4988. (2408 #f 2407 () ())
  4989. (2409 loop 2408 () ())
  4990. (2410 #f 2409 () ())
  4991. (2411 #f 2409 () ())
  4992. (2412 lose 2411 () ())
  4993. (2413 i/o #f () ())
  4994. (2414 byte-ready? 2413 () ())
  4995. (2415 i/o #f () ())
  4996. (2416 make-byte-ready? 2415 () ())
  4997. (2417 #f 2416 () ())
  4998. (2418 #f 2417 () ())
  4999. (2419 #f 2417 () ())
  5000. (2420 lose 2419 () ())
  5001. (2421 #f 2420 () ())
  5002. (2422 #f 2420 () ())
  5003. (2423 i/o #f () ())
  5004. (2424 make-buffered-input-port-handler 2423 () ())
  5005. (2425 #f 2424 () ())
  5006. (2426 #f 2424 () ())
  5007. (2427 #f 2426 () ())
  5008. (2428 #f 2426 () ())
  5009. (2429 lose 2428 () ())
  5010. (2430 i/o #f () ())
  5011. (2431 note-buffer-reuse! 2430 () ())
  5012. (2432 i/o #f () ())
  5013. (2433 make-closer 2432 () ())
  5014. (2434 #f 2433 () ())
  5015. (2435 #f 2434 () ())
  5016. (2436 #f 2434 () ())
  5017. (2437 lose 2436 () ())
  5018. (2438 i/o #f () ())
  5019. (2439 make-one-byte-output 2438 () ())
  5020. (2440 #f 2439 () ())
  5021. (2441 #f 2440 () ())
  5022. (2442 #f 2440 () ())
  5023. (2443 lose 2442 () ())
  5024. (2444 i/o #f () ())
  5025. (2445 make-one-char-output 2444 () ())
  5026. (2446 #f 2445 () ())
  5027. (2447 #f 2446 () ())
  5028. (2448 #f 2446 () ())
  5029. (2449 lose 2448 () ())
  5030. (2450 #f 2449 () ())
  5031. (2451 #f 2450 () ())
  5032. (2452 #f 2451 () ())
  5033. (2453 #f 2451 () ())
  5034. (2454 #f 2450 () ())
  5035. (2455 #f 2450 () ())
  5036. (2456 #f 2450 () ())
  5037. (2457 #f 2449 () ())
  5038. (2458 #f 2449 () ())
  5039. (2459 _ 2458 () ())
  5040. (2460 i/o #f () ())
  5041. (2461 copy-bytes-out! 2460 () ())
  5042. (2462 i/o #f () ())
  5043. (2463 make-write-block 2462 () ())
  5044. (2464 #f 2463 () ())
  5045. (2465 loop 2464 () ())
  5046. (2466 #f 2465 () ())
  5047. (2467 #f 2465 () ())
  5048. (2468 lose 2467 () ())
  5049. (2469 i/o #f () ())
  5050. (2470 make-forcer 2469 () ())
  5051. (2471 #f 2470 () ())
  5052. (2472 #f 2471 () ())
  5053. (2473 #f 2471 () ())
  5054. (2474 lose 2473 () ())
  5055. (2475 i/o #f () ())
  5056. (2476 make-buffered-output-port-handler 2475 () ())
  5057. (2477 #f 2476 () ())
  5058. (2478 i/o #f () ())
  5059. (2479 default-buffer-size 2478 () ())
  5060. (2480 i/o #f () ())
  5061. (2481 periodically-force-output! 2480 () ())
  5062. (2482 i/o #f () ())
  5063. (2483 make-forcing-thunk 2482 () ())
  5064. (2484 #f 2483 () ())
  5065. (2485 #f 2484 () ())
  5066. (2486 #f 2484 () ())
  5067. (2487 #f 2486 () ())
  5068. (2488 i/o #f () ())
  5069. (2489 output-port-forcers 2488 () ())
  5070. (2490 loop 2489 () ())
  5071. (2491 i/o #f () ())
  5072. (2492 periodically-flushed-ports 2491 () ())
  5073. (2493 loop 2492 () ())
  5074. (2494 i/o #f () ())
  5075. (2495 current-output-port 2494 () ())
  5076. (2496 i/o #f () ())
  5077. (2497 current-error-port 2496 () ())
  5078. (2498 i/o #f () ())
  5079. (2499 current-noise-port 2498 () ())
  5080. (2500 i/o #f () ())
  5081. (2501 with-current-ports 2500 () ())
  5082. (2502 i/o #f () ())
  5083. (2503 initialize-i/o 2502 () ())
  5084. (2504 i/o #f () ())
  5085. (2505 call-with-current-input-port 2504 () ())
  5086. (2506 i/o #f () ())
  5087. (2507 call-with-current-output-port 2506 () ())
  5088. (2508 i/o #f () ())
  5089. (2509 call-with-current-noise-port 2508 () ())
  5090. (2510 i/o #f () ())
  5091. (2511 silently 2510 () ())
  5092. (2512 i/o #f () ())
  5093. (2513 output-port-option 2512 () ())
  5094. (2514 i/o #f () ())
  5095. (2515 newline 2514 () ())
  5096. (2516 i/o #f () ())
  5097. (2517 i/o #f () ())
  5098. (2518 writing #f () ())
  5099. (2519 display 2518 () ())
  5100. (2520 recur 2519 () ())
  5101. (2521 writing #f () ())
  5102. (2522 display-type-name 2521 () ())
  5103. (2523 loop##215 2522 () ())
  5104. (2524 writing #f () ())
  5105. (2525 write-other 2524 () ())
  5106. (2526 #f 2525 () ())
  5107. (2527 writing #f () ())
  5108. (2528 write-vector 2527 () ())
  5109. (2529 loop 2528 () ())
  5110. (2530 writing #f () ())
  5111. (2531 quotation? 2530 () ())
  5112. (2532 writing #f () ())
  5113. (2533 write-list 2532 () ())
  5114. (2534 loop 2533 () ())
  5115. (2535 writing #f () ())
  5116. (2536 write-string-literal 2535 () ())
  5117. (2537 loop##219 2536 () ())
  5118. (2538 writing #f () ())
  5119. (2539 character-name 2538 () ())
  5120. (2540 writing #f () ())
  5121. (2541 writing #f () ())
  5122. (2542 writing #f () ())
  5123. (2543 writing #f () ())
  5124. (2544 writing #f () ())
  5125. (2545 writing #f () ())
  5126. (2546 writing #f () ())
  5127. (2547 writing #f () ())
  5128. (2548 writing #f () ())
  5129. (2549 writing #f () ())
  5130. (2550 writing #f () ())
  5131. (2551 writing #f () ())
  5132. (2552 write-char-literal 2551 () ())
  5133. (2553 writing #f () ())
  5134. (2554 write-number 2553 () ())
  5135. (2555 writing #f () ())
  5136. (2556 write-boolean 2555 () ())
  5137. (2557 writing #f () ())
  5138. (2558 recurring-write 2557 () ())
  5139. (2559 writing #f () ())
  5140. (2560 write 2559 () ())
  5141. (2561 recur 2560 () ())
  5142. (2562 reading #f () ())
  5143. (2563 reading #f () ())
  5144. (2564 number-sharp-macro 2563 () ())
  5145. (2565 #f 2563 () ())
  5146. (2566 reading #f () ())
  5147. (2567 #f 2566 () ())
  5148. (2568 reading #f () ())
  5149. (2569 #f 2568 () ())
  5150. (2570 reading #f () ())
  5151. (2571 reading #f () ())
  5152. (2572 #f 2571 () ())
  5153. (2573 reading #f () ())
  5154. (2574 #f 2573 () ())
  5155. (2575 reading #f () ())
  5156. (2576 #f 2575 () ())
  5157. (2577 reading #f () ())
  5158. (2578 #f 2577 () ())
  5159. (2579 reading #f () ())
  5160. (2580 #f 2579 () ())
  5161. (2581 loop 2580 () ())
  5162. (2582 reading #f () ())
  5163. (2583 reading #f () ())
  5164. (2584 reading #f () ())
  5165. (2585 reading #f () ())
  5166. (2586 reading #f () ())
  5167. (2587 reading #f () ())
  5168. (2588 reading #f () ())
  5169. (2589 reading #f () ())
  5170. (2590 reading #f () ())
  5171. (2591 reading #f () ())
  5172. (2592 reading #f () ())
  5173. (2593 #f 2592 () ())
  5174. (2594 reading #f () ())
  5175. (2595 #f 2594 () ())
  5176. (2596 reading #f () ())
  5177. (2597 #f 2596 () ())
  5178. (2598 reading #f () ())
  5179. (2599 #f 2598 () ())
  5180. (2600 reading #f () ())
  5181. (2601 reading #f () ())
  5182. (2602 #f 2601 () ())
  5183. (2603 reading #f () ())
  5184. (2604 sub-read-whitespace 2603 () ())
  5185. (2605 #f 2603 () ())
  5186. (2606 reading #f () ())
  5187. (2607 reading #f () ())
  5188. (2608 #f 2607 () ())
  5189. (2609 reading #f () ())
  5190. (2610 reading #f () ())
  5191. (2611 reading #f () ())
  5192. (2612 reading #f () ())
  5193. (2613 reader-token? 2612 () ())
  5194. (2614 reading #f () ())
  5195. (2615 reading-error 2614 () ())
  5196. (2616 reading #f () ())
  5197. (2617 parse-token 2616 () ())
  5198. (2618 reading #f () ())
  5199. (2619 binary-search 2618 () ())
  5200. (2620 loop 2619 () ())
  5201. (2621 reading #f () ())
  5202. (2622 char-unicode-whitespace? 2621 () ())
  5203. (2623 reading #f () ())
  5204. (2624 delimiter? 2623 () ())
  5205. (2625 reading #f () ())
  5206. (2626 char-hex-digit? 2625 () ())
  5207. (2627 reading #f () ())
  5208. (2628 decode-hex-digits 2627 () ())
  5209. (2629 loop 2628 () ())
  5210. (2630 reading #f () ())
  5211. (2631 char-semicolon? 2630 () ())
  5212. (2632 reading #f () ())
  5213. (2633 sub-read-token 2632 () ())
  5214. (2634 loop 2633 () ())
  5215. (2635 reading #f () ())
  5216. (2636 sub-read-constituent 2635 () ())
  5217. (2637 reading #f () ())
  5218. (2638 sub-read 2637 () ())
  5219. (2639 reading #f () ())
  5220. (2640 read 2639 () ())
  5221. (2641 loop 2640 () ())
  5222. (2642 reading #f () ())
  5223. (2643 sub-read-carefully 2642 () ())
  5224. (2644 reading #f () ())
  5225. (2645 make-reader-token 2644 () ())
  5226. (2646 reading #f () ())
  5227. (2647 set-standard-syntax! 2646 () ())
  5228. (2648 reading #f () ())
  5229. (2649 set-standard-read-macro! 2648 () ())
  5230. (2650 reading #f () ())
  5231. (2651 sub-read-list 2650 () ())
  5232. (2652 recur 2651 () ())
  5233. (2653 reading #f () ())
  5234. (2654 decode-escape 2653 () ())
  5235. (2655 loop 2654 () ())
  5236. (2656 reading #f () ())
  5237. (2657 gobble-line 2656 () ())
  5238. (2658 loop 2657 () ())
  5239. (2659 reading #f () ())
  5240. (2660 define-sharp-macro 2659 () ())
  5241. (2661 reading #f () ())
  5242. (2662 char-scalar-value-literal-delimiter? 2661 () ())
  5243. (2663 reading #f () ())
  5244. (2664 proper-list? 2663 () ())
  5245. (2665 reading #f () ())
  5246. (2666 reading #f () ())
  5247. (2667 reading #f () ())
  5248. (2668 reading #f () ())
  5249. (2669 reading #f () ())
  5250. (2670 condvars #f () ())
  5251. (2671 #f 2670 () ())
  5252. (2672 condvars #f () ())
  5253. (2673 condvar-queue 2672 () ())
  5254. (2674 condvars #f () ())
  5255. (2675 set-condvar-has-value?! 2674 () ())
  5256. (2676 condvars #f () ())
  5257. (2677 condvar-has-value? 2676 () ())
  5258. (2678 condvars #f () ())
  5259. (2679 set-condvar-value! 2678 () ())
  5260. (2680 condvars #f () ())
  5261. (2681 condvar-value 2680 () ())
  5262. (2682 condvars #f () ())
  5263. (2683 condvar-id 2682 () ())
  5264. (2684 condvars #f () ())
  5265. (2685 really-make-condvar 2684 () ())
  5266. (2686 condvars #f () ())
  5267. (2687 condvars #f () ())
  5268. (2688 condvar? 2687 () ())
  5269. (2689 condvars #f () ())
  5270. (2690 make-condvar 2689 () ())
  5271. (2691 condvars #f () ())
  5272. (2692 maybe-commit-and-wait-for-condvar 2691 () ())
  5273. (2693 condvars #f () ())
  5274. (2694 maybe-commit-and-set-condvar! 2693 () ())
  5275. (2695 condvars #f () ())
  5276. (2696 condvar-has-waiters? 2695 () ())
  5277. (2697 channel-i/o #f () ())
  5278. (2698 abort-unwanted-reads! 2697 () ())
  5279. (2699 loop 2698 () ())
  5280. (2700 channel-i/o #f () ())
  5281. (2701 fetch-channel-condvar! 2700 () ())
  5282. (2702 loop 2701 () ())
  5283. (2703 channel-i/o #f () ())
  5284. (2704 channel-i/o #f () ())
  5285. (2705 add-channel-condvar! 2704 () ())
  5286. (2706 channel-i/o #f () ())
  5287. (2707 set-channel-condvars! 2706 () ())
  5288. (2708 channel-i/o #f () ())
  5289. (2709 channel-condvars 2708 () ())
  5290. (2710 channel-i/o #f () ())
  5291. (2711 channel-i/o #f () ())
  5292. (2712 waiting-for-i/o? 2711 () ())
  5293. (2713 channel-i/o #f () ())
  5294. (2714 i/o-completion-handler 2713 () ())
  5295. (2715 channel-i/o #f () ())
  5296. (2716 initialize-channel-i/o! 2715 () ())
  5297. (2717 channel-i/o #f () ())
  5298. (2718 input-channel? 2717 () ())
  5299. (2719 channel-i/o #f () ())
  5300. (2720 channel-maybe-commit-and-close 2719 () ())
  5301. (2721 #f 2720 () ())
  5302. (2722 channel-i/o #f () ())
  5303. (2723 channel-write 2722 () ())
  5304. (2724 #f 2723 () ())
  5305. (2725 #f 2723 () ())
  5306. (2726 lose 2725 () ())
  5307. (2727 channel-i/o #f () ())
  5308. (2728 note-channel-result! 2727 () ())
  5309. (2729 #f 2728 () ())
  5310. (2730 #f 2728 () ())
  5311. (2731 lose 2730 () ())
  5312. (2732 channel-i/o #f () ())
  5313. (2733 channel-maybe-commit-and-write 2732 () ())
  5314. (2734 #f 2733 () ())
  5315. (2735 #f 2734 () ())
  5316. (2736 #f 2734 () ())
  5317. (2737 lose 2736 () ())
  5318. (2738 channel-i/o #f () ())
  5319. (2739 channel-maybe-commit-and-read 2738 () ())
  5320. (2740 #f 2739 () ())
  5321. (2741 encodings #f () ())
  5322. (2742 encodings #f () ())
  5323. (2743 char-encoding-length/encoding 2742 () ())
  5324. (2744 #f 2743 () ())
  5325. (2745 #f 2743 () ())
  5326. (2746 encodings #f () ())
  5327. (2747 string-encoding-length/encoding 2746 () ())
  5328. (2748 loop##261 2747 () ())
  5329. (2749 encodings #f () ())
  5330. (2750 encode-char/encoding 2749 () ())
  5331. (2751 #f 2750 () ())
  5332. (2752 #f 2750 () ())
  5333. (2753 encodings #f () ())
  5334. (2754 encode-string/encoding 2753 () ())
  5335. (2755 loop##261 2754 () ())
  5336. (2756 #f 2755 () ())
  5337. (2757 #f 2755 () ())
  5338. (2758 encodings #f () ())
  5339. (2759 string->bytes-n/encoding 2758 () ())
  5340. (2760 encodings #f () ())
  5341. (2761 string->bytes/encoding 2760 () ())
  5342. (2762 encodings #f () ())
  5343. (2763 decode-char/encoding 2762 () ())
  5344. (2764 #f 2763 () ())
  5345. (2765 #f 2763 () ())
  5346. (2766 encodings #f () ())
  5347. (2767 bytes-string-size/encoding 2766 () ())
  5348. (2768 loop##261 2767 () ())
  5349. (2769 #f 2768 () ())
  5350. (2770 #f 2768 () ())
  5351. (2771 encodings #f () ())
  5352. (2772 decode-string/encoding 2771 () ())
  5353. (2773 loop##261 2772 () ())
  5354. (2774 #f 2773 () ())
  5355. (2775 #f 2773 () ())
  5356. (2776 encodings #f () ())
  5357. (2777 bytes->string-n/encoding 2776 () ())
  5358. (2778 loop##261 2777 () ())
  5359. (2779 #f 2778 () ())
  5360. (2780 loop##261 2779 () ())
  5361. (2781 #f 2778 () ())
  5362. (2782 encodings #f () ())
  5363. (2783 bytes->string/encoding 2782 () ())
  5364. (2784 encodings #f () ())
  5365. (2785 char-encoding-length/text-codec 2784 () ())
  5366. (2786 #f 2785 () ())
  5367. (2787 #f 2785 () ())
  5368. (2788 #f 2787 () ())
  5369. (2789 encodings #f () ())
  5370. (2790 string-encoding-length/text-codec 2789 () ())
  5371. (2791 loop##262 2790 () ())
  5372. (2792 encodings #f () ())
  5373. (2793 encode-char/text-codec 2792 () ())
  5374. (2794 #f 2793 () ())
  5375. (2795 #f 2793 () ())
  5376. (2796 #f 2795 () ())
  5377. (2797 encodings #f () ())
  5378. (2798 encode-string/text-codec 2797 () ())
  5379. (2799 loop##262 2798 () ())
  5380. (2800 #f 2799 () ())
  5381. (2801 #f 2799 () ())
  5382. (2802 #f 2801 () ())
  5383. (2803 encodings #f () ())
  5384. (2804 string->bytes-n/text-codec 2803 () ())
  5385. (2805 encodings #f () ())
  5386. (2806 string->bytes/text-codec 2805 () ())
  5387. (2807 encodings #f () ())
  5388. (2808 decode-char/text-codec 2807 () ())
  5389. (2809 #f 2808 () ())
  5390. (2810 #f 2808 () ())
  5391. (2811 #f 2810 () ())
  5392. (2812 encodings #f () ())
  5393. (2813 bytes-string-size/text-codec 2812 () ())
  5394. (2814 loop##262 2813 () ())
  5395. (2815 #f 2814 () ())
  5396. (2816 #f 2814 () ())
  5397. (2817 #f 2816 () ())
  5398. (2818 encodings #f () ())
  5399. (2819 decode-string/text-codec 2818 () ())
  5400. (2820 loop##262 2819 () ())
  5401. (2821 #f 2820 () ())
  5402. (2822 #f 2820 () ())
  5403. (2823 #f 2822 () ())
  5404. (2824 encodings #f () ())
  5405. (2825 bytes->string-n/text-codec 2824 () ())
  5406. (2826 loop##262 2825 () ())
  5407. (2827 #f 2826 () ())
  5408. (2828 loop##262 2827 () ())
  5409. (2829 #f 2826 () ())
  5410. (2830 #f 2829 () ())
  5411. (2831 encodings #f () ())
  5412. (2832 bytes->string/text-codec 2831 () ())
  5413. (2833 encodings #f () ())
  5414. (2834 char-encoding-length 2833 () ())
  5415. (2835 encodings #f () ())
  5416. (2836 string-encoding-length 2835 () ())
  5417. (2837 encodings #f () ())
  5418. (2838 encode-char 2837 () ())
  5419. (2839 encodings #f () ())
  5420. (2840 encode-string 2839 () ())
  5421. (2841 encodings #f () ())
  5422. (2842 string->bytes-n 2841 () ())
  5423. (2843 encodings #f () ())
  5424. (2844 string->bytes 2843 () ())
  5425. (2845 encodings #f () ())
  5426. (2846 decode-char 2845 () ())
  5427. (2847 encodings #f () ())
  5428. (2848 bytes-string-size 2847 () ())
  5429. (2849 encodings #f () ())
  5430. (2850 decode-string 2849 () ())
  5431. (2851 encodings #f () ())
  5432. (2852 bytes->string 2851 () ())
  5433. (2853 encodings #f () ())
  5434. (2854 bytes->string-n 2853 () ())
  5435. (2855 encodings #f () ())
  5436. (2856 decoding-error 2855 () ())
  5437. (2857 encodings #f () ())
  5438. (2858 char-encoding-length/utf-8 2857 () ())
  5439. (2859 encodings #f () ())
  5440. (2860 string-encoding-length/utf-8 2859 () ())
  5441. (2861 encodings #f () ())
  5442. (2862 encode-char/utf-8 2861 () ())
  5443. (2863 encodings #f () ())
  5444. (2864 encode-string/utf-8 2863 () ())
  5445. (2865 encodings #f () ())
  5446. (2866 string->utf-8-n 2865 () ())
  5447. (2867 encodings #f () ())
  5448. (2868 string->utf-8 2867 () ())
  5449. (2869 encodings #f () ())
  5450. (2870 decode-char/utf-8 2869 () ())
  5451. (2871 encodings #f () ())
  5452. (2872 bytes-string-size/utf-8 2871 () ())
  5453. (2873 encodings #f () ())
  5454. (2874 decode-string/utf-8 2873 () ())
  5455. (2875 encodings #f () ())
  5456. (2876 utf-8->string 2875 () ())
  5457. (2877 encodings #f () ())
  5458. (2878 utf-8->string-n 2877 () ())
  5459. (2879 encodings #f () ())
  5460. (2880 encodings #f () ())
  5461. (2881 encodings #f () ())
  5462. (2882 encodings #f () ())
  5463. (2883 os-strings #f () ())
  5464. (2884 os-strings #f () ())
  5465. (2885 byte-vector-copy 2884 () ())
  5466. (2886 os-strings #f () ())
  5467. (2887 x->os-string 2886 () ())
  5468. (2888 os-strings #f () ())
  5469. (2889 os-string->string 2888 () ())
  5470. (2890 #f 2889 () ())
  5471. (2891 #f 2889 () ())
  5472. (2892 os-strings #f () ())
  5473. (2893 os-string->byte-vector 2892 () ())
  5474. (2894 os-strings #f () ())
  5475. (2895 byte-vector->os-string 2894 () ())
  5476. (2896 os-strings #f () ())
  5477. (2897 string->os-string 2896 () ())
  5478. (2898 os-strings #f () ())
  5479. (2899 call-with-os-string-text-codec 2898 () ())
  5480. (2900 #f 2899 () ())
  5481. (2901 os-strings #f () ())
  5482. (2902 current-os-string-text-codec 2901 () ())
  5483. (2903 os-strings #f () ())
  5484. (2904 #f 2903 () ())
  5485. (2905 os-strings #f () ())
  5486. (2906 initialize-os-string-text-codec! 2905 () ())
  5487. (2907 os-strings #f () ())
  5488. (2908 os-strings #f () ())
  5489. (2909 #f 2908 () ())
  5490. (2910 os-strings #f () ())
  5491. (2911 os-string? 2910 () ())
  5492. (2912 os-strings #f () ())
  5493. (2913 os-string-text-codec 2912 () ())
  5494. (2914 os-strings #f () ())
  5495. (2915 set-os-string-string! 2914 () ())
  5496. (2916 os-strings #f () ())
  5497. (2917 os-string-string 2916 () ())
  5498. (2918 os-strings #f () ())
  5499. (2919 set-os-string-byte-vector! 2918 () ())
  5500. (2920 os-strings #f () ())
  5501. (2921 os-string-byte-vector 2920 () ())
  5502. (2922 os-strings #f () ())
  5503. (2923 make-os-string 2922 () ())
  5504. (2924 os-strings #f () ())
  5505. (2925 channel-ports #f () ())
  5506. (2926 channel-crlf? 2925 () ())
  5507. (2927 channel-ports #f () ())
  5508. (2928 channel-buffer-size 2927 () ())
  5509. (2929 channel-ports #f () ())
  5510. (2930 #f 2929 () ())
  5511. (2931 #f 2929 () ())
  5512. (2932 #f 2929 () ())
  5513. (2933 #f 2929 () ())
  5514. (2934 channel-ports #f () ())
  5515. (2935 force-channel-output-ports! 2934 () ())
  5516. (2936 #f 2935 () ())
  5517. (2937 channel-ports #f () ())
  5518. (2938 with-output-to-file 2937 () ())
  5519. (2939 #f 2938 () ())
  5520. (2940 channel-ports #f () ())
  5521. (2941 with-input-from-file 2940 () ())
  5522. (2942 #f 2941 () ())
  5523. (2943 channel-ports #f () ())
  5524. (2944 call-with-output-file 2943 () ())
  5525. (2945 #f 2944 () ())
  5526. (2946 channel-ports #f () ())
  5527. (2947 call-with-input-file 2946 () ())
  5528. (2948 #f 2947 () ())
  5529. (2949 channel-ports #f () ())
  5530. (2950 open-output-file 2949 () ())
  5531. (2951 channel-ports #f () ())
  5532. (2952 really-open-output-file 2951 () ())
  5533. (2953 channel-ports #f () ())
  5534. (2954 open-input-file 2953 () ())
  5535. (2955 channel-ports #f () ())
  5536. (2956 really-open-input-file 2955 () ())
  5537. (2957 channel-ports #f () ())
  5538. (2958 maybe-open-file 2957 () ())
  5539. (2959 #f 2958 () ())
  5540. (2960 #f 2958 () ())
  5541. (2961 channel-ports #f () ())
  5542. (2962 real-output-channel->port 2961 () ())
  5543. (2963 channel-ports #f () ())
  5544. (2964 output-channel+closer->port 2963 () ())
  5545. (2965 channel-ports #f () ())
  5546. (2966 output-channel->port 2965 () ())
  5547. (2967 channel-ports #f () ())
  5548. (2968 #f 2967 () ())
  5549. (2969 channel-ports #f () ())
  5550. (2970 send-some 2969 () ())
  5551. (2971 channel-ports #f () ())
  5552. (2972 empty-buffer! 2971 () ())
  5553. (2973 channel-ports #f () ())
  5554. (2974 real-input-channel->port 2973 () ())
  5555. (2975 channel-ports #f () ())
  5556. (2976 input-channel+closer->port 2975 () ())
  5557. (2977 channel-ports #f () ())
  5558. (2978 input-channel->port 2977 () ())
  5559. (2979 channel-ports #f () ())
  5560. (2980 #f 2979 () ())
  5561. (2981 channel-ports #f () ())
  5562. (2982 channel-port-ready? 2981 () ())
  5563. (2983 channel-ports #f () ())
  5564. (2984 fill-buffer! 2983 () ())
  5565. (2985 channel-ports #f () ())
  5566. (2986 port-channel-closer 2985 () ())
  5567. (2987 channel-ports #f () ())
  5568. (2988 port->channel 2987 () ())
  5569. (2989 channel-ports #f () ())
  5570. (2990 make-channel-cell 2989 () ())
  5571. (2991 channel-ports #f () ())
  5572. (2992 channel-cell-ref 2991 () ())
  5573. (2993 channel-ports #f () ())
  5574. (2994 channel-cell-closer 2993 () ())
  5575. (2995 channel-ports #f () ())
  5576. (2996 channel-cell-condvar 2995 () ())
  5577. (2997 channel-ports #f () ())
  5578. (2998 set-channel-cell-in-use?! 2997 () ())
  5579. (2999 channel-ports #f () ())
  5580. (3000 channel-cell-in-use? 2999 () ())
  5581. (3001 channel-ports #f () ())
  5582. (3002 set-channel-cell-sent! 3001 () ())
  5583. (3003 channel-ports #f () ())
  5584. (3004 channel-cell-sent 3003 () ())
  5585. (3005 channel-ports #f () ())
  5586. (3006 channel-cell? 3005 () ())
  5587. (3007 channel-ports #f () ())
  5588. (3008 really-make-channel-cell 3007 () ())
  5589. (3009 channel-ports #f () ())
  5590. (3010 scheme-level-2 #f () ())
  5591. (3011 features #f () ())
  5592. (3012 tables #f () ())
  5593. (3013 tables #f () ())
  5594. (3014 tables #f () ())
  5595. (3015 tables #f () ())
  5596. (3016 make-table 3015 () ())
  5597. (3017 tables #f () ())
  5598. (3018 tables #f () ())
  5599. (3019 set-table-size! 3018 () ())
  5600. (3020 tables #f () ())
  5601. (3021 table-size 3020 () ())
  5602. (3022 tables #f () ())
  5603. (3023 set-table-data! 3022 () ())
  5604. (3024 tables #f () ())
  5605. (3025 table-data 3024 () ())
  5606. (3026 tables #f () ())
  5607. (3027 set-table-ref-procedure! 3026 () ())
  5608. (3028 tables #f () ())
  5609. (3029 table-ref-procedure 3028 () ())
  5610. (3030 tables #f () ())
  5611. (3031 set-table-set!-procedure! 3030 () ())
  5612. (3032 tables #f () ())
  5613. (3033 table-set!-procedure 3032 () ())
  5614. (3034 tables #f () ())
  5615. (3035 really-make-table 3034 () ())
  5616. (3036 tables #f () ())
  5617. (3037 tables #f () ())
  5618. (3038 table? 3037 () ())
  5619. (3039 tables #f () ())
  5620. (3040 table-ref 3039 () ())
  5621. (3041 tables #f () ())
  5622. (3042 table-set! 3041 () ())
  5623. (3043 tables #f () ())
  5624. (3044 next-table-size 3043 () ())
  5625. (3045 tables #f () ())
  5626. (3046 set-entry-value! 3045 () ())
  5627. (3047 tables #f () ())
  5628. (3048 delete-entry! 3047 () ())
  5629. (3049 loop 3048 () ())
  5630. (3050 tables #f () ())
  5631. (3051 new-entry 3050 () ())
  5632. (3052 tables #f () ())
  5633. (3053 make-linear-table-set! 3052 () ())
  5634. (3054 #f 3053 () ())
  5635. (3055 tables #f () ())
  5636. (3056 table-expand-table! 3055 () ())
  5637. (3057 tables #f () ())
  5638. (3058 table-enter-alist! 3057 () ())
  5639. (3059 loop##315 3058 () ())
  5640. (3060 tables #f () ())
  5641. (3061 entry-value 3060 () ())
  5642. (3062 tables #f () ())
  5643. (3063 make-hash-table-ref 3062 () ())
  5644. (3064 #f 3063 () ())
  5645. (3065 tables #f () ())
  5646. (3066 expand-hash-table! 3065 () ())
  5647. (3067 loop##317 3066 () ())
  5648. (3068 tables #f () ())
  5649. (3069 make-hash-table-set! 3068 () ())
  5650. (3070 #f 3069 () ())
  5651. (3071 tables #f () ())
  5652. (3072 make->hash-table 3071 () ())
  5653. (3073 #f 3072 () ())
  5654. (3074 tables #f () ())
  5655. (3075 make-linear-table-ref 3074 () ())
  5656. (3076 #f 3075 () ())
  5657. (3077 tables #f () ())
  5658. (3078 assoc->table-maker 3077 () ())
  5659. (3079 #f 3078 () ())
  5660. (3080 tables #f () ())
  5661. (3081 make-assoc 3080 () ())
  5662. (3082 #f 3081 () ())
  5663. (3083 loop 3082 () ())
  5664. (3084 tables #f () ())
  5665. (3085 make-table-maker 3084 () ())
  5666. (3086 tables #f () ())
  5667. (3087 entry-key 3086 () ())
  5668. (3088 tables #f () ())
  5669. (3089 alist-walk 3088 () ())
  5670. (3090 loop##319 3089 () ())
  5671. (3091 tables #f () ())
  5672. (3092 really-table-walk 3091 () ())
  5673. (3093 loop##322 3092 () ())
  5674. (3094 tables #f () ())
  5675. (3095 table-walk 3094 () ())
  5676. (3096 #f 3095 () ())
  5677. (3097 tables #f () ())
  5678. (3098 make-table-immutable! 3097 () ())
  5679. (3099 tables #f () ())
  5680. (3100 table->entry-list 3099 () ())
  5681. (3101 #f 3100 () ())
  5682. (3102 tables #f () ())
  5683. (3103 default-hash-function 3102 () ())
  5684. (3104 tables #f () ())
  5685. (3105 default-table-assoc 3104 () ())
  5686. (3106 tables #f () ())
  5687. (3107 symbol-hash 3106 () ())
  5688. (3108 tables #f () ())
  5689. (3109 tables #f () ())
  5690. (3110 weak #f () ())
  5691. (3111 walk-population 3110 () ())
  5692. (3112 #f 3111 () ())
  5693. (3113 weak #f () ())
  5694. (3114 population->list 3113 () ())
  5695. (3115 weak #f () ())
  5696. (3116 population-reduce 3115 () ())
  5697. (3117 loop##324 3116 () ())
  5698. (3118 weak #f () ())
  5699. (3119 weak-memq 3118 () ())
  5700. (3120 weak #f () ())
  5701. (3121 add-to-population! 3120 () ())
  5702. (3122 weak #f () ())
  5703. (3123 make-population 3122 () ())
  5704. (3124 meta-types #f () ())
  5705. (3125 meta-types #f () ())
  5706. (3126 meta-types #f () ())
  5707. (3127 meta-types #f () ())
  5708. (3128 meta-types #f () ())
  5709. (3129 meta-types #f () ())
  5710. (3130 meta-types #f () ())
  5711. (3131 meta-types #f () ())
  5712. (3132 meta-types #f () ())
  5713. (3133 meta-types #f () ())
  5714. (3134 meta-types #f () ())
  5715. (3135 meta-types #f () ())
  5716. (3136 meta-types #f () ())
  5717. (3137 meta-types #f () ())
  5718. (3138 meta-types #f () ())
  5719. (3139 meta-types #f () ())
  5720. (3140 meta-types #f () ())
  5721. (3141 meta-types #f () ())
  5722. (3142 meta-types #f () ())
  5723. (3143 meta-types #f () ())
  5724. (3144 meta-types #f () ())
  5725. (3145 meta-types #f () ())
  5726. (3146 meta-types #f () ())
  5727. (3147 meta-types #f () ())
  5728. (3148 meta-types #f () ())
  5729. (3149 meta-types #f () ())
  5730. (3150 meta-types #f () ())
  5731. (3151 meta-types #f () ())
  5732. (3152 meta-types #f () ())
  5733. (3153 meta-types #f () ())
  5734. (3154 loop 3153 () ())
  5735. (3155 meta-types #f () ())
  5736. (3156 meta-types #f () ())
  5737. (3157 meta-types #f () ())
  5738. (3158 meta-types #f () ())
  5739. (3159 meta-types #f () ())
  5740. (3160 meta-types #f () ())
  5741. (3161 meta-types #f () ())
  5742. (3162 meta-types #f () ())
  5743. (3163 meta-types #f () ())
  5744. (3164 meta-types #f () ())
  5745. (3165 meta-types #f () ())
  5746. (3166 meta-types #f () ())
  5747. (3167 meta-types #f () ())
  5748. (3168 meta-types #f () ())
  5749. (3169 meta-types #f () ())
  5750. (3170 meta-types #f () ())
  5751. (3171 meta-types #f () ())
  5752. (3172 meta-types #f () ())
  5753. (3173 meta-types #f () ())
  5754. (3174 meta-types #f () ())
  5755. (3175 #f 3174 () ())
  5756. (3176 meta-types #f () ())
  5757. (3177 type-mask 3176 () ())
  5758. (3178 meta-types #f () ())
  5759. (3179 type-more 3178 () ())
  5760. (3180 meta-types #f () ())
  5761. (3181 type-info 3180 () ())
  5762. (3182 meta-types #f () ())
  5763. (3183 really-make-type 3182 () ())
  5764. (3184 meta-types #f () ())
  5765. (3185 meta-types #f () ())
  5766. (3186 meta-type? 3185 () ())
  5767. (3187 meta-types #f () ())
  5768. (3188 make-type 3187 () ())
  5769. (3189 meta-types #f () ())
  5770. (3190 set-type-name! 3189 () ())
  5771. (3191 meta-types #f () ())
  5772. (3192 make-other-type 3191 () ())
  5773. (3193 meta-types #f () ())
  5774. (3194 name->type 3193 () ())
  5775. (3195 meta-types #f () ())
  5776. (3196 new-type-bit 3195 () ())
  5777. (3197 meta-types #f () ())
  5778. (3198 mask->type 3197 () ())
  5779. (3199 meta-types #f () ())
  5780. (3200 bottom-type? 3199 () ())
  5781. (3201 meta-types #f () ())
  5782. (3202 new-atomic-type 3201 () ())
  5783. (3203 meta-types #f () ())
  5784. (3204 named-atomic-type 3203 () ())
  5785. (3205 meta-types #f () ())
  5786. (3206 empty-rail-type? 3205 () ())
  5787. (3207 meta-types #f () ())
  5788. (3208 rest-type? 3207 () ())
  5789. (3209 meta-types #f () ())
  5790. (3210 same-type? 3209 () ())
  5791. (3211 meta-types #f () ())
  5792. (3212 head-type 3211 () ())
  5793. (3213 meta-types #f () ())
  5794. (3214 optional-type? 3213 () ())
  5795. (3215 meta-types #f () ())
  5796. (3216 rail-type 3215 () ())
  5797. (3217 meta-types #f () ())
  5798. (3218 make-optional-type 3217 () ())
  5799. (3219 meta-types #f () ())
  5800. (3220 make-rest-type 3219 () ())
  5801. (3221 meta-types #f () ())
  5802. (3222 head-type-really 3221 () ())
  5803. (3223 meta-types #f () ())
  5804. (3224 tail-type 3223 () ())
  5805. (3225 meta-types #f () ())
  5806. (3226 value-type? 3225 () ())
  5807. (3227 meta-types #f () ())
  5808. (3228 other-type-info 3227 () ())
  5809. (3229 meta-types #f () ())
  5810. (3230 restrictive? 3229 () ())
  5811. (3231 meta-types #f () ())
  5812. (3232 make-procedure-type 3231 () ())
  5813. (3233 meta-types #f () ())
  5814. (3234 procedure-type-domain 3233 () ())
  5815. (3235 meta-types #f () ())
  5816. (3236 procedure-type-codomain 3235 () ())
  5817. (3237 meta-types #f () ())
  5818. (3238 meet-procedure 3237 () ())
  5819. (3239 meta-types #f () ())
  5820. (3240 meet-rail 3239 () ())
  5821. (3241 meta-types #f () ())
  5822. (3242 meet-type 3241 () ())
  5823. (3243 meta-types #f () ())
  5824. (3244 subtype? 3243 () ())
  5825. (3245 meta-types #f () ())
  5826. (3246 meet-procedure? 3245 () ())
  5827. (3247 meta-types #f () ())
  5828. (3248 meet? 3247 () ())
  5829. (3249 meta-types #f () ())
  5830. (3250 procedure-type? 3249 () ())
  5831. (3251 meta-types #f () ())
  5832. (3252 join-procedure 3251 () ())
  5833. (3253 meta-types #f () ())
  5834. (3254 join-rail 3253 () ())
  5835. (3255 meta-types #f () ())
  5836. (3256 join-type 3255 () ())
  5837. (3257 meta-types #f () ())
  5838. (3258 procedure-type 3257 () ())
  5839. (3259 meta-types #f () ())
  5840. (3260 variable-type 3259 () ())
  5841. (3261 meta-types #f () ())
  5842. (3262 sexp->values-type 3261 () ())
  5843. (3263 meta-types #f () ())
  5844. (3264 sexp->type 3263 () ())
  5845. (3265 #f 3264 () ())
  5846. (3266 #f 3264 () ())
  5847. (3267 meta-types #f () ())
  5848. (3268 variable-type? 3267 () ())
  5849. (3269 meta-types #f () ())
  5850. (3270 disjoin-rest 3269 () ())
  5851. (3271 meta-types #f () ())
  5852. (3272 disjoin-type 3271 () ())
  5853. (3273 loop##348 3272 () ())
  5854. (3274 meta-types #f () ())
  5855. (3275 atomic-type->sexp 3274 () ())
  5856. (3276 meta-types #f () ())
  5857. (3277 rail-type->sexp 3276 () ())
  5858. (3278 recur 3277 () ())
  5859. (3279 meta-types #f () ())
  5860. (3280 type->sexp 3279 () ())
  5861. (3281 #f 3280 () ())
  5862. (3282 meta-types #f () ())
  5863. (3283 make-some-values-type 3282 () ())
  5864. (3284 meta-types #f () ())
  5865. (3285 fixed-arity-procedure-type? 3284 () ())
  5866. (3286 loop 3285 () ())
  5867. (3287 meta-types #f () ())
  5868. (3288 procedure-type-arity 3287 () ())
  5869. (3289 loop##351 3288 () ())
  5870. (3290 meta-types #f () ())
  5871. (3291 procedure-type-argument-types 3290 () ())
  5872. (3292 recur 3291 () ())
  5873. (3293 meta-types #f () ())
  5874. (3294 compatible-types? 3293 () ())
  5875. (3295 meta-types #f () ())
  5876. (3296 meta-types #f () ())
  5877. (3297 meta-types #f () ())
  5878. (3298 interfaces #f () ())
  5879. (3299 #f 3298 () ())
  5880. (3300 interfaces #f () ())
  5881. (3301 ref-method 3300 () ())
  5882. (3302 interfaces #f () ())
  5883. (3303 walk-method 3302 () ())
  5884. (3304 interfaces #f () ())
  5885. (3305 interface-clients 3304 () ())
  5886. (3306 interfaces #f () ())
  5887. (3307 set-interface-name! 3306 () ())
  5888. (3308 interfaces #f () ())
  5889. (3309 interface-name 3308 () ())
  5890. (3310 interfaces #f () ())
  5891. (3311 really-make-interface 3310 () ())
  5892. (3312 interfaces #f () ())
  5893. (3313 interfaces #f () ())
  5894. (3314 interface? 3313 () ())
  5895. (3315 interfaces #f () ())
  5896. (3316 make-interface 3315 () ())
  5897. (3317 interfaces #f () ())
  5898. (3318 interface-ref 3317 () ())
  5899. (3319 interfaces #f () ())
  5900. (3320 interface-member? 3319 () ())
  5901. (3321 #f 3320 () ())
  5902. (3322 #f 3320 () ())
  5903. (3323 interfaces #f () ())
  5904. (3324 for-each-declaration 3323 () ())
  5905. (3325 interfaces #f () ())
  5906. (3326 note-reference-to-interface! 3325 () ())
  5907. (3327 interfaces #f () ())
  5908. (3328 note-interface-name! 3327 () ())
  5909. (3329 interfaces #f () ())
  5910. (3330 make-simple-interface-table 3329 () ())
  5911. (3331 #f 3330 () ())
  5912. (3332 #f 3331 () ())
  5913. (3333 interfaces #f () ())
  5914. (3334 make-simple-interface 3333 () ())
  5915. (3335 #f 3334 () ())
  5916. (3336 #f 3334 () ())
  5917. (3337 #f 3336 () ())
  5918. (3338 interfaces #f () ())
  5919. (3339 make-compound-interface 3338 () ())
  5920. (3340 #f 3339 () ())
  5921. (3341 loop 3340 () ())
  5922. (3342 #f 3341 () ())
  5923. (3343 #f 3341 () ())
  5924. (3344 #f 3339 () ())
  5925. (3345 #f 3344 () ())
  5926. (3346 #f 3339 () ())
  5927. (3347 interfaces #f () ())
  5928. (3348 proper-list? 3347 () ())
  5929. (3349 interfaces #f () ())
  5930. (3350 okay-command? 3349 () ())
  5931. (3351 #f 3350 () ())
  5932. (3352 interfaces #f () ())
  5933. (3353 symbol-append 3352 () ())
  5934. (3354 interfaces #f () ())
  5935. (3355 process-prefix 3354 () ())
  5936. (3356 #f 3355 () ())
  5937. (3357 #f 3355 () ())
  5938. (3358 interfaces #f () ())
  5939. (3359 prefix-match? 3358 () ())
  5940. (3360 loop 3359 () ())
  5941. (3361 interfaces #f () ())
  5942. (3362 remove-prefix 3361 () ())
  5943. (3363 interfaces #f () ())
  5944. (3364 interface-lookup 3363 () ())
  5945. (3365 interfaces #f () ())
  5946. (3366 process-expose 3365 () ())
  5947. (3367 loop 3366 () ())
  5948. (3368 interfaces #f () ())
  5949. (3369 process-hide 3368 () ())
  5950. (3370 interfaces #f () ())
  5951. (3371 process-alias 3370 () ())
  5952. (3372 #f 3371 () ())
  5953. (3373 interfaces #f () ())
  5954. (3374 process-rename 3373 () ())
  5955. (3375 #f 3374 () ())
  5956. (3376 interfaces #f () ())
  5957. (3377 process-commands 3376 () ())
  5958. (3378 loop 3377 () ())
  5959. (3379 #f 3378 () ())
  5960. (3380 #f 3378 () ())
  5961. (3381 #f 3378 () ())
  5962. (3382 interfaces #f () ())
  5963. (3383 make-lookup 3382 () ())
  5964. (3384 #f 3383 () ())
  5965. (3385 interfaces #f () ())
  5966. (3386 walk-default 3385 () ())
  5967. (3387 #f 3386 () ())
  5968. (3388 interfaces #f () ())
  5969. (3389 walk-alist 3388 () ())
  5970. (3390 #f 3389 () ())
  5971. (3391 #f 3390 () ())
  5972. (3392 #f 3390 () ())
  5973. (3393 interfaces #f () ())
  5974. (3394 make-interface-walker 3393 () ())
  5975. (3395 #f 3394 () ())
  5976. (3396 interfaces #f () ())
  5977. (3397 make-modified-interface-maker 3396 () ())
  5978. (3398 #f 3397 () ())
  5979. (3399 #f 3398 () ())
  5980. (3400 #f 3397 () ())
  5981. (3401 bindings #f () ())
  5982. (3402 bindings #f () ())
  5983. (3403 binding-type 3402 () ())
  5984. (3404 bindings #f () ())
  5985. (3405 binding-place 3404 () ())
  5986. (3406 bindings #f () ())
  5987. (3407 binding-static 3406 () ())
  5988. (3408 bindings #f () ())
  5989. (3409 binding-path 3408 () ())
  5990. (3410 bindings #f () ())
  5991. (3411 set-binding-place! 3410 () ())
  5992. (3412 bindings #f () ())
  5993. (3413 make-binding 3412 () ())
  5994. (3414 bindings #f () ())
  5995. (3415 add-path 3414 () ())
  5996. (3416 bindings #f () ())
  5997. (3417 clobber-binding! 3416 () ())
  5998. (3418 bindings #f () ())
  5999. (3419 impose-type 3418 () ())
  6000. (3420 bindings #f () ())
  6001. (3421 forget-integration 3420 () ())
  6002. (3422 bindings #f () ())
  6003. (3423 same-denotation? 3422 () ())
  6004. (3424 bindings #f () ())
  6005. (3425 follow-forwarding-pointers 3424 () ())
  6006. (3426 bindings #f () ())
  6007. (3427 maybe-fix-place! 3426 () ())
  6008. (3428 names #f () ())
  6009. (3429 #f 3428 () ())
  6010. (3430 names #f () ())
  6011. (3431 transform-procedure 3430 () ())
  6012. (3432 names #f () ())
  6013. (3433 transform-env 3432 () ())
  6014. (3434 names #f () ())
  6015. (3435 transform-type 3434 () ())
  6016. (3436 names #f () ())
  6017. (3437 transform-aux-names 3436 () ())
  6018. (3438 names #f () ())
  6019. (3439 transform-source 3438 () ())
  6020. (3440 names #f () ())
  6021. (3441 transform-id 3440 () ())
  6022. (3442 names #f () ())
  6023. (3443 really-make-transform 3442 () ())
  6024. (3444 names #f () ())
  6025. (3445 names #f () ())
  6026. (3446 names #f () ())
  6027. (3447 #f 3446 () ())
  6028. (3448 names #f () ())
  6029. (3449 generated-name 3448 () ())
  6030. (3450 names #f () ())
  6031. (3451 generated-token 3450 () ())
  6032. (3452 names #f () ())
  6033. (3453 generated-env 3452 () ())
  6034. (3454 names #f () ())
  6035. (3455 generated-parent-name 3454 () ())
  6036. (3456 names #f () ())
  6037. (3457 make-generated 3456 () ())
  6038. (3458 names #f () ())
  6039. (3459 names #f () ())
  6040. (3460 generated? 3459 () ())
  6041. (3461 names #f () ())
  6042. (3462 name? 3461 () ())
  6043. (3463 names #f () ())
  6044. (3464 generate-name 3463 () ())
  6045. (3465 names #f () ())
  6046. (3466 generated-uid 3465 () ())
  6047. (3467 names #f () ())
  6048. (3468 name->symbol 3467 () ())
  6049. (3469 names #f () ())
  6050. (3470 name-hash 3469 () ())
  6051. (3471 names #f () ())
  6052. (3472 desyntaxify 3471 () ())
  6053. (3473 loop 3472 () ())
  6054. (3474 names #f () ())
  6055. (3475 make-qualified 3474 () ())
  6056. (3476 names #f () ())
  6057. (3477 qualified? 3476 () ())
  6058. (3478 names #f () ())
  6059. (3479 qualified-parent-name 3478 () ())
  6060. (3480 names #f () ())
  6061. (3481 qualified-symbol 3480 () ())
  6062. (3482 names #f () ())
  6063. (3483 qualified-uid 3482 () ())
  6064. (3484 names #f () ())
  6065. (3485 lookup 3484 () ())
  6066. (3486 names #f () ())
  6067. (3487 qualify-parent 3486 () ())
  6068. (3488 recur 3487 () ())
  6069. (3489 names #f () ())
  6070. (3490 name->qualified 3489 () ())
  6071. (3491 names #f () ())
  6072. (3492 transform? 3491 () ())
  6073. (3493 names #f () ())
  6074. (3494 make-transform 3493 () ())
  6075. (3495 names #f () ())
  6076. (3496 name->source-name 3495 () ())
  6077. (3497 names #f () ())
  6078. (3498 make-keyword-comparator 3497 () ())
  6079. (3499 #f 3498 () ())
  6080. (3500 names #f () ())
  6081. (3501 make-name-generator 3500 () ())
  6082. (3502 #f 3501 () ())
  6083. (3503 names #f () ())
  6084. (3504 bind-aliases 3503 () ())
  6085. (3505 #f 3504 () ())
  6086. (3506 names #f () ())
  6087. (3507 maybe-apply-macro-transform 3506 () ())
  6088. (3508 names #f () ())
  6089. (3509 apply-inline-transform 3508 () ())
  6090. (3510 names #f () ())
  6091. (3511 compiler-envs #f () ())
  6092. (3512 compiler-envs #f () ())
  6093. (3513 compiler-envs #f () ())
  6094. (3514 compiler-envs #f () ())
  6095. (3515 compiler-envs #f () ())
  6096. (3516 lookup 3515 () ())
  6097. (3517 compiler-envs #f () ())
  6098. (3518 bind1 3517 () ())
  6099. (3519 #f 3518 () ())
  6100. (3520 compiler-envs #f () ())
  6101. (3521 bind 3520 () ())
  6102. (3522 compiler-envs #f () ())
  6103. (3523 bindrec 3522 () ())
  6104. (3524 #f 3523 () ())
  6105. (3525 compiler-envs #f () ())
  6106. (3526 make-compiler-env 3525 () ())
  6107. (3527 #f 3526 () ())
  6108. (3528 compiler-envs #f () ())
  6109. (3529 environment-macro-eval 3528 () ())
  6110. (3530 compiler-envs #f () ())
  6111. (3531 environment-define! 3530 () ())
  6112. (3532 compiler-envs #f () ())
  6113. (3533 extract-package-from-environment 3532 () ())
  6114. (3534 compiler-envs #f () ())
  6115. (3535 bind-source-file-name 3534 () ())
  6116. (3536 compiler-envs #f () ())
  6117. (3537 source-file-name 3536 () ())
  6118. (3538 thingies #f () ())
  6119. (3539 thingie-binding 3538 () ())
  6120. (3540 thingies #f () ())
  6121. (3541 thingie-name 3540 () ())
  6122. (3542 thingies #f () ())
  6123. (3543 thingie-want-type 3542 () ())
  6124. (3544 thingies #f () ())
  6125. (3545 make-thingie 3544 () ())
  6126. (3546 thingies #f () ())
  6127. (3547 thingies #f () ())
  6128. (3548 thingie? 3547 () ())
  6129. (3549 packages #f () ())
  6130. (3550 #f 3549 () ())
  6131. (3551 packages #f () ())
  6132. (3552 packages #f () ())
  6133. (3553 packages #f () ())
  6134. (3554 packages #f () ())
  6135. (3555 packages #f () ())
  6136. (3556 packages #f () ())
  6137. (3557 packages #f () ())
  6138. (3558 packages #f () ())
  6139. (3559 #f 3558 () ())
  6140. (3560 packages #f () ())
  6141. (3561 package-uid 3560 () ())
  6142. (3562 packages #f () ())
  6143. (3563 set-package-opens! 3562 () ())
  6144. (3564 packages #f () ())
  6145. (3565 package-opens-really 3564 () ())
  6146. (3566 packages #f () ())
  6147. (3567 package-definitions 3566 () ())
  6148. (3568 packages #f () ())
  6149. (3569 package-unstable? 3568 () ())
  6150. (3570 packages #f () ())
  6151. (3571 set-package-integrate?! 3570 () ())
  6152. (3572 packages #f () ())
  6153. (3573 package-integrate? 3572 () ())
  6154. (3574 packages #f () ())
  6155. (3575 set-package-get-location! 3574 () ())
  6156. (3576 packages #f () ())
  6157. (3577 package-get-location 3576 () ())
  6158. (3578 packages #f () ())
  6159. (3579 package-file-name 3578 () ())
  6160. (3580 packages #f () ())
  6161. (3581 package-clauses 3580 () ())
  6162. (3582 packages #f () ())
  6163. (3583 set-package-loaded?! 3582 () ())
  6164. (3584 packages #f () ())
  6165. (3585 package-loaded? 3584 () ())
  6166. (3586 packages #f () ())
  6167. (3587 set-package->environment! 3586 () ())
  6168. (3588 packages #f () ())
  6169. (3589 package->environment 3588 () ())
  6170. (3590 packages #f () ())
  6171. (3591 set-package-opens-thunk! 3590 () ())
  6172. (3592 packages #f () ())
  6173. (3593 package-opens-thunk 3592 () ())
  6174. (3594 packages #f () ())
  6175. (3595 package-accesses-thunk 3594 () ())
  6176. (3596 packages #f () ())
  6177. (3597 set-package-undefineds! 3596 () ())
  6178. (3598 packages #f () ())
  6179. (3599 package-real-undefineds 3598 () ())
  6180. (3600 packages #f () ())
  6181. (3601 set-package-undefined-but-assigneds! 3600 () ())
  6182. (3602 packages #f () ())
  6183. (3603 package-real-undefined-but-assigneds 3602 () ())
  6184. (3604 packages #f () ())
  6185. (3605 package-clients 3604 () ())
  6186. (3606 packages #f () ())
  6187. (3607 package-cached 3606 () ())
  6188. (3608 packages #f () ())
  6189. (3609 really-make-package 3608 () ())
  6190. (3610 packages #f () ())
  6191. (3611 packages #f () ())
  6192. (3612 #f 3611 () ())
  6193. (3613 packages #f () ())
  6194. (3614 structure-interface-thunk 3613 () ())
  6195. (3615 packages #f () ())
  6196. (3616 set-structure-interface! 3615 () ())
  6197. (3617 packages #f () ())
  6198. (3618 structure-interface-really 3617 () ())
  6199. (3619 packages #f () ())
  6200. (3620 structure-package 3619 () ())
  6201. (3621 packages #f () ())
  6202. (3622 structure-clients 3621 () ())
  6203. (3623 packages #f () ())
  6204. (3624 set-structure-name! 3623 () ())
  6205. (3625 packages #f () ())
  6206. (3626 structure-name 3625 () ())
  6207. (3627 packages #f () ())
  6208. (3628 really-make-structure 3627 () ())
  6209. (3629 packages #f () ())
  6210. (3630 packages #f () ())
  6211. (3631 structure? 3630 () ())
  6212. (3632 packages #f () ())
  6213. (3633 initialize-structure! 3632 () ())
  6214. (3634 packages #f () ())
  6215. (3635 structure-interface 3634 () ())
  6216. (3636 packages #f () ())
  6217. (3637 package? 3636 () ())
  6218. (3638 packages #f () ())
  6219. (3639 note-package-name! 3638 () ())
  6220. (3640 packages #f () ())
  6221. (3641 note-structure-name! 3640 () ())
  6222. (3642 packages #f () ())
  6223. (3643 make-structure 3642 () ())
  6224. (3644 #f 3643 () ())
  6225. (3645 packages #f () ())
  6226. (3646 structure-unstable? 3645 () ())
  6227. (3647 packages #f () ())
  6228. (3648 make-modified-structure 3647 () ())
  6229. (3649 #f 3648 () ())
  6230. (3650 packages #f () ())
  6231. (3651 get-new-location 3650 () ())
  6232. (3652 packages #f () ())
  6233. (3653 package-define! 3652 () ())
  6234. (3654 packages #f () ())
  6235. (3655 package-accesses 3654 () ())
  6236. (3656 packages #f () ())
  6237. (3657 initialize-package! 3656 () ())
  6238. (3658 #f 3657 () ())
  6239. (3659 #f 3657 () ())
  6240. (3660 packages #f () ())
  6241. (3661 initialize-package-if-necessary! 3660 () ())
  6242. (3662 packages #f () ())
  6243. (3663 package-definition 3662 () ())
  6244. (3664 packages #f () ())
  6245. (3665 search-opens 3664 () ())
  6246. (3666 loop 3665 () ())
  6247. (3667 packages #f () ())
  6248. (3668 structure-lookup 3667 () ())
  6249. (3669 #f 3668 () ())
  6250. (3670 #f 3668 () ())
  6251. (3671 packages #f () ())
  6252. (3672 package-lookup 3671 () ())
  6253. (3673 packages #f () ())
  6254. (3674 generic-lookup 3673 () ())
  6255. (3675 packages #f () ())
  6256. (3676 really-package-lookup 3675 () ())
  6257. (3677 packages #f () ())
  6258. (3678 real-structure-lookup 3677 () ())
  6259. (3679 packages #f () ())
  6260. (3680 for-each-export 3679 () ())
  6261. (3681 #f 3680 () ())
  6262. (3682 packages #f () ())
  6263. (3683 really-package->environment 3682 () ())
  6264. (3684 #f 3683 () ())
  6265. (3685 #f 3683 () ())
  6266. (3686 packages #f () ())
  6267. (3687 new-package-uid 3686 () ())
  6268. (3688 packages #f () ())
  6269. (3689 make-package 3688 () ())
  6270. (3690 packages #f () ())
  6271. (3691 lazy-table-accessor 3690 () ())
  6272. (3692 #f 3691 () ())
  6273. (3693 packages #f () ())
  6274. (3694 package-name 3693 () ())
  6275. (3695 packages #f () ())
  6276. (3696 package-opens 3695 () ())
  6277. (3697 packages #f () ())
  6278. (3698 make-simple-package 3697 () ())
  6279. (3699 #f 3698 () ())
  6280. (3700 #f 3698 () ())
  6281. (3701 packages #f () ())
  6282. (3702 package-add-static! 3701 () ())
  6283. (3703 packages #f () ())
  6284. (3704 package-refine-type! 3703 () ())
  6285. (3705 packages #f () ())
  6286. (3706 for-each-definition 3705 () ())
  6287. (3707 #f 3706 () ())
  6288. (3708 packages #f () ())
  6289. (3709 make-new-location 3708 () ())
  6290. (3710 packages #f () ())
  6291. (3711 flush-location-names 3710 () ())
  6292. (3712 packages #f () ())
  6293. (3713 print-undefined-names 3712 () ())
  6294. (3714 #f 3713 () ())
  6295. (3715 #f 3713 () ())
  6296. (3716 packages #f () ())
  6297. (3717 noting-undefined-variables 3716 () ())
  6298. (3718 add-name 3717 () ())
  6299. (3719 #f 3717 () ())
  6300. (3720 #f 3717 () ())
  6301. (3721 #f 3720 () ())
  6302. (3722 #f 3720 () ())
  6303. (3723 #f 3722 () ())
  6304. (3724 packages #f () ())
  6305. (3725 cenv->package 3724 () ())
  6306. (3726 packages #f () ())
  6307. (3727 get-location-for-unassignable 3726 () ())
  6308. (3728 #f 3727 () ())
  6309. (3729 #f 3727 () ())
  6310. (3730 packages #f () ())
  6311. (3731 package-note-caching! 3730 () ())
  6312. (3732 loop 3731 () ())
  6313. (3733 #f 3732 () ())
  6314. (3734 #f 3732 () ())
  6315. (3735 packages #f () ())
  6316. (3736 note-caching! 3735 () ())
  6317. (3737 packages #f () ())
  6318. (3738 location-for-reference 3737 () ())
  6319. (3739 loop 3738 () ())
  6320. (3740 #f 3739 () ())
  6321. (3741 #f 3739 () ())
  6322. (3742 packages #f () ())
  6323. (3743 get-location-for-undefined 3742 () ())
  6324. (3744 #f 3743 () ())
  6325. (3745 packages #f () ())
  6326. (3746 get-location 3745 () ())
  6327. (3747 packages #f () ())
  6328. (3748 really-link! 3747 () ())
  6329. (3749 loop##506 3748 () ())
  6330. (3750 packages #f () ())
  6331. (3751 link! 3750 () ())
  6332. (3752 #f 3751 () ())
  6333. (3753 packages #f () ())
  6334. (3754 location-on-demand 3753 () ())
  6335. (3755 #f 3754 () ())
  6336. (3756 packages #f () ())
  6337. (3757 packages #f () ())
  6338. (3758 environments #f () ())
  6339. (3759 set-reflective-tower-maker! 3758 () ())
  6340. (3760 environments #f () ())
  6341. (3761 make-reflective-tower 3760 () ())
  6342. (3762 recur 3761 () ())
  6343. (3763 #f 3762 () ())
  6344. (3764 environments #f () ())
  6345. (3765 null-environment 3764 () ())
  6346. (3766 environments #f () ())
  6347. (3767 set-scheme-report-environment! 3766 () ())
  6348. (3768 environments #f () ())
  6349. (3769 environments #f () ())
  6350. (3770 environments #f () ())
  6351. (3771 environments #f () ())
  6352. (3772 scheme-report-environment 3771 () ())
  6353. (3773 environments #f () ())
  6354. (3774 with-interaction-environment 3773 () ())
  6355. (3775 environments #f () ())
  6356. (3776 set-interaction-environment! 3775 () ())
  6357. (3777 environments #f () ())
  6358. (3778 interaction-environment 3777 () ())
  6359. (3779 environments #f () ())
  6360. (3780 environments #f () ())
  6361. (3781 carefully 3780 () ())
  6362. (3782 environments #f () ())
  6363. (3783 *structure-ref 3782 () ())
  6364. (3784 environments #f () ())
  6365. (3785 environment-define! 3784 () ())
  6366. (3786 environments #f () ())
  6367. (3787 environment-set! 3786 () ())
  6368. (3788 #f 3787 () ())
  6369. (3789 environments #f () ())
  6370. (3790 environment-ref 3789 () ())
  6371. (3791 #f 3790 () ())
  6372. (3792 filenames #f () ())
  6373. (3793 translate 3792 () ())
  6374. (3794 loop 3793 () ())
  6375. (3795 filenames #f () ())
  6376. (3796 set-translation! 3795 () ())
  6377. (3797 filenames #f () ())
  6378. (3798 translations 3797 () ())
  6379. (3799 filenames #f () ())
  6380. (3800 filenames #f () ())
  6381. (3801 string-posq 3800 () ())
  6382. (3802 loop 3801 () ())
  6383. (3803 filenames #f () ())
  6384. (3804 file-nondirectory-position 3803 () ())
  6385. (3805 loop 3804 () ())
  6386. (3806 filenames #f () ())
  6387. (3807 file-name-nondirectory 3806 () ())
  6388. (3808 filenames #f () ())
  6389. (3809 file-name-directory 3808 () ())
  6390. (3810 filenames #f () ())
  6391. (3811 filenames #f () ())
  6392. (3812 filenames #f () ())
  6393. (3813 filenames #f () ())
  6394. (3814 namestring-component 3813 () ())
  6395. (3815 filenames #f () ())
  6396. (3816 filenames #f () ())
  6397. (3817 filenames #f () ())
  6398. (3818 namestring 3817 () ())
  6399. (3819 #f 3818 () ())
  6400. (3820 reading-forms #f () ())
  6401. (3821 skip-line 3820 () ())
  6402. (3822 loop 3821 () ())
  6403. (3823 reading-forms #f () ())
  6404. (3824 really-read-forms 3823 () ())
  6405. (3825 loop 3824 () ())
  6406. (3826 reading-forms #f () ())
  6407. (3827 read-forms 3826 () ())
  6408. (3828 #f 3827 () ())
  6409. (3829 #f 3827 () ())
  6410. (3830 #f 3827 () ())
  6411. (3831 reading-forms #f () ())
  6412. (3832 #f 3831 () ())
  6413. (3833 nodes #f () ())
  6414. (3834 #f 3833 () ())
  6415. (3835 nodes #f () ())
  6416. (3836 #f 3835 () ())
  6417. (3837 nodes #f () ())
  6418. (3838 #f 3837 () ())
  6419. (3839 nodes #f () ())
  6420. (3840 #f 3839 () ())
  6421. (3841 nodes #f () ())
  6422. (3842 nodes #f () ())
  6423. (3843 nodes #f () ())
  6424. (3844 #f 3843 () ())
  6425. (3845 #f 3844 () ())
  6426. (3846 nodes #f () ())
  6427. (3847 #f 3846 () ())
  6428. (3848 nodes #f () ())
  6429. (3849 #f 3848 () ())
  6430. (3850 nodes #f () ())
  6431. (3851 #f 3850 () ())
  6432. (3852 nodes #f () ())
  6433. (3853 #f 3852 () ())
  6434. (3854 nodes #f () ())
  6435. (3855 node-operator-id 3854 () ())
  6436. (3856 nodes #f () ())
  6437. (3857 node-form 3856 () ())
  6438. (3858 nodes #f () ())
  6439. (3859 set-node-plist! 3858 () ())
  6440. (3860 nodes #f () ())
  6441. (3861 node-plist 3860 () ())
  6442. (3862 nodes #f () ())
  6443. (3863 really-make-node 3862 () ())
  6444. (3864 nodes #f () ())
  6445. (3865 nodes #f () ())
  6446. (3866 nodes #f () ())
  6447. (3867 nodes #f () ())
  6448. (3868 nodes #f () ())
  6449. (3869 nodes #f () ())
  6450. (3870 #f 3869 () ())
  6451. (3871 nodes #f () ())
  6452. (3872 set-operator-type! 3871 () ())
  6453. (3873 nodes #f () ())
  6454. (3874 operator-type 3873 () ())
  6455. (3875 nodes #f () ())
  6456. (3876 operator-nargs 3875 () ())
  6457. (3877 nodes #f () ())
  6458. (3878 operator-uid 3877 () ())
  6459. (3879 nodes #f () ())
  6460. (3880 operator-name 3879 () ())
  6461. (3881 nodes #f () ())
  6462. (3882 make-operator 3881 () ())
  6463. (3883 nodes #f () ())
  6464. (3884 nodes #f () ())
  6465. (3885 operator? 3884 () ())
  6466. (3886 nodes #f () ())
  6467. (3887 get-operator 3886 () ())
  6468. (3888 nodes #f () ())
  6469. (3889 make-operator-table 3888 () ())
  6470. (3890 nodes #f () ())
  6471. (3891 operator-lookup 3890 () ())
  6472. (3892 nodes #f () ())
  6473. (3893 operator-define! 3892 () ())
  6474. (3894 nodes #f () ())
  6475. (3895 node? 3894 () ())
  6476. (3896 nodes #f () ())
  6477. (3897 make-node 3896 () ())
  6478. (3898 nodes #f () ())
  6479. (3899 node-ref 3898 () ())
  6480. (3900 nodes #f () ())
  6481. (3901 node-set! 3900 () ())
  6482. (3902 loop 3901 () ())
  6483. (3903 nodes #f () ())
  6484. (3904 node-operator 3903 () ())
  6485. (3905 nodes #f () ())
  6486. (3906 node-predicate 3905 () ())
  6487. (3907 #f 3906 () ())
  6488. (3908 nodes #f () ())
  6489. (3909 make-similar-node 3908 () ())
  6490. (3910 nodes #f () ())
  6491. (3911 force-node 3910 () ())
  6492. (3912 nodes #f () ())
  6493. (3913 schemify-node 3912 () ())
  6494. (3914 nodes #f () ())
  6495. (3915 schemify-sexp 3914 () ())
  6496. (3916 loop 3915 () ())
  6497. (3917 nodes #f () ())
  6498. (3918 schemify 3917 () ())
  6499. (3919 nodes #f () ())
  6500. (3920 schemify-nodes 3919 () ())
  6501. (3921 #f 3920 () ())
  6502. (3922 nodes #f () ())
  6503. (3923 define-schemifier 3922 () ())
  6504. (3924 nodes #f () ())
  6505. (3925 schemify-formals 3924 () ())
  6506. (3926 nodes #f () ())
  6507. (3927 schemify-lambda 3926 () ())
  6508. (3928 nodes #f () ())
  6509. (3929 schemify-letrec 3928 () ())
  6510. (3930 #f 3929 () ())
  6511. (3931 nodes #f () ())
  6512. (3932 nodes #f () ())
  6513. (3933 var-utilities #f () ())
  6514. (3934 normalize-formals 3933 () ())
  6515. (3935 var-utilities #f () ())
  6516. (3936 n-ary? 3935 () ())
  6517. (3937 var-utilities #f () ())
  6518. (3938 number-of-required-args 3937 () ())
  6519. (3939 loop##539 3938 () ())
  6520. (3940 syntactic #f () ())
  6521. (3941 syntactic #f () ())
  6522. (3942 syntactic #f () ())
  6523. (3943 syntactic #f () ())
  6524. (3944 syntactic #f () ())
  6525. (3945 syntactic #f () ())
  6526. (3946 syntactic #f () ())
  6527. (3947 syntactic #f () ())
  6528. (3948 syntactic #f () ())
  6529. (3949 syntactic #f () ())
  6530. (3950 syntactic #f () ())
  6531. (3951 syntactic #f () ())
  6532. (3952 syntactic #f () ())
  6533. (3953 syntactic #f () ())
  6534. (3954 syntactic #f () ())
  6535. (3955 syntactic #f () ())
  6536. (3956 syntactic #f () ())
  6537. (3957 #f 3956 () ())
  6538. (3958 #f 3957 () ())
  6539. (3959 syntactic #f () ())
  6540. (3960 #f 3959 () ())
  6541. (3961 #f 3960 () ())
  6542. (3962 #f 3961 () ())
  6543. (3963 syntactic #f () ())
  6544. (3964 #f 3963 () ())
  6545. (3965 #f 3964 () ())
  6546. (3966 syntactic #f () ())
  6547. (3967 #f 3966 () ())
  6548. (3968 syntactic #f () ())
  6549. (3969 #f 3968 () ())
  6550. (3970 #f 3969 () ())
  6551. (3971 syntactic #f () ())
  6552. (3972 #f 3971 () ())
  6553. (3973 syntactic #f () ())
  6554. (3974 #f 3973 () ())
  6555. (3975 syntactic #f () ())
  6556. (3976 #f 3975 () ())
  6557. (3977 syntactic #f () ())
  6558. (3978 #f 3977 () ())
  6559. (3979 syntactic #f () ())
  6560. (3980 #f 3979 () ())
  6561. (3981 syntactic #f () ())
  6562. (3982 #f 3981 () ())
  6563. (3983 syntactic #f () ())
  6564. (3984 #f 3983 () ())
  6565. (3985 syntactic #f () ())
  6566. (3986 #f 3985 () ())
  6567. (3987 syntactic #f () ())
  6568. (3988 #f 3987 () ())
  6569. (3989 syntactic #f () ())
  6570. (3990 syntactic #f () ())
  6571. (3991 syntactic #f () ())
  6572. (3992 syntactic #f () ())
  6573. (3993 at-least-this-long? 3992 () ())
  6574. (3994 syntactic #f () ())
  6575. (3995 names? 3994 () ())
  6576. (3996 syntactic #f () ())
  6577. (3997 destructure-define 3996 () ())
  6578. (3998 syntactic #f () ())
  6579. (3999 scan-define 3998 () ())
  6580. (4000 syntactic #f () ())
  6581. (4001 this-long? 4000 () ())
  6582. (4002 syntactic #f () ())
  6583. (4003 process-syntax 4002 () ())
  6584. (4004 syntactic #f () ())
  6585. (4005 scan-define-syntax 4004 () ())
  6586. (4006 syntactic #f () ())
  6587. (4007 expand-name 4006 () ())
  6588. (4008 syntactic #f () ())
  6589. (4009 expand-operator-form 4008 () ())
  6590. (4010 syntactic #f () ())
  6591. (4011 literal? 4010 () ())
  6592. (4012 syntactic #f () ())
  6593. (4013 expand-literal 4012 () ())
  6594. (4014 syntactic #f () ())
  6595. (4015 expand-list 4014 () ())
  6596. (4016 #f 4015 () ())
  6597. (4017 syntactic #f () ())
  6598. (4018 expand-call 4017 () ())
  6599. (4019 syntactic #f () ())
  6600. (4020 expand 4019 () ())
  6601. (4021 syntactic #f () ())
  6602. (4022 expand-macro-application 4021 () ())
  6603. (4023 #f 4022 () ())
  6604. (4024 #f 4022 () ())
  6605. (4025 syntactic #f () ())
  6606. (4026 expand-structure-ref 4025 () ())
  6607. (4027 struct-node 4026 () ())
  6608. (4028 syntactic #f () ())
  6609. (4029 expand-head 4028 () ())
  6610. (4030 syntactic #f () ())
  6611. (4031 scan-forms 4030 () ())
  6612. (4032 loop 4031 () ())
  6613. (4033 syntactic #f () ())
  6614. (4034 expand-define 4033 () ())
  6615. (4035 syntactic #f () ())
  6616. (4036 expand-scanned-form 4035 () ())
  6617. (4037 syntactic #f () ())
  6618. (4038 expand-form 4037 () ())
  6619. (4039 loop 4038 () ())
  6620. (4040 syntactic #f () ())
  6621. (4041 static-value 4040 () ())
  6622. (4042 syntactic #f () ())
  6623. (4043 make-operator-predicate 4042 () ())
  6624. (4044 #f 4043 () ())
  6625. (4045 syntactic #f () ())
  6626. (4046 body-lossage 4045 () ())
  6627. (4047 syntactic #f () ())
  6628. (4048 scan-body-forms 4047 () ())
  6629. (4049 #f 4048 () ())
  6630. (4050 #f 4048 () ())
  6631. (4051 syntactic #f () ())
  6632. (4052 expand-letrec 4051 () ())
  6633. (4053 #f 4052 () ())
  6634. (4054 syntactic #f () ())
  6635. (4055 expand-body 4054 () ())
  6636. (4056 #f 4055 () ())
  6637. (4057 #f 4056 () ())
  6638. (4058 #f 4056 () ())
  6639. (4059 #f 4055 () ())
  6640. (4060 syntactic #f () ())
  6641. (4061 define-expander 4060 () ())
  6642. (4062 syntactic #f () ())
  6643. (4063 unspecific-node 4062 () ())
  6644. (4064 syntactic #f () ())
  6645. (4065 bind-names 4064 () ())
  6646. (4066 loop 4065 () ())
  6647. (4067 syntactic #f () ())
  6648. (4068 expand-lambda 4067 () ())
  6649. (4069 #f 4068 () ())
  6650. (4070 #f 4068 () ())
  6651. (4071 syntactic #f () ())
  6652. (4072 specs? 4071 () ())
  6653. (4073 syntactic #f () ())
  6654. (4074 syntax? 4073 () ())
  6655. (4075 primops #f () ())
  6656. (4076 primops #f () ())
  6657. (4077 #f 4076 () ())
  6658. (4078 primops #f () ())
  6659. (4079 primop-name 4078 () ())
  6660. (4080 primops #f () ())
  6661. (4081 primop-type 4080 () ())
  6662. (4082 primops #f () ())
  6663. (4083 primop-closed 4082 () ())
  6664. (4084 primops #f () ())
  6665. (4085 primop-compilator 4084 () ())
  6666. (4086 primops #f () ())
  6667. (4087 make-primop 4086 () ())
  6668. (4088 primops #f () ())
  6669. (4089 primops #f () ())
  6670. (4090 primop? 4089 () ())
  6671. (4091 primops #f () ())
  6672. (4092 walk-primops 4091 () ())
  6673. (4093 #f 4092 () ())
  6674. (4094 primops #f () ())
  6675. (4095 define-compiler-primitive 4094 () ())
  6676. (4096 primops #f () ())
  6677. (4097 get-primop 4096 () ())
  6678. (4098 vm-data #f () ())
  6679. (4099 remove-stob-tag 4098 () ())
  6680. (4100 vm-data #f () ())
  6681. (4101 add-stob-tag 4100 () ())
  6682. (4102 vm-data #f () ())
  6683. (4103 b-vector-header? 4102 () ())
  6684. (4104 vm-data #f () ())
  6685. (4105 d-vector-header? 4104 () ())
  6686. (4106 vm-data #f () ())
  6687. (4107 header-length-in-a-units 4106 () ())
  6688. (4108 vm-data #f () ())
  6689. (4109 header-length-in-cells 4108 () ())
  6690. (4110 vm-data #f () ())
  6691. (4111 header-length-in-bytes 4110 () ())
  6692. (4112 vm-data #f () ())
  6693. (4113 immutable-header? 4112 () ())
  6694. (4114 vm-data #f () ())
  6695. (4115 header-type 4114 () ())
  6696. (4116 vm-data #f () ())
  6697. (4117 make-header-immutable 4116 () ())
  6698. (4118 vm-data #f () ())
  6699. (4119 vm-data #f () ())
  6700. (4120 make-header 4119 () ())
  6701. (4121 vm-data #f () ())
  6702. (4122 vm-data #f () ())
  6703. (4123 vm-data #f () ())
  6704. (4124 vm-data #f () ())
  6705. (4125 vm-data #f () ())
  6706. (4126 vm-data #f () ())
  6707. (4127 char->scalar-value 4126 () ())
  6708. (4128 vm-data #f () ())
  6709. (4129 scalar-value->char 4128 () ())
  6710. (4130 vm-data #f () ())
  6711. (4131 extract-char 4130 () ())
  6712. (4132 vm-data #f () ())
  6713. (4133 enter-char 4132 () ())
  6714. (4134 vm-data #f () ())
  6715. (4135 vm-boolean? 4134 () ())
  6716. (4136 vm-data #f () ())
  6717. (4137 extract-boolean 4136 () ())
  6718. (4138 vm-data #f () ())
  6719. (4139 enter-boolean 4138 () ())
  6720. (4140 vm-data #f () ())
  6721. (4141 false? 4140 () ())
  6722. (4142 vm-data #f () ())
  6723. (4143 vm-data #f () ())
  6724. (4144 vm-data #f () ())
  6725. (4145 vm-data #f () ())
  6726. (4146 vm-data #f () ())
  6727. (4147 vm-data #f () ())
  6728. (4148 vm-data #f () ())
  6729. (4149 vm-data #f () ())
  6730. (4150 vm-data #f () ())
  6731. (4151 vm-data #f () ())
  6732. (4152 vm-data #f () ())
  6733. (4153 vm-data #f () ())
  6734. (4154 scalar-value-units->bytes 4153 () ())
  6735. (4155 vm-data #f () ())
  6736. (4156 bytes->scalar-value-units 4155 () ())
  6737. (4157 vm-data #f () ())
  6738. (4158 vm-data #f () ())
  6739. (4159 immediate-predicate 4158 () ())
  6740. (4160 #f 4159 () ())
  6741. (4161 vm-data #f () ())
  6742. (4162 vm-data #f () ())
  6743. (4163 vm-data #f () ())
  6744. (4164 make-tag&immediate-type 4163 () ())
  6745. (4165 vm-data #f () ())
  6746. (4166 tag&immediate-type 4165 () ())
  6747. (4167 vm-data #f () ())
  6748. (4168 immediate-info 4167 () ())
  6749. (4169 vm-data #f () ())
  6750. (4170 immediate-type 4169 () ())
  6751. (4171 vm-data #f () ())
  6752. (4172 make-immediate 4171 () ())
  6753. (4173 vm-data #f () ())
  6754. (4174 vm-data #f () ())
  6755. (4175 vm-data #f () ())
  6756. (4176 vm-data #f () ())
  6757. (4177 vm-data #f () ())
  6758. (4178 fixnum-bitwise-not 4177 () ())
  6759. (4179 vm-data #f () ())
  6760. (4180 vm-data #f () ())
  6761. (4181 vm-data #f () ())
  6762. (4182 vm-data #f () ())
  6763. (4183 vm-data #f () ())
  6764. (4184 vm-data #f () ())
  6765. (4185 fixnum->stob 4184 () ())
  6766. (4186 vm-data #f () ())
  6767. (4187 descriptor->fixnum 4186 () ())
  6768. (4188 vm-data #f () ())
  6769. (4189 extract-fixnum 4188 () ())
  6770. (4190 vm-data #f () ())
  6771. (4191 enter-fixnum 4190 () ())
  6772. (4192 vm-data #f () ())
  6773. (4193 too-small-for-fixnum? 4192 () ())
  6774. (4194 vm-data #f () ())
  6775. (4195 too-big-for-fixnum? 4194 () ())
  6776. (4196 vm-data #f () ())
  6777. (4197 vm-data #f () ())
  6778. (4198 vm-data #f () ())
  6779. (4199 vm-data #f () ())
  6780. (4200 stob? 4199 () ())
  6781. (4201 vm-data #f () ())
  6782. (4202 header? 4201 () ())
  6783. (4203 vm-data #f () ())
  6784. (4204 immediate? 4203 () ())
  6785. (4205 vm-data #f () ())
  6786. (4206 fixnum? 4205 () ())
  6787. (4207 vm-data #f () ())
  6788. (4208 vm-data #f () ())
  6789. (4209 vm-data #f () ())
  6790. (4210 vm-data #f () ())
  6791. (4211 set-descriptor-tag 4210 () ())
  6792. (4212 vm-data #f () ())
  6793. (4213 unsigned-descriptor-data 4212 () ())
  6794. (4214 vm-data #f () ())
  6795. (4215 descriptor-data 4214 () ())
  6796. (4216 vm-data #f () ())
  6797. (4217 descriptor-tag 4216 () ())
  6798. (4218 vm-data #f () ())
  6799. (4219 make-descriptor 4218 () ())
  6800. (4220 vm-data #f () ())
  6801. (4221 vm-data #f () ())
  6802. (4222 vm-data #f () ())
  6803. (4223 bytes->a-units 4222 () ())
  6804. (4224 vm-data #f () ())
  6805. (4225 a-units->cells 4224 () ())
  6806. (4226 vm-data #f () ())
  6807. (4227 cells->a-units 4226 () ())
  6808. (4228 vm-data #f () ())
  6809. (4229 vm-data #f () ())
  6810. (4230 vm-data #f () ())
  6811. (4231 cells->bytes 4230 () ())
  6812. (4232 vm-data #f () ())
  6813. (4233 bytes->cells 4232 () ())
  6814. (4234 vm-data #f () ())
  6815. (4235 vm-data #f () ())
  6816. (4236 vm-data #f () ())
  6817. (4237 vm-data #f () ())
  6818. (4238 vm-data #f () ())
  6819. (4239 vm-data #f () ())
  6820. (4240 vm-data #f () ())
  6821. (4241 low-bits 4240 () ())
  6822. (4242 vm-data #f () ())
  6823. (4243 adjoin-bits 4242 () ())
  6824. (4244 vm-data #f () ())
  6825. (4245 vm-data #f () ())
  6826. (4246 arithmetic-shift-right 4245 () ())
  6827. (4247 debug-data #f () ())
  6828. (4248 debug-data #f () ())
  6829. (4249 debug-data #f () ())
  6830. (4250 debug-data #f () ())
  6831. (4251 debug-data #f () ())
  6832. (4252 debug-data #f () ())
  6833. (4253 debug-data #f () ())
  6834. (4254 debug-data #f () ())
  6835. (4255 debug-data #f () ())
  6836. (4256 debug-data #f () ())
  6837. (4257 #f 4256 () ())
  6838. (4258 debug-data #f () ())
  6839. (4259 debug-data-uid 4258 () ())
  6840. (4260 debug-data #f () ())
  6841. (4261 debug-data-name 4260 () ())
  6842. (4262 debug-data #f () ())
  6843. (4263 debug-data-parent 4262 () ())
  6844. (4264 debug-data #f () ())
  6845. (4265 set-debug-data-env-maps! 4264 () ())
  6846. (4266 debug-data #f () ())
  6847. (4267 debug-data-env-maps 4266 () ())
  6848. (4268 debug-data #f () ())
  6849. (4269 set-debug-data-jump-back-dests! 4268 () ())
  6850. (4270 debug-data #f () ())
  6851. (4271 debug-data-jump-back-dests 4270 () ())
  6852. (4272 debug-data #f () ())
  6853. (4273 set-debug-data-source! 4272 () ())
  6854. (4274 debug-data #f () ())
  6855. (4275 debug-data-source 4274 () ())
  6856. (4276 debug-data #f () ())
  6857. (4277 make-debug-data 4276 () ())
  6858. (4278 debug-data #f () ())
  6859. (4279 debug-data #f () ())
  6860. (4280 debug-data? 4279 () ())
  6861. (4281 debug-data #f () ())
  6862. (4282 debug-data-env-shape 4281 () ())
  6863. (4283 loop 4282 () ())
  6864. (4284 debug-data #f () ())
  6865. (4285 new-template-uid 4284 () ())
  6866. (4286 debug-data #f () ())
  6867. (4287 template-uid 4286 () ())
  6868. (4288 debug-data #f () ())
  6869. (4289 set-template-uid! 4288 () ())
  6870. (4290 debug-data #f () ())
  6871. (4291 debug-flag-accessor 4290 () ())
  6872. (4292 #f 4291 () ())
  6873. (4293 debug-data #f () ())
  6874. (4294 debug-flag-modifier 4293 () ())
  6875. (4295 #f 4294 () ())
  6876. (4296 debug-data #f () ())
  6877. (4297 saving-and-restoring 4296 () ())
  6878. (4298 swap 4297 () ())
  6879. (4299 debug-data #f () ())
  6880. (4300 with-fresh-compiler-state 4299 () ())
  6881. (4301 #f 4300 () ())
  6882. (4302 #f 4301 () ())
  6883. (4303 #f 4301 () ())
  6884. (4304 debug-data #f () ())
  6885. (4305 note-debug-data! 4304 () ())
  6886. (4306 debug-data #f () ())
  6887. (4307 debug-data->info 4306 () ())
  6888. (4308 debug-data #f () ())
  6889. (4309 get-debug-data 4308 () ())
  6890. (4310 debug-data #f () ())
  6891. (4311 new-debug-data 4310 () ())
  6892. (4312 debug-data #f () ())
  6893. (4313 debug-data #f () ())
  6894. (4314 frames #f () ())
  6895. (4315 frame-template-index 4314 () ())
  6896. (4316 frames #f () ())
  6897. (4317 frame-env-index 4316 () ())
  6898. (4318 frames #f () ())
  6899. (4319 frame-closure-index 4318 () ())
  6900. (4320 frames #f () ())
  6901. (4321 set-frame-size! 4320 () ())
  6902. (4322 frames #f () ())
  6903. (4323 frame-size 4322 () ())
  6904. (4324 frames #f () ())
  6905. (4325 set-frame-literals! 4324 () ())
  6906. (4326 frames #f () ())
  6907. (4327 frame-literals 4326 () ())
  6908. (4328 frames #f () ())
  6909. (4329 set-frame-count! 4328 () ())
  6910. (4330 frames #f () ())
  6911. (4331 frame-count 4330 () ())
  6912. (4332 frames #f () ())
  6913. (4333 frame-debug-data 4332 () ())
  6914. (4334 frames #f () ())
  6915. (4335 really-make-frame 4334 () ())
  6916. (4336 frames #f () ())
  6917. (4337 frames #f () ())
  6918. (4338 frame? 4337 () ())
  6919. (4339 frames #f () ())
  6920. (4340 adjust-procedure-name 4339 () ())
  6921. (4341 frames #f () ())
  6922. (4342 make-frame 4341 () ())
  6923. (4343 allocate-index 4342 () ())
  6924. (4344 frames #f () ())
  6925. (4345 index->offset 4344 () ())
  6926. (4346 frames #f () ())
  6927. (4347 template-offset 4346 () ())
  6928. (4348 frames #f () ())
  6929. (4349 environment-offset 4348 () ())
  6930. (4350 frames #f () ())
  6931. (4351 depth-check! 4350 () ())
  6932. (4352 frames #f () ())
  6933. (4353 position 4352 () ())
  6934. (4354 loop 4353 () ())
  6935. (4355 frames #f () ())
  6936. (4356 literal-position 4355 () ())
  6937. (4357 #f 4356 () ())
  6938. (4358 frames #f () ())
  6939. (4359 literal->index 4358 () ())
  6940. (4360 frames #f () ())
  6941. (4361 binding->index 4360 () ())
  6942. (4362 segments #f () ())
  6943. (4363 segments #f () ())
  6944. (4364 #f 4363 () ())
  6945. (4365 segments #f () ())
  6946. (4366 astate-code-vector 4365 () ())
  6947. (4367 segments #f () ())
  6948. (4368 set-astate-pc! 4367 () ())
  6949. (4369 segments #f () ())
  6950. (4370 astate-pc 4369 () ())
  6951. (4371 segments #f () ())
  6952. (4372 set-astate-env-maps! 4371 () ())
  6953. (4373 segments #f () ())
  6954. (4374 astate-env-maps 4373 () ())
  6955. (4375 segments #f () ())
  6956. (4376 set-astate-jump-back-dests! 4375 () ())
  6957. (4377 segments #f () ())
  6958. (4378 astate-jump-back-dests 4377 () ())
  6959. (4379 segments #f () ())
  6960. (4380 make-assembly-state 4379 () ())
  6961. (4381 segments #f () ())
  6962. (4382 segments #f () ())
  6963. (4383 segments #f () ())
  6964. (4384 segments #f () ())
  6965. (4385 segments #f () ())
  6966. (4386 segments #f () ())
  6967. (4387 emit-segment! 4386 () ())
  6968. (4388 segments #f () ())
  6969. (4389 high-byte 4388 () ())
  6970. (4390 segments #f () ())
  6971. (4391 low-byte 4390 () ())
  6972. (4392 segments #f () ())
  6973. (4393 add-big-stack-protocol! 4392 () ())
  6974. (4394 segments #f () ())
  6975. (4395 make-astate 4394 () ())
  6976. (4396 segments #f () ())
  6977. (4397 check-stack-use 4396 () ())
  6978. (4398 segments #f () ())
  6979. (4399 segment->cv 4398 () ())
  6980. (4400 segments #f () ())
  6981. (4401 segment-data->template 4400 () ())
  6982. (4402 loop##627 4401 () ())
  6983. (4403 segments #f () ())
  6984. (4404 segment->template 4403 () ())
  6985. (4405 #f 4404 () ())
  6986. (4406 segments #f () ())
  6987. (4407 with-package-key 4406 () ())
  6988. (4408 segments #f () ())
  6989. (4409 emit-byte! 4408 () ())
  6990. (4410 segments #f () ())
  6991. (4411 instruction 4410 () ())
  6992. (4412 #f 4411 () ())
  6993. (4413 #f 4412 () ())
  6994. (4414 segments #f () ())
  6995. (4415 sequentially-2 4414 () ())
  6996. (4416 #f 4415 () ())
  6997. (4417 segments #f () ())
  6998. (4418 sequentially 4417 () ())
  6999. (4419 loop 4418 () ())
  7000. (4420 #f 4418 () ())
  7001. (4421 loop 4420 () ())
  7002. (4422 segments #f () ())
  7003. (4423 bits->bytes 4422 () ())
  7004. (4424 loop##628 4423 () ())
  7005. (4425 segments #f () ())
  7006. (4426 live-mask 4425 () ())
  7007. (4427 loop##629 4426 () ())
  7008. (4428 segments #f () ())
  7009. (4429 continuation-data 4428 () ())
  7010. (4430 #f 4429 () ())
  7011. (4431 #f 4430 () ())
  7012. (4432 segments #f () ())
  7013. (4433 make-push-byte 4432 () ())
  7014. (4434 segments #f () ())
  7015. (4435 lambda-protocol 4434 () ())
  7016. (4436 segments #f () ())
  7017. (4437 nary-lambda-protocol 4436 () ())
  7018. (4438 segments #f () ())
  7019. (4439 nary-primitive-protocol 4438 () ())
  7020. (4440 segments #f () ())
  7021. (4441 empty-segment? 4440 () ())
  7022. (4442 segments #f () ())
  7023. (4443 make-dispatch-protocol 4442 () ())
  7024. (4444 loop 4443 () ())
  7025. (4445 segments #f () ())
  7026. (4446 continuation-protocol 4445 () ())
  7027. (4447 segments #f () ())
  7028. (4448 code-vector-set2! 4447 () ())
  7029. (4449 segments #f () ())
  7030. (4450 insert-label! 4449 () ())
  7031. (4451 segments #f () ())
  7032. (4452 insert-backward-label! 4451 () ())
  7033. (4453 segments #f () ())
  7034. (4454 label-reference 4453 () ())
  7035. (4455 #f 4454 () ())
  7036. (4456 segments #f () ())
  7037. (4457 optional-label-reference 4456 () ())
  7038. (4458 segments #f () ())
  7039. (4459 cwv-continuation-protocol 4458 () ())
  7040. (4460 segments #f () ())
  7041. (4461 make-label 4460 () ())
  7042. (4462 segments #f () ())
  7043. (4463 jump-instruction 4462 () ())
  7044. (4464 #f 4463 () ())
  7045. (4465 segments #f () ())
  7046. (4466 bytes->segment 4465 () ())
  7047. (4467 #f 4466 () ())
  7048. (4468 #f 4467 () ())
  7049. (4469 segments #f () ())
  7050. (4470 instruction-using-label 4469 () ())
  7051. (4471 segments #f () ())
  7052. (4472 using-optional-label 4471 () ())
  7053. (4473 segments #f () ())
  7054. (4474 computed-goto-instruction 4473 () ())
  7055. (4475 #f 4474 () ())
  7056. (4476 loop##633 4475 () ())
  7057. (4477 segments #f () ())
  7058. (4478 attach-label 4477 () ())
  7059. (4479 #f 4478 () ())
  7060. (4480 #f 4479 () ())
  7061. (4481 segments #f () ())
  7062. (4482 note-source-code 4481 () ())
  7063. (4483 #f 4482 () ())
  7064. (4484 segments #f () ())
  7065. (4485 note-environment 4484 () ())
  7066. (4486 #f 4485 () ())
  7067. (4487 segments #f () ())
  7068. (4488 optimizer #f () ())
  7069. (4489 apply-optimizers 4488 () ())
  7070. (4490 #f 4489 () ())
  7071. (4491 optimizer #f () ())
  7072. (4492 get-optimizer 4491 () ())
  7073. (4493 #f 4492 () ())
  7074. (4494 #f 4493 () ())
  7075. (4495 #f 4494 () ())
  7076. (4496 optimizer #f () ())
  7077. (4497 set-optimizer! 4496 () ())
  7078. (4498 optimizer #f () ())
  7079. (4499 flat-environments #f () ())
  7080. (4500 clear-var-set! 4499 () ())
  7081. (4501 flat-environments #f () ())
  7082. (4502 clean-var-list 4501 () ())
  7083. (4503 flat-environments #f () ())
  7084. (4504 set-difference! 4503 () ())
  7085. (4505 flat-environments #f () ())
  7086. (4506 set-union! 4505 () ())
  7087. (4507 #f 4506 () ())
  7088. (4508 flat-environments #f () ())
  7089. (4509 set-add-element! 4508 () ())
  7090. (4510 flat-environments #f () ())
  7091. (4511 flat-environments #f () ())
  7092. (4512 install-set! 4511 () ())
  7093. (4513 #f 4512 () ())
  7094. (4514 flat-environments #f () ())
  7095. (4515 install-new-set! 4514 () ())
  7096. (4516 flat-environments #f () ())
  7097. (4517 unassigned-check-primop 4516 () ())
  7098. (4518 flat-environments #f () ())
  7099. (4519 flat-environments #f () ())
  7100. (4520 cell-set!-primop 4519 () ())
  7101. (4521 flat-environments #f () ())
  7102. (4522 flat-environments #f () ())
  7103. (4523 cell-ref-primop 4522 () ())
  7104. (4524 flat-environments #f () ())
  7105. (4525 flat-environments #f () ())
  7106. (4526 make-cell-primop 4525 () ())
  7107. (4527 flat-environments #f () ())
  7108. (4528 flat-environments #f () ())
  7109. (4529 flat-environments #f () ())
  7110. (4530 flat-environments #f () ())
  7111. (4531 flat-environments #f () ())
  7112. (4532 flat-environments #f () ())
  7113. (4533 flat-environments #f () ())
  7114. (4534 flat-environments #f () ())
  7115. (4535 flat-environments #f () ())
  7116. (4536 flat-environments #f () ())
  7117. (4537 flat-environments #f () ())
  7118. (4538 flat-environments #f () ())
  7119. (4539 flat-environments #f () ())
  7120. (4540 flat-environments #f () ())
  7121. (4541 flat-environments #f () ())
  7122. (4542 make-primop-call 4541 () ())
  7123. (4543 flat-environments #f () ())
  7124. (4544 make-cell-set! 4543 () ())
  7125. (4545 flat-environments #f () ())
  7126. (4546 really-make-cell-ref 4545 () ())
  7127. (4547 flat-environments #f () ())
  7128. (4548 make-cell-ref 4547 () ())
  7129. (4549 flat-environments #f () ())
  7130. (4550 make-unassigned-cell 4549 () ())
  7131. (4551 flat-environments #f () ())
  7132. (4552 make-make-cell 4551 () ())
  7133. (4553 flat-environments #f () ())
  7134. (4554 mark-letrec-sets 4553 () ())
  7135. (4555 #f 4554 () ())
  7136. (4556 flat-environments #f () ())
  7137. (4557 #f 4556 () ())
  7138. (4558 flat-environments #f () ())
  7139. (4559 #f 4558 () ())
  7140. (4560 flat-environments #f () ())
  7141. (4561 #f 4560 () ())
  7142. (4562 flat-environments #f () ())
  7143. (4563 #f 4562 () ())
  7144. (4564 flat-environments #f () ())
  7145. (4565 #f 4564 () ())
  7146. (4566 flat-environments #f () ())
  7147. (4567 #f 4566 () ())
  7148. (4568 flat-environments #f () ())
  7149. (4569 #f 4568 () ())
  7150. (4570 flat-environments #f () ())
  7151. (4571 flat-environments #f () ())
  7152. (4572 flat-environments #f () ())
  7153. (4573 flat-environments #f () ())
  7154. (4574 flat-environments #f () ())
  7155. (4575 flat-environments #f () ())
  7156. (4576 no-sets 4575 () ())
  7157. (4577 flat-environments #f () ())
  7158. (4578 define-set-marker 4577 () ())
  7159. (4579 flat-environments #f () ())
  7160. (4580 #f 4579 () ())
  7161. (4581 flat-environments #f () ())
  7162. (4582 mark-set-variables! 4581 () ())
  7163. (4583 flat-environments #f () ())
  7164. (4584 assigned? 4583 () ())
  7165. (4585 flat-environments #f () ())
  7166. (4586 #f 4585 () ())
  7167. (4587 #f 4586 () ())
  7168. (4588 flat-environments #f () ())
  7169. (4589 flatten-impure-letrec 4588 () ())
  7170. (4590 #f 4589 () ())
  7171. (4591 #f 4589 () ())
  7172. (4592 #f 4589 () ())
  7173. (4593 flat-environments #f () ())
  7174. (4594 flatten-pure-letrec 4593 () ())
  7175. (4595 flat-environments #f () ())
  7176. (4596 flatten-letrec 4595 () ())
  7177. (4597 #f 4596 () ())
  7178. (4598 flat-environments #f () ())
  7179. (4599 #f 4598 () ())
  7180. (4600 flat-environments #f () ())
  7181. (4601 #f 4600 () ())
  7182. (4602 flat-environments #f () ())
  7183. (4603 #f 4602 () ())
  7184. (4604 flat-environments #f () ())
  7185. (4605 #f 4604 () ())
  7186. (4606 flat-environments #f () ())
  7187. (4607 #f 4606 () ())
  7188. (4608 flat-environments #f () ())
  7189. (4609 #f 4608 () ())
  7190. (4610 flat-environments #f () ())
  7191. (4611 add-cells 4610 () ())
  7192. (4612 loop##641 4611 () ())
  7193. (4613 flat-environments #f () ())
  7194. (4614 convert-lambda-body 4613 () ())
  7195. (4615 flat-environments #f () ())
  7196. (4616 flatten-lambda 4615 () ())
  7197. (4617 flat-environments #f () ())
  7198. (4618 #f 4617 () ())
  7199. (4619 flat-environments #f () ())
  7200. (4620 #f 4619 () ())
  7201. (4621 flat-environments #f () ())
  7202. (4622 flat-environments #f () ())
  7203. (4623 flat-environments #f () ())
  7204. (4624 flat-environments #f () ())
  7205. (4625 no-free-vars 4624 () ())
  7206. (4626 flat-environments #f () ())
  7207. (4627 flatten-list 4626 () ())
  7208. (4628 #f 4627 () ())
  7209. (4629 flat-environments #f () ())
  7210. (4630 define-flattener 4629 () ())
  7211. (4631 flat-environments #f () ())
  7212. (4632 #f 4631 () ())
  7213. (4633 flat-environments #f () ())
  7214. (4634 flatten-node 4633 () ())
  7215. (4635 flat-environments #f () ())
  7216. (4636 flatten-form 4635 () ())
  7217. (4637 flat-environments #f () ())
  7218. (4638 #f 4637 () ())
  7219. (4639 #f 4638 () ())
  7220. (4640 reconstruction #f () ())
  7221. (4641 constant-type 4640 () ())
  7222. (4642 reconstruction #f () ())
  7223. (4643 reconstruction #f () ())
  7224. (4644 reconstruction #f () ())
  7225. (4645 reconstruct-apply 4644 () ())
  7226. (4646 #f 4645 () ())
  7227. (4647 reconstruction #f () ())
  7228. (4648 #f 4647 () ())
  7229. (4649 reconstruction #f () ())
  7230. (4650 #f 4649 () ())
  7231. (4651 #f 4650 () ())
  7232. (4652 reconstruction #f () ())
  7233. (4653 #f 4652 () ())
  7234. (4654 reconstruction #f () ())
  7235. (4655 define-primop-reconstructor 4654 () ())
  7236. (4656 reconstruction #f () ())
  7237. (4657 reconstruction #f () ())
  7238. (4658 reconstruction #f () ())
  7239. (4659 reconstruction #f () ())
  7240. (4660 reconstruction #f () ())
  7241. (4661 #f 4660 () ())
  7242. (4662 reconstruction #f () ())
  7243. (4663 #f 4662 () ())
  7244. (4664 reconstruction #f () ())
  7245. (4665 node->type 4664 () ())
  7246. (4666 reconstruction #f () ())
  7247. (4667 #f 4666 () ())
  7248. (4668 reconstruction #f () ())
  7249. (4669 reconstruct-letrec 4668 () ())
  7250. (4670 #f 4669 () ())
  7251. (4671 reconstruction #f () ())
  7252. (4672 #f 4671 () ())
  7253. (4673 reconstruction #f () ())
  7254. (4674 #f 4673 () ())
  7255. (4675 reconstruction #f () ())
  7256. (4676 #f 4675 () ())
  7257. (4677 reconstruction #f () ())
  7258. (4678 #f 4677 () ())
  7259. (4679 loop##642 4678 () ())
  7260. (4680 reconstruction #f () ())
  7261. (4681 reconstruction #f () ())
  7262. (4682 fork-constraints 4681 () ())
  7263. (4683 #f 4682 () ())
  7264. (4684 reconstruction #f () ())
  7265. (4685 #f 4684 () ())
  7266. (4686 #f 4685 () ())
  7267. (4687 reconstruction #f () ())
  7268. (4688 #f 4687 () ())
  7269. (4689 reconstruction #f () ())
  7270. (4690 #f 4689 () ())
  7271. (4691 reconstruction #f () ())
  7272. (4692 #f 4691 () ())
  7273. (4693 reconstruction #f () ())
  7274. (4694 #f 4693 () ())
  7275. (4695 reconstruction #f () ())
  7276. (4696 reconstruct-call 4695 () ())
  7277. (4697 lose 4696 () ())
  7278. (4698 #f 4697 () ())
  7279. (4699 loop 4696 () ())
  7280. (4700 reconstruction #f () ())
  7281. (4701 proc->reconstructor 4700 () ())
  7282. (4702 reconstruction #f () ())
  7283. (4703 #f 4702 () ())
  7284. (4704 reconstruction #f () ())
  7285. (4705 reconstruct-name 4704 () ())
  7286. (4706 reconstruction #f () ())
  7287. (4707 #f 4706 () ())
  7288. (4708 reconstruction #f () ())
  7289. (4709 careful-codomain 4708 () ())
  7290. (4710 reconstruction #f () ())
  7291. (4711 reconstruct-lambda 4710 () ())
  7292. (4712 #f 4711 () ())
  7293. (4713 reconstruction #f () ())
  7294. (4714 #f 4713 () ())
  7295. (4715 reconstruction #f () ())
  7296. (4716 #f 4715 () ())
  7297. (4717 reconstruction #f () ())
  7298. (4718 define-reconstructor 4717 () ())
  7299. (4719 reconstruction #f () ())
  7300. (4720 #f 4719 () ())
  7301. (4721 reconstruction #f () ())
  7302. (4722 examine 4721 () ())
  7303. (4723 reconstruction #f () ())
  7304. (4724 reconstruct 4723 () ())
  7305. (4725 reconstruction #f () ())
  7306. (4726 reconstruct-type 4725 () ())
  7307. (4727 reconstruction #f () ())
  7308. (4728 node-type 4727 () ())
  7309. (4729 compiler #f () ())
  7310. (4730 compiler #f () ())
  7311. (4731 loop 4730 () ())
  7312. (4732 compiler #f () ())
  7313. (4733 compiler #f () ())
  7314. (4734 define-encode/decode 4733 () ())
  7315. (4735 #f 4734 () ())
  7316. (4736 compiler #f () ())
  7317. (4737 define-one-or-two 4736 () ())
  7318. (4738 #f 4737 () ())
  7319. (4739 #f 4737 () ())
  7320. (4740 compiler #f () ())
  7321. (4741 #f 4740 () ())
  7322. (4742 #f 4740 () ())
  7323. (4743 compiler #f () ())
  7324. (4744 define-one-or-two 4743 () ())
  7325. (4745 #f 4744 () ())
  7326. (4746 #f 4744 () ())
  7327. (4747 compiler #f () ())
  7328. (4748 compiler #f () ())
  7329. (4749 compiler #f () ())
  7330. (4750 define=< 4749 () ())
  7331. (4751 #f 4750 () ())
  7332. (4752 #f 4750 () ())
  7333. (4753 compiler #f () ())
  7334. (4754 define+* 4753 () ())
  7335. (4755 #f 4754 () ())
  7336. (4756 #f 4754 () ())
  7337. (4757 compiler #f () ())
  7338. (4758 define-byte/char-io 4757 () ())
  7339. (4759 #f 4758 () ())
  7340. (4760 #f 4758 () ())
  7341. (4761 compiler #f () ())
  7342. (4762 define-byte/char-io 4761 () ())
  7343. (4763 #f 4762 () ())
  7344. (4764 #f 4762 () ())
  7345. (4765 compiler #f () ())
  7346. (4766 n-ary-constructor 4765 () ())
  7347. (4767 #f 4766 () ())
  7348. (4768 #f 4766 () ())
  7349. (4769 compiler #f () ())
  7350. (4770 #f 4769 () ())
  7351. (4771 compiler #f () ())
  7352. (4772 #f 4771 () ())
  7353. (4773 #f 4771 () ())
  7354. (4774 compiler #f () ())
  7355. (4775 #f 4774 () ())
  7356. (4776 #f 4775 () ())
  7357. (4777 #f 4775 () ())
  7358. (4778 #f 4774 () ())
  7359. (4779 compiler #f () ())
  7360. (4780 #f 4779 () ())
  7361. (4781 #f 4780 () ())
  7362. (4782 #f 4781 () ())
  7363. (4783 #f 4781 () ())
  7364. (4784 #f 4780 () ())
  7365. (4785 #f 4779 () ())
  7366. (4786 #f 4785 () ())
  7367. (4787 #f 4785 () ())
  7368. (4788 compiler #f () ())
  7369. (4789 #f 4788 () ())
  7370. (4790 #f 4789 () ())
  7371. (4791 #f 4789 () ())
  7372. (4792 #f 4788 () ())
  7373. (4793 compiler #f () ())
  7374. (4794 compiler #f () ())
  7375. (4795 compiler #f () ())
  7376. (4796 compiler #f () ())
  7377. (4797 compiler #f () ())
  7378. (4798 compiler #f () ())
  7379. (4799 compiler #f () ())
  7380. (4800 compiler #f () ())
  7381. (4801 #f 4800 () ())
  7382. (4802 compiler #f () ())
  7383. (4803 #f 4802 () ())
  7384. (4804 compiler #f () ())
  7385. (4805 #f 4804 () ())
  7386. (4806 compiler #f () ())
  7387. (4807 #f 4806 () ())
  7388. (4808 #f 4806 () ())
  7389. (4809 compiler #f () ())
  7390. (4810 compiler #f () ())
  7391. (4811 compiler #f () ())
  7392. (4812 compiler #f () ())
  7393. (4813 loop##646 4812 () ())
  7394. (4814 compiler #f () ())
  7395. (4815 compiler #f () ())
  7396. (4816 #f 4815 () ())
  7397. (4817 compiler #f () ())
  7398. (4818 #f 4817 () ())
  7399. (4819 compiler #f () ())
  7400. (4820 #f 4819 () ())
  7401. (4821 compiler #f () ())
  7402. (4822 compiler #f () ())
  7403. (4823 compiler #f () ())
  7404. (4824 compiler #f () ())
  7405. (4825 compiler #f () ())
  7406. (4826 compiler #f () ())
  7407. (4827 compiler #f () ())
  7408. (4828 compiler #f () ())
  7409. (4829 compiler #f () ())
  7410. (4830 compiler #f () ())
  7411. (4831 #f 4830 () ())
  7412. (4832 compiler #f () ())
  7413. (4833 compiler #f () ())
  7414. (4834 compiler #f () ())
  7415. (4835 compiler #f () ())
  7416. (4836 compiler #f () ())
  7417. (4837 #f 4836 () ())
  7418. (4838 #f 4837 () ())
  7419. (4839 #f 4838 () ())
  7420. (4840 #f 4837 () ())
  7421. (4841 compiler #f () ())
  7422. (4842 compiler #f () ())
  7423. (4843 #f 4842 () ())
  7424. (4844 loop 4843 () ())
  7425. (4845 compiler #f () ())
  7426. (4846 #f 4845 () ())
  7427. (4847 compiler #f () ())
  7428. (4848 #f 4847 () ())
  7429. (4849 compiler #f () ())
  7430. (4850 #f 4849 () ())
  7431. (4851 compiler #f () ())
  7432. (4852 #f 4851 () ())
  7433. (4853 compiler #f () ())
  7434. (4854 #f 4853 () ())
  7435. (4855 compiler #f () ())
  7436. (4856 #f 4855 () ())
  7437. (4857 compiler #f () ())
  7438. (4858 #f 4857 () ())
  7439. (4859 compiler #f () ())
  7440. (4860 #f 4859 () ())
  7441. (4861 compiler #f () ())
  7442. (4862 diagnose-call-error 4861 () ())
  7443. (4863 #f 4862 () ())
  7444. (4864 compiler #f () ())
  7445. (4865 type-check 4864 () ())
  7446. (4866 #f 4865 () ())
  7447. (4867 compiler #f () ())
  7448. (4868 compile 4867 () ())
  7449. (4869 compiler #f () ())
  7450. (4870 compile-expression 4869 () ())
  7451. (4871 compiler #f () ())
  7452. (4872 define-compilator 4871 () ())
  7453. (4873 compiler #f () ())
  7454. (4874 return-cont? 4873 () ())
  7455. (4875 compiler #f () ())
  7456. (4876 deliver-value 4875 () ())
  7457. (4877 compiler #f () ())
  7458. (4878 ignore-values-cont? 4877 () ())
  7459. (4879 compiler #f () ())
  7460. (4880 deliver-constant-value 4879 () ())
  7461. (4881 compiler #f () ())
  7462. (4882 small-integer? 4881 () ())
  7463. (4883 compiler #f () ())
  7464. (4884 integer-literal-instruction 4883 () ())
  7465. (4885 compiler #f () ())
  7466. (4886 stack-indirect-instruction 4885 () ())
  7467. (4887 compiler #f () ())
  7468. (4888 compile-constant 4887 () ())
  7469. (4889 compiler #f () ())
  7470. (4890 stack-ref-instruction 4889 () ())
  7471. (4891 compiler #f () ())
  7472. (4892 index->offset 4891 () ())
  7473. (4893 compiler #f () ())
  7474. (4894 compile-local-name 4893 () ())
  7475. (4895 compiler #f () ())
  7476. (4896 push+stack-indirect-instruction 4895 () ())
  7477. (4897 compiler #f () ())
  7478. (4898 constant-with-push 4897 () ())
  7479. (4899 compiler #f () ())
  7480. (4900 push+stack-ref-instruction 4899 () ())
  7481. (4901 compiler #f () ())
  7482. (4902 lexical-ref-with-push 4901 () ())
  7483. (4903 compiler #f () ())
  7484. (4904 name-node-binding 4903 () ())
  7485. (4905 compiler #f () ())
  7486. (4906 maybe-compile-with-push 4905 () ())
  7487. (4907 compiler #f () ())
  7488. (4908 fixup-source 4907 () ())
  7489. (4909 compiler #f () ())
  7490. (4910 really-push-continuation 4909 () ())
  7491. (4911 compiler #f () ())
  7492. (4912 push-continuation 4911 () ())
  7493. (4913 compiler #f () ())
  7494. (4914 maybe-push-continuation 4913 () ())
  7495. (4915 compiler #f () ())
  7496. (4916 pre-push 4915 () ())
  7497. (4917 compiler #f () ())
  7498. (4918 make-cont 4917 () ())
  7499. (4919 compiler #f () ())
  7500. (4920 named-cont 4919 () ())
  7501. (4921 compiler #f () ())
  7502. (4922 fall-through-cont 4921 () ())
  7503. (4923 compiler #f () ())
  7504. (4924 compile-argument 4923 () ())
  7505. (4925 compiler #f () ())
  7506. (4926 really-push-arguments 4925 () ())
  7507. (4927 recur 4926 () ())
  7508. (4928 #f 4927 () ())
  7509. (4929 #f 4927 () ())
  7510. (4930 compiler #f () ())
  7511. (4931 push-arguments 4930 () ())
  7512. (4932 compiler #f () ())
  7513. (4933 call-instruction 4932 () ())
  7514. (4934 compiler #f () ())
  7515. (4935 compile-unknown-call 4934 () ())
  7516. (4936 #f 4935 () ())
  7517. (4937 #f 4935 () ())
  7518. (4938 compiler #f () ())
  7519. (4939 compile-name-call 4938 () ())
  7520. (4940 compiler #f () ())
  7521. (4941 generate-trap 4940 () ())
  7522. (4942 compiler #f () ())
  7523. (4943 set-frame-locations! 4942 () ())
  7524. (4944 loop 4943 () ())
  7525. (4945 compiler #f () ())
  7526. (4946 push-all-with-names 4945 () ())
  7527. (4947 compiler #f () ())
  7528. (4948 compile-inline-body 4947 () ())
  7529. (4949 compiler #f () ())
  7530. (4950 name-node->symbol 4949 () ())
  7531. (4951 compiler #f () ())
  7532. (4952 compile-redex 4951 () ())
  7533. (4953 compiler #f () ())
  7534. (4954 compile-call 4953 () ())
  7535. (4955 compiler #f () ())
  7536. (4956 set-lexical-offsets! 4955 () ())
  7537. (4957 loop 4956 () ())
  7538. (4958 compiler #f () ())
  7539. (4959 return-cont 4958 () ())
  7540. (4960 compiler #f () ())
  7541. (4961 compile-lambda-code 4960 () ())
  7542. (4962 compiler #f () ())
  7543. (4963 compile-lambda 4962 () ())
  7544. (4964 compiler #f () ())
  7545. (4965 unflatten-form 4964 () ())
  7546. (4966 compiler #f () ())
  7547. (4967 letrec-template-maker 4966 () ())
  7548. (4968 #f 4967 () ())
  7549. (4969 #f 4968 () ())
  7550. (4970 #f 4969 () ())
  7551. (4971 #f 4969 () ())
  7552. (4972 compiler #f () ())
  7553. (4973 push-continuation-no-protocol 4972 () ())
  7554. (4974 compiler #f () ())
  7555. (4975 push-all-but-last 4974 () ())
  7556. (4976 compiler #f () ())
  7557. (4977 push-argument 4976 () ())
  7558. (4978 #f 4977 () ())
  7559. (4979 #f 4977 () ())
  7560. (4980 compiler #f () ())
  7561. (4981 stack-set!-instruction 4980 () ())
  7562. (4982 compiler #f () ())
  7563. (4983 plain-fall-through-cont 4982 () ())
  7564. (4984 compiler #f () ())
  7565. (4985 fall-through-cont? 4984 () ())
  7566. (4986 compiler #f () ())
  7567. (4987 ignore-values-cont 4986 () ())
  7568. (4988 compiler #f () ())
  7569. (4989 accept-values-cont 4988 () ())
  7570. (4990 compiler #f () ())
  7571. (4991 accept-values-cont? 4990 () ())
  7572. (4992 compiler #f () ())
  7573. (4993 cont-name 4992 () ())
  7574. (4994 compiler #f () ())
  7575. (4995 set-type-check?! 4994 () ())
  7576. (4996 compiler #f () ())
  7577. (4997 add-variable 4996 () ())
  7578. (4998 compiler #f () ())
  7579. (4999 get-variables-locations 4998 () ())
  7580. (5000 loop 4999 () ())
  7581. (5001 compiler #f () ())
  7582. (5002 figure-env-data 5001 () ())
  7583. (5003 loop 5002 () ())
  7584. (5004 compiler #f () ())
  7585. (5005 flat-environment-code 5004 () ())
  7586. (5006 #f 5005 () ())
  7587. (5007 #f 5006 () ())
  7588. (5008 #f 5005 () ())
  7589. (5009 compiler #f () ())
  7590. (5010 one-byte->two-byte 5009 () ())
  7591. (5011 loop 5010 () ())
  7592. (5012 compiler #f () ())
  7593. (5013 finish-flat-env 5012 () ())
  7594. (5014 #f 5013 () ())
  7595. (5015 compiler #f () ())
  7596. (5016 compile-recursive-environment 5015 () ())
  7597. (5017 #f 5016 () ())
  7598. (5018 #f 5016 () ())
  7599. (5019 compiler #f () ())
  7600. (5020 compile-environment 5019 () ())
  7601. (5021 #f 5020 () ())
  7602. (5022 compiler #f () ())
  7603. (5023 really-compile-flat-lambda 5022 () ())
  7604. (5024 #f 5023 () ())
  7605. (5025 #f 5024 () ())
  7606. (5026 #f 5023 () ())
  7607. (5027 compiler #f () ())
  7608. (5028 compile-flat-lambda 5027 () ())
  7609. (5029 #f 5028 () ())
  7610. (5030 #f 5028 () ())
  7611. (5031 compiler #f () ())
  7612. (5032 primop-closed-template 5031 () ())
  7613. (5033 #f 5032 () ())
  7614. (5034 #f 5032 () ())
  7615. (5035 compiler #f () ())
  7616. (5036 direct-compilator 5035 () ())
  7617. (5037 #f 5036 () ())
  7618. (5038 compiler #f () ())
  7619. (5039 direct-closed-compilator 5038 () ())
  7620. (5040 #f 5039 () ())
  7621. (5041 compiler #f () ())
  7622. (5042 nargs->domain 5041 () ())
  7623. (5043 loop##655 5042 () ())
  7624. (5044 compiler #f () ())
  7625. (5045 get-primop-type 5044 () ())
  7626. (5046 #f 5045 () ())
  7627. (5047 compiler #f () ())
  7628. (5048 simple-compilator 5047 () ())
  7629. (5049 #f 5048 () ())
  7630. (5050 compiler #f () ())
  7631. (5051 simple-closed-compilator 5050 () ())
  7632. (5052 #f 5051 () ())
  7633. (5053 compiler #f () ())
  7634. (5054 define-simple-primitive 5053 () ())
  7635. (5055 compiler #f () ())
  7636. (5056 symbol-append 5055 () ())
  7637. (5057 compiler #f () ())
  7638. (5058 define-stob-predicate 5057 () ())
  7639. (5059 compiler #f () ())
  7640. (5060 define-data-struct-primitives 5059 () ())
  7641. (5061 def-prim 5060 () ())
  7642. (5062 loop##657 5060 () ())
  7643. (5063 compiler #f () ())
  7644. (5064 define-vector-primitives 5063 () ())
  7645. (5065 def-prim 5064 () ())
  7646. (5066 compiler #f () ())
  7647. (5067 thunk-node? 5066 () ())
  7648. (5068 compiler #f () ())
  7649. (5069 thunk-body 5068 () ())
  7650. (5070 compiler #f () ())
  7651. (5071 n-ary-primitive-compilator 5070 () ())
  7652. (5072 #f 5071 () ())
  7653. (5073 compiler #f () ())
  7654. (5074 define-n-ary-compiler-primitive 5073 () ())
  7655. (5075 compiler #f () ())
  7656. (5076 evaluate-arguments-for-effect 5075 () ())
  7657. (5077 loop##660 5076 () ())
  7658. (5078 compiler #f () ())
  7659. (5079 call-on-arg-and-id 5078 () ())
  7660. (5080 compiler #f () ())
  7661. (5081 push-and-compile 5080 () ())
  7662. (5082 compiler #f () ())
  7663. (5083 call-on-args 5082 () ())
  7664. (5084 loop 5083 () ())
  7665. (5085 compiler #f () ())
  7666. (5086 compile-definition 5085 () ())
  7667. (5087 compiler #f () ())
  7668. (5088 call-template-inst 5087 () ())
  7669. (5089 compiler #f () ())
  7670. (5090 compile-form 5089 () ())
  7671. (5091 compiler #f () ())
  7672. (5092 compile-forms-loop 5091 () ())
  7673. (5093 compiler #f () ())
  7674. (5094 compile-forms 5093 () ())
  7675. (5095 #f 5094 () ())
  7676. (5096 compiler #f () ())
  7677. (5097 template-call 5096 () ())
  7678. (5098 #f 5097 () ())
  7679. (5099 #f 5097 () ())
  7680. (5100 compiler #f () ())
  7681. (5101 append-templates 5100 () ())
  7682. (5102 #f 5101 () ())
  7683. (5103 compiler #f () ())
  7684. (5104 make-startup-procedure 5103 () ())
  7685. (5105 compiler #f () ())
  7686. (5106 evaluation #f () ())
  7687. (5107 compile-and-run 5106 () ())
  7688. (5108 #f 5107 () ())
  7689. (5109 #f 5108 () ())
  7690. (5110 evaluation #f () ())
  7691. (5111 really-load-into 5110 () ())
  7692. (5112 evaluation #f () ())
  7693. (5113 load 5112 () ())
  7694. (5114 evaluation #f () ())
  7695. (5115 eval-from-file 5114 () ())
  7696. (5116 evaluation #f () ())
  7697. (5117 load-script-into 5116 () ())
  7698. (5118 evaluation #f () ())
  7699. (5119 load-into 5118 () ())
  7700. (5120 evaluation #f () ())
  7701. (5121 eval 5120 () ())
  7702. (5122 scheme #f () ())
  7703. (5123 mini-command #f () ())
  7704. (5124 limited-write 5123 () ())
  7705. (5125 recur 5124 () ())
  7706. (5126 #f 5125 () ())
  7707. (5127 #f 5126 () ())
  7708. (5128 mini-command #f () ())
  7709. (5129 &disclose-condition 5128 () ())
  7710. (5130 mini-command #f () ())
  7711. (5131 mini-command #f () ())
  7712. (5132 mini-command #f () ())
  7713. (5133 set-condition-display-length! 5132 () ())
  7714. (5134 mini-command #f () ())
  7715. (5135 condition-display-length 5134 () ())
  7716. (5136 mini-command #f () ())
  7717. (5137 mini-command #f () ())
  7718. (5138 set-condition-display-depth! 5137 () ())
  7719. (5139 mini-command #f () ())
  7720. (5140 condition-display-depth 5139 () ())
  7721. (5141 mini-command #f () ())
  7722. (5142 mini-command #f () ())
  7723. (5143 really-display-condition 5142 () ())
  7724. (5144 #f 5143 () ())
  7725. (5145 mini-command #f () ())
  7726. (5146 display-condition 5145 () ())
  7727. (5147 #f 5146 () ())
  7728. (5148 mini-command #f () ())
  7729. (5149 byte-vector->string 5148 () ())
  7730. (5150 loop##668 5149 () ())
  7731. (5151 mini-command #f () ())
  7732. (5152 read-string 5151 () ())
  7733. (5153 loop 5152 () ())
  7734. (5154 mini-command #f () ())
  7735. (5155 mini-load 5154 () ())
  7736. (5156 mini-command #f () ())
  7737. (5157 command-processor 5156 () ())
  7738. (5158 loop 5157 () ())
  7739. (5159 #f 5158 () ())
  7740. (5160 #f 5159 () ())
  7741. (5161 #f 5160 () ())
  7742. (5162 #f 5159 () ())
  7743. (5163 #f 5162 () ())
  7744. (5164 #f 5162 () ())
  7745. (5165 #f 5162 () ())
  7746. (5166 #f 5165 () ())
  7747. (5167 #f 5162 () ())
  7748. (5168 scheduler #f () ())
  7749. (5169 decrement-counter! 5168 () ())
  7750. (5170 scheduler #f () ())
  7751. (5171 increment-counter! 5170 () ())
  7752. (5172 scheduler #f () ())
  7753. (5173 scheduler #f () ())
  7754. (5174 make-counter 5173 () ())
  7755. (5175 scheduler #f () ())
  7756. (5176 round-robin-event-handler 5175 () ())
  7757. (5177 thread-event-handler 5176 () ())
  7758. (5178 #f 5177 () ())
  7759. (5179 #f 5177 () ())
  7760. (5180 asynchronous-event-handler 5176 () ())
  7761. (5181 next-thread 5176 () ())
  7762. (5182 #f 5181 () ())
  7763. (5183 scheduler #f () ())
  7764. (5184 run-threads-with-housekeeper 5183 () ())
  7765. (5185 #f 5184 () ())
  7766. (5186 loop 5185 () ())
  7767. (5187 #f 5186 () ())
  7768. (5188 #f 5187 () ())
  7769. (5189 #f 5187 () ())
  7770. (5190 #f 5186 () ())
  7771. (5191 #f 5184 () ())
  7772. (5192 scheduler #f () ())
  7773. (5193 run-threads 5192 () ())
  7774. (5194 #f 5193 () ())
  7775. (5195 loop 5194 () ())
  7776. (5196 #f 5195 () ())
  7777. (5197 #f 5196 () ())
  7778. (5198 #f 5196 () ())
  7779. (5199 #f 5195 () ())
  7780. (5200 #f 5193 () ())
  7781. (5201 root-scheduler #f () ())
  7782. (5202 spawn-output-forcers 5201 () ())
  7783. (5203 root-scheduler #f () ())
  7784. (5204 call-when-deadlocked! 5203 () ())
  7785. (5205 root-scheduler #f () ())
  7786. (5206 root-scheduler #f () ())
  7787. (5207 root-scheduler #f () ())
  7788. (5208 root-scheduler #f () ())
  7789. (5209 root-scheduler #f () ())
  7790. (5210 do-some-waiting 5209 () ())
  7791. (5211 #f 5210 () ())
  7792. (5212 root-scheduler #f () ())
  7793. (5213 root-wait 5212 () ())
  7794. (5214 #f 5213 () ())
  7795. (5215 root-scheduler #f () ())
  7796. (5216 scheme-exit-now 5215 () ())
  7797. (5217 root-scheduler #f () ())
  7798. (5218 root-scheduler #f () ())
  7799. (5219 cheap-display-condition 5218 () ())
  7800. (5220 #f 5219 () ())
  7801. (5221 #f 5220 () ())
  7802. (5222 #f 5219 () ())
  7803. (5223 root-scheduler #f () ())
  7804. (5224 root-handler 5223 () ())
  7805. (5225 root-scheduler #f () ())
  7806. (5226 make-root-event-handler 5225 () ())
  7807. (5227 #f 5226 () ())
  7808. (5228 #f 5226 () ())
  7809. (5229 root-scheduler #f () ())
  7810. (5230 root-scheduler 5229 () ())
  7811. (5231 #f 5230 () ())
  7812. (5232 #f 5231 () ())
  7813. (5233 #f 5231 () ())
  7814. (5234 usual-resumer #f () ())
  7815. (5235 usual-resumer #f () ())
  7816. (5236 run-initialization-thunks 5235 () ())
  7817. (5237 #f 5236 () ())
  7818. (5238 usual-resumer #f () ())
  7819. (5239 add-initialization-thunk! 5238 () ())
  7820. (5240 usual-resumer #f () ())
  7821. (5241 usual-resumer #f () ())
  7822. (5242 set-encoding! 5241 () ())
  7823. (5243 usual-resumer #f () ())
  7824. (5244 initialize-rts 5243 () ())
  7825. (5245 #f 5244 () ())
  7826. (5246 #f 5245 () ())
  7827. (5247 #f 5246 () ())
  7828. (5248 #f 5247 () ())
  7829. (5249 usual-resumer #f () ())
  7830. (5250 warn-about-undefined-imported-bindings 5249 () ())
  7831. (5251 loop##680 5250 () ())
  7832. (5252 usual-resumer #f () ())
  7833. (5253 usual-resumer 5252 () ())
  7834. (5254 usual-resumer #f () ())
  7835. (5255 make-usual-resumer 5254 () ())
  7836. (5256 #f 5255 () ())
  7837. (5257 #f 5256 () ())
  7838. (5258 initial-system #f () ())
  7839. (5259 make-tower 5258 () ())
  7840. (5260 initial-system #f () ())
  7841. (5261 make-initial-package 5260 () ())
  7842. (5262 #f 5261 () ())
  7843. (5263 initial-system #f () ())
  7844. (5264 initialize-interaction-environment! 5263 () ())
  7845. (5265 initial-system #f () ())
  7846. (5266 make-built-in-structures 5265 () ())
  7847. (5267 #f 5266 () ())
  7848. (5268 #f 5266 () ())
  7849. (5269 initial-system #f () ())
  7850. (5270 start 5269 () ())
  7851. (5271 #f 5270 () ())
  7852. (5272 #f 5271 () ())
  7853. (5273 #f 5272 () ())
  7854. (5274 usual-macros #f () ())
  7855. (5275 find-free-names-in-syntax-rules 5274 () ())
  7856. (5276 meta-variables 5275 () ())
  7857. (5277 free-names 5275 () ())
  7858. (5278 loop##684 5275 () ())
  7859. (5279 usual-macros #f () ())
  7860. (5280 usual-macros #f () ())
  7861. (5281 segment-tail 5280 () ())
  7862. (5282 loop 5281 () ())
  7863. (5283 usual-macros #f () ())
  7864. (5284 segment-depth 5283 () ())
  7865. (5285 usual-macros #f () ())
  7866. (5286 segment-template? 5285 () ())
  7867. (5287 usual-macros #f () ())
  7868. (5288 segment-pattern? 5287 () ())
  7869. (5289 usual-macros #f () ())
  7870. (5290 process-rules 5289 () ())
  7871. (5291 #f 5290 () ())
  7872. (5292 #f 5290 () ())
  7873. (5293 #f 5292 () ())
  7874. (5294 #f 5290 () ())
  7875. (5295 #f 5290 () ())
  7876. (5296 #f 5290 () ())
  7877. (5297 #f 5296 () ())
  7878. (5298 #f 5290 () ())
  7879. (5299 loop##688 5298 () ())
  7880. (5300 #f 5290 () ())
  7881. (5301 #f 5290 () ())
  7882. (5302 usual-macros #f () ())
  7883. (5303 #f 5302 () ())
  7884. (5304 usual-macros #f () ())
  7885. (5305 #f 5304 () ())
  7886. (5306 #f 5305 () ())
  7887. (5307 #f 5305 () ())
  7888. (5308 #f 5305 () ())
  7889. (5309 #f 5305 () ())
  7890. (5310 #f 5309 () ())
  7891. (5311 #f 5310 () ())
  7892. (5312 #f 5305 () ())
  7893. (5313 #f 5312 () ())
  7894. (5314 #f 5305 () ())
  7895. (5315 usual-macros #f () ())
  7896. (5316 case-clause? 5315 () ())
  7897. (5317 usual-macros #f () ())
  7898. (5318 #f 5317 () ())
  7899. (5319 #f 5318 () ())
  7900. (5320 #f 5318 () ())
  7901. (5321 usual-macros #f () ())
  7902. (5322 #f 5321 () ())
  7903. (5323 usual-macros #f () ())
  7904. (5324 specs? 5323 () ())
  7905. (5325 usual-macros #f () ())
  7906. (5326 #f 5325 () ())
  7907. (5327 usual-macros #f () ())
  7908. (5328 #f 5327 () ())
  7909. (5329 usual-macros #f () ())
  7910. (5330 do-spec? 5329 () ())
  7911. (5331 usual-macros #f () ())
  7912. (5332 #f 5331 () ())
  7913. (5333 #f 5332 () ())
  7914. (5334 usual-macros #f () ())
  7915. (5335 #f 5334 () ())
  7916. (5336 recur 5335 () ())
  7917. (5337 usual-macros #f () ())
  7918. (5338 #f 5337 () ())
  7919. (5339 usual-macros #f () ())
  7920. (5340 usual-transform 5339 () ())
  7921. (5341 usual-macros #f () ())
  7922. (5342 define-usual-macro 5341 () ())
  7923. (5343 usual-macros #f () ())
  7924. (5344 strong #f () ())
  7925. (5345 pop-vertex-edge! 5344 () ())
  7926. (5346 strong #f () ())
  7927. (5347 follow-edge 5346 () ())
  7928. (5348 strong #f () ())
  7929. (5349 unwind-stack 5348 () ())
  7930. (5350 loop 5349 () ())
  7931. (5351 strong #f () ())
  7932. (5352 end-vertex 5351 () ())
  7933. (5353 #f 5352 () ())
  7934. (5354 #f 5352 () ())
  7935. (5355 strong #f () ())
  7936. (5356 get-strong 5355 () ())
  7937. (5357 strong #f () ())
  7938. (5358 do-vertex 5357 () ())
  7939. (5359 strong #f () ())
  7940. (5360 make-vertices 5359 () ())
  7941. (5361 maybe-slot 5360 () ())
  7942. (5362 #f 5360 () ())
  7943. (5363 #f 5360 () ())
  7944. (5364 strong #f () ())
  7945. (5365 make-vertex 5364 () ())
  7946. (5366 strong #f () ())
  7947. (5367 vertex? 5366 () ())
  7948. (5368 strong #f () ())
  7949. (5369 vertex-data 5368 () ())
  7950. (5370 strong #f () ())
  7951. (5371 set-vertex-edges! 5370 () ())
  7952. (5372 strong #f () ())
  7953. (5373 vertex-edges 5372 () ())
  7954. (5374 strong #f () ())
  7955. (5375 set-vertex-stack! 5374 () ())
  7956. (5376 strong #f () ())
  7957. (5377 vertex-stack 5376 () ())
  7958. (5378 strong #f () ())
  7959. (5379 set-vertex-index! 5378 () ())
  7960. (5380 strong #f () ())
  7961. (5381 vertex-index 5380 () ())
  7962. (5382 strong #f () ())
  7963. (5383 set-vertex-parent! 5382 () ())
  7964. (5384 strong #f () ())
  7965. (5385 vertex-parent 5384 () ())
  7966. (5386 strong #f () ())
  7967. (5387 set-vertex-lowpoint! 5386 () ())
  7968. (5388 strong #f () ())
  7969. (5389 vertex-lowpoint 5388 () ())
  7970. (5390 strong #f () ())
  7971. (5391 really-make-vertex 5390 () ())
  7972. (5392 strong #f () ())
  7973. (5393 strong #f () ())
  7974. (5394 find-next-vertex 5393 () ())
  7975. (5395 loop##711 5394 () ())
  7976. (5396 strong #f () ())
  7977. (5397 strongly-connected-components 5396 () ())
  7978. (5398 loop 5397 () ())
  7979. (5399 #f 5398 () ())
  7980. (5400 #f 5398 () ())
  7981. (5401 #f 5398 () ())
  7982. (5402 usages #f () ())
  7983. (5403 insert-aliases 5402 () ())
  7984. (5404 loop 5403 () ())
  7985. (5405 usages #f () ())
  7986. (5406 make-form 5405 () ())
  7987. (5407 usages #f () ())
  7988. (5408 #f 5407 () ())
  7989. (5409 usages #f () ())
  7990. (5410 form? 5409 () ())
  7991. (5411 usages #f () ())
  7992. (5412 form-node 5411 () ())
  7993. (5413 usages #f () ())
  7994. (5414 set-form-aliases! 5413 () ())
  7995. (5415 usages #f () ())
  7996. (5416 form-aliases 5415 () ())
  7997. (5417 usages #f () ())
  7998. (5418 set-form-unaliased?! 5417 () ())
  7999. (5419 usages #f () ())
  8000. (5420 form-unaliased? 5419 () ())
  8001. (5421 usages #f () ())
  8002. (5422 set-form-free! 5421 () ())
  8003. (5423 usages #f () ())
  8004. (5424 form-free 5423 () ())
  8005. (5425 usages #f () ())
  8006. (5426 set-form-temp! 5425 () ())
  8007. (5427 usages #f () ())
  8008. (5428 form-temp 5427 () ())
  8009. (5429 usages #f () ())
  8010. (5430 really-make-form 5429 () ())
  8011. (5431 usages #f () ())
  8012. (5432 usages #f () ())
  8013. (5433 topologically-sort 5432 () ())
  8014. (5434 #f 5433 () ())
  8015. (5435 #f 5434 () ())
  8016. (5436 #f 5434 () ())
  8017. (5437 usages #f () ())
  8018. (5438 maybe-make-aliased 5437 () ())
  8019. (5439 usages #f () ())
  8020. (5440 stuff-count 5439 () ())
  8021. (5441 #f 5440 () ())
  8022. (5442 usages #f () ())
  8023. (5443 sort-forms 5442 () ())
  8024. (5444 #f 5443 () ())
  8025. (5445 #f 5443 () ())
  8026. (5446 usages #f () ())
  8027. (5447 usages #f () ())
  8028. (5448 usages #f () ())
  8029. (5449 usages #f () ())
  8030. (5450 usages #f () ())
  8031. (5451 usages #f () ())
  8032. (5452 usages #f () ())
  8033. (5453 usages #f () ())
  8034. (5454 usages #f () ())
  8035. (5455 usages #f () ())
  8036. (5456 usage-incrementator 5455 () ())
  8037. (5457 #f 5456 () ())
  8038. (5458 usages #f () ())
  8039. (5459 package-usage? 5458 () ())
  8040. (5460 usages #f () ())
  8041. (5461 make-package-usage 5460 () ())
  8042. (5462 usages #f () ())
  8043. (5463 make-usage 5462 () ())
  8044. (5464 usages #f () ())
  8045. (5465 usage? 5464 () ())
  8046. (5466 usages #f () ())
  8047. (5467 usage-name-node 5466 () ())
  8048. (5468 usages #f () ())
  8049. (5469 set-reference! 5468 () ())
  8050. (5470 usages #f () ())
  8051. (5471 usage-reference-count 5470 () ())
  8052. (5472 usages #f () ())
  8053. (5473 set-operator! 5472 () ())
  8054. (5474 usages #f () ())
  8055. (5475 usage-operator-count 5474 () ())
  8056. (5476 usages #f () ())
  8057. (5477 set-assignment! 5476 () ())
  8058. (5478 usages #f () ())
  8059. (5479 usage-assignment-count 5478 () ())
  8060. (5480 usages #f () ())
  8061. (5481 really-make-usage 5480 () ())
  8062. (5482 usages #f () ())
  8063. (5483 usages #f () ())
  8064. (5484 #f 5483 () ())
  8065. (5485 usages #f () ())
  8066. (5486 #f 5485 () ())
  8067. (5487 usages #f () ())
  8068. (5488 #f 5487 () ())
  8069. (5489 usages #f () ())
  8070. (5490 #f 5489 () ())
  8071. (5491 usages #f () ())
  8072. (5492 #f 5491 () ())
  8073. (5493 usages #f () ())
  8074. (5494 #f 5493 () ())
  8075. (5495 usages #f () ())
  8076. (5496 analyze-letrec 5495 () ())
  8077. (5497 #f 5496 () ())
  8078. (5498 usages #f () ())
  8079. (5499 #f 5498 () ())
  8080. (5500 usages #f () ())
  8081. (5501 #f 5500 () ())
  8082. (5502 usages #f () ())
  8083. (5503 #f 5502 () ())
  8084. (5504 #f 5503 () ())
  8085. (5505 usages #f () ())
  8086. (5506 #f 5505 () ())
  8087. (5507 usages #f () ())
  8088. (5508 add-if-free 5507 () ())
  8089. (5509 usages #f () ())
  8090. (5510 #f 5509 () ())
  8091. (5511 usages #f () ())
  8092. (5512 usages #f () ())
  8093. (5513 usages #f () ())
  8094. (5514 usages #f () ())
  8095. (5515 usages #f () ())
  8096. (5516 usages #f () ())
  8097. (5517 nothing 5516 () ())
  8098. (5518 usages #f () ())
  8099. (5519 define-usage-analyzer 5518 () ())
  8100. (5520 usages #f () ())
  8101. (5521 #f 5520 () ())
  8102. (5522 usages #f () ())
  8103. (5523 analyze-nodes 5522 () ())
  8104. (5524 #f 5523 () ())
  8105. (5525 usages #f () ())
  8106. (5526 analyze 5525 () ())
  8107. (5527 usages #f () ())
  8108. (5528 find-node-usages 5527 () ())
  8109. (5529 #f 5528 () ())
  8110. (5530 #f 5528 () ())
  8111. (5531 usages #f () ())
  8112. (5532 maybe-update-known-type 5531 () ())
  8113. (5533 usages #f () ())
  8114. (5534 find-usages 5533 () ())
  8115. (5535 #f 5534 () ())
  8116. (5536 #f 5534 () ())
  8117. (5537 #f 5536 () ())
  8118. (5538 #f 5534 () ())
  8119. (5539 inline #f () ())
  8120. (5540 inline #f () ())
  8121. (5541 inline #f () ())
  8122. (5542 inline #f () ())
  8123. (5543 inline #f () ())
  8124. (5544 inline #f () ())
  8125. (5545 get-qualified-env 5544 () ())
  8126. (5546 inline #f () ())
  8127. (5547 qualified->name 5546 () ())
  8128. (5548 recur 5547 () ())
  8129. (5549 inline #f () ())
  8130. (5550 inline #f () ())
  8131. (5551 inline #f () ())
  8132. (5552 reconstitute-name 5551 () ())
  8133. (5553 inline #f () ())
  8134. (5554 reconstitute 5553 () ())
  8135. (5555 label 5554 () ())
  8136. (5556 inline #f () ())
  8137. (5557 make-substitution 5556 () ())
  8138. (5558 #f 5557 () ())
  8139. (5559 inline #f () ())
  8140. (5560 inline-transform 5559 () ())
  8141. (5561 #f 5560 () ())
  8142. (5562 #f 5560 () ())
  8143. (5563 inline #f () ())
  8144. (5564 remove-bindings 5563 () ())
  8145. (5565 label 5564 () ())
  8146. (5566 inline #f () ())
  8147. (5567 unused-name 5566 () ())
  8148. (5568 loop##738 5567 () ())
  8149. (5569 #f 5568 () ())
  8150. (5570 inline #f () ())
  8151. (5571 clean-lookup 5570 () ())
  8152. (5572 inline #f () ())
  8153. (5573 clean-lambda 5572 () ())
  8154. (5574 #f 5573 () ())
  8155. (5575 recur 5573 () ())
  8156. (5576 inline #f () ())
  8157. (5577 clean-node 5576 () ())
  8158. (5578 #f 5577 () ())
  8159. (5579 #f 5577 () ())
  8160. (5580 inline #f () ())
  8161. (5581 make-inline-transform 5580 () ())
  8162. (5582 #f 5581 () ())
  8163. (5583 #f 5581 () ())
  8164. (5584 loop##739 5583 () ())
  8165. (5585 for-reification #f () ())
  8166. (5586 package-define-static! 5585 () ())
  8167. (5587 for-reification #f () ())
  8168. (5588 transform 5587 () ())
  8169. (5589 for-reification #f () ())
  8170. (5590 package 5589 () ())
  8171. (5591 loop##740 5590 () ())
  8172. (5592 for-reification #f () ())
  8173. (5593 simple-interface 5592 () ())
  8174. (5594 #f 5593 () ())
  8175. (5595 for-reification #f () ())
  8176. (5596 primop 5595 () ())
  8177. (5597 for-reification #f () ())
  8178. (5598 operator 5597 () ())
  8179. (5599 types #f () ())
  8180. (5600 types #f () ())
  8181. (5601 types #f () ())
  8182. (5602 types #f () ())
  8183. (5603 types #f () ())
  8184. (5604 types #f () ())
  8185. (5605 types #f () ())
  8186. (5606 types #f () ())
  8187. (5607 types #f () ())
  8188. (5608 types #f () ())
  8189. (5609 types #f () ())
  8190. (5610 types #f () ())
  8191. (5611 types #f () ())
  8192. (5612 types #f () ())
  8193. (5613 types #f () ())
  8194. (5614 types #f () ())
  8195. (5615 types #f () ())
  8196. (5616 types #f () ())
  8197. (5617 types #f () ())
  8198. (5618 types #f () ())
  8199. (5619 types #f () ())
  8200. (5620 types #f () ())
  8201. (5621 procedure 5620 () ())
  8202. (5622 types #f () ())
  8203. (5623 types #f () ())
  8204. (5624 types #f () ())
  8205. (5625 types #f () ())
  8206. (5626 defpackage #f () ())
  8207. (5627 note-name! 5626 () ())
  8208. (5628 defpackage #f () ())
  8209. (5629 set-verify-later! 5628 () ())
  8210. (5630 defpackage #f () ())
  8211. (5631 verify-later! 5630 () ())
  8212. (5632 defpackage #f () ())
  8213. (5633 *verify-later!* 5632 () ())
  8214. (5634 defpackage #f () ())
  8215. (5635 defpackage #f () ())
  8216. (5636 loser 5635 () ())
  8217. (5637 defpackage #f () ())
  8218. (5638 make-a-package 5637 () ())
  8219. (5639 scan-package #f () ())
  8220. (5640 check-structure 5639 () ())
  8221. (5641 #f 5640 () ())
  8222. (5642 scan-package #f () ())
  8223. (5643 package-optimizer-names 5642 () ())
  8224. (5644 #f 5643 () ())
  8225. (5645 #f 5643 () ())
  8226. (5646 scan-package #f () ())
  8227. (5647 read-files 5646 () ())
  8228. (5648 #f 5647 () ())
  8229. (5649 scan-package #f () ())
  8230. (5650 package-source 5649 () ())
  8231. (5651 #f 5650 () ())
  8232. (5652 scan-package #f () ())
  8233. (5653 collect-packages 5652 () ())
  8234. (5654 recur 5653 () ())
  8235. (5655 #f 5654 () ())
  8236. (5656 compile-packages #f () ())
  8237. (5657 compile-packages #f () ())
  8238. (5658 compile-packages #f () ())
  8239. (5659 compile-packages #f () ())
  8240. (5660 compile-packages #f () ())
  8241. (5661 define-primitives 5660 () ())
  8242. (5662 #f 5661 () ())
  8243. (5663 #f 5661 () ())
  8244. (5664 make-define-primitive-node 5661 () ())
  8245. (5665 make-register-primitive 5661 () ())
  8246. (5666 #f 5661 () ())
  8247. (5667 compile-packages #f () ())
  8248. (5668 define-usual-transform 5667 () ())
  8249. (5669 compile-packages #f () ())
  8250. (5670 expand-package 5669 () ())
  8251. (5671 #f 5670 () ())
  8252. (5672 #f 5671 () ())
  8253. (5673 #f 5671 () ())
  8254. (5674 #f 5671 () ())
  8255. (5675 #f 5674 () ())
  8256. (5676 #f 5675 () ())
  8257. (5677 #f 5670 () ())
  8258. (5678 compile-packages #f () ())
  8259. (5679 compile-package 5678 () ())
  8260. (5680 module-system #f () ())
  8261. (5681 analysis #f () ())
  8262. (5682 analysis #f () ())
  8263. (5683 analysis #f () ())
  8264. (5684 analysis #f () ())
  8265. (5685 analysis #f () ())
  8266. (5686 analysis #f () ())
  8267. (5687 package-lookup-type 5686 () ())
  8268. (5688 analysis #f () ())
  8269. (5689 analysis #f () ())
  8270. (5690 require 5689 () ())
  8271. (5691 analysis #f () ())
  8272. (5692 simple-literal? 5691 () ())
  8273. (5693 analysis #f () ())
  8274. (5694 analysis #f () ())
  8275. (5695 analysis #f () ())
  8276. (5696 primitive-proc? 5695 () ())
  8277. (5697 analysis #f () ())
  8278. (5698 really-simple-call? 5697 () ())
  8279. (5699 analysis #f () ())
  8280. (5700 static-value 5699 () ())
  8281. (5701 analysis #f () ())
  8282. (5702 #f 5701 () ())
  8283. (5703 analysis #f () ())
  8284. (5704 #f 5703 () ())
  8285. (5705 loop 5704 () ())
  8286. (5706 analysis #f () ())
  8287. (5707 #f 5706 () ())
  8288. (5708 analysis #f () ())
  8289. (5709 #f 5708 () ())
  8290. (5710 analysis #f () ())
  8291. (5711 #f 5710 () ())
  8292. (5712 analysis #f () ())
  8293. (5713 #f 5712 () ())
  8294. (5714 analysis #f () ())
  8295. (5715 #f 5714 () ())
  8296. (5716 analysis #f () ())
  8297. (5717 #f 5716 () ())
  8298. (5718 analysis #f () ())
  8299. (5719 #f 5718 () ())
  8300. (5720 analysis #f () ())
  8301. (5721 #f 5720 () ())
  8302. (5722 analysis #f () ())
  8303. (5723 #f 5722 () ())
  8304. (5724 analysis #f () ())
  8305. (5725 #f 5724 () ())
  8306. (5726 analysis #f () ())
  8307. (5727 #f 5726 () ())
  8308. (5728 analysis #f () ())
  8309. (5729 define-analyzer 5728 () ())
  8310. (5730 analysis #f () ())
  8311. (5731 #f 5730 () ())
  8312. (5732 analysis #f () ())
  8313. (5733 simple-list? 5732 () ())
  8314. (5734 analysis #f () ())
  8315. (5735 simple? 5734 () ())
  8316. (5736 analysis #f () ())
  8317. (5737 analysis #f () ())
  8318. (5738 simple-lambda? 5737 () ())
  8319. (5739 #f 5738 () ())
  8320. (5740 analysis #f () ())
  8321. (5741 inlinable-rhs? 5740 () ())
  8322. (5742 analysis #f () ())
  8323. (5743 analyze-form 5742 () ())
  8324. (5744 analysis #f () ())
  8325. (5745 analyze-forms 5744 () ())
  8326. (5746 #f 5745 () ())
  8327. (5747 analysis #f () ())
  8328. (5748 #f 5747 () ())
  8329. (5749 ensures-loaded #f () ())
  8330. (5750 ensure-loaded 5749 () ())
  8331. (5751 #f 5750 () ())
  8332. (5752 #f 5751 () ())
  8333. (5753 #f 5750 () ())
  8334. (5754 #f #f () ())
  8335. (5755 #f 5754 () ())
  8336. (5756 get-location 5755 () ())
  8337. (5757 #f 5755 () ())
  8338. (5758 #f 5755 () ())
  8339. (5759 #f 5755 () ())
  8340. (5760 #f 5755 () ())
  8341. (5761 #f 5755 () ())
  8342. (5762 name 5761 () ())
  8343. (5763 #f 5762 () ())
  8344. (5764 #f 5755 () ())
  8345. (5765 loop 5764 () ())
  8346. (5766 #f 5764 () ())
  8347. (5767 #f 5764 () ())
  8348. (5768 #f 5764 () ())
  8349. (5769 #f 5764 () ())
  8350. (5770 #f 5755 () ())
  8351. (5771 mem? 5770 () ())
  8352. (5772 every? 5770 () ())
  8353. (5773 #f 5770 () ())
  8354. (5774 #f 5770 () ())
  8355. (5775 #f 5755 () ())
  8356. (5776 mem? 5775 () ())
  8357. (5777 loop##753 5775 () ())
  8358. (5778 #f 5755 () ())
  8359. (5779 #f 5755 () ())
  8360. (5780 #f 5755 () ())
  8361. (5781 #f 5755 () ())
  8362. (5782 #f 5755 () ())
  8363. (5783 #f 5755 () ())
  8364. (5784 #f 5783 () ())
  8365. (5785 #f 5755 () ())
  8366. (5786 #f 5755 () ())
  8367. (5787 #f 5755 () ())
  8368. (5788 #f 5755 () ())
  8369. (5789 #f 5755 () ())
  8370. (5790 loop 5789 () ())
  8371. (5791 #f 5789 () ())
  8372. (5792 #f 5789 () ())
  8373. (5793 #f 5789 () ())
  8374. (5794 loop 5789 () ())
  8375. (5795 #f 5789 () ())
  8376. (5796 #f 5789 () ())
  8377. (5797 #f 5789 () ())
  8378. (5798 #f 5789 () ())
  8379. (5799 #f 5755 () ())
  8380. (5800 #f 5755 () ())
  8381. (5801 #f 5755 () ())
  8382. (5802 #f 5755 () ())
  8383. (5803 #f 5755 () ())
  8384. (5804 loop 5803 () ())
  8385. (5805 #f 5755 () ())
  8386. (5806 loop 5805 () ())
  8387. (5807 #f 5755 () ())
  8388. (5808 loop 5807 () ())
  8389. (5809 #f 5755 () ())
  8390. (5810 loop 5809 () ())
  8391. (5811 #f 5755 () ())
  8392. (5812 loop 5811 () ())
  8393. (5813 #f 5755 () ())
  8394. (5814 loop 5813 () ())
  8395. (5815 #f 5755 () ())
  8396. (5816 loop 5815 () ())
  8397. (5817 #f 5755 () ())
  8398. (5818 loop 5817 () ())
  8399. (5819 #f 5755 () ())
  8400. (5820 loop 5819 () ())
  8401. (5821 #f 5755 () ())
  8402. (5822 loop 5821 () ())
  8403. (5823 #f 5755 () ())
  8404. (5824 loop 5823 () ())
  8405. (5825 #f 5755 () ())
  8406. (5826 loop 5825 () ())
  8407. (5827 #f 5755 () ())
  8408. (5828 loop 5827 () ())
  8409. (5829 #f 5755 () ())
  8410. (5830 loop 5829 () ())
  8411. (5831 #f 5755 () ())
  8412. (5832 loop 5831 () ())
  8413. (5833 #f 5755 () ())
  8414. (5834 loop 5833 () ())
  8415. (5835 #f 5755 () ())
  8416. (5836 #f 5755 () ())
  8417. (5837 #f 5755 () ())
  8418. (5838 #f 5755 () ())
  8419. (5839 #f 5755 () ())
  8420. (5840 #f 5755 () ())
  8421. (5841 #f 5755 () ())
  8422. (5842 #f 5755 () ())
  8423. (5843 #f 5755 () ())
  8424. (5844 loop 5843 () ())
  8425. (5845 #f 5755 () ())
  8426. (5846 #f 5755 () ())
  8427. (5847 #f 5755 () ())
  8428. (5848 #f 5755 () ())
  8429. (5849 #f 5755 () ())
  8430. (5850 #f 5849 () ())
  8431. (5851 #f 5755 () ())
  8432. (5852 #f 5851 () ())
  8433. (5853 #f 5851 () ())
  8434. (5854 #f 5755 () ())
  8435. (5855 #f 5755 () ())
  8436. (5856 #f 5855 () ())
  8437. (5857 parse-package-clauses 5755 () ())
  8438. (5858 loop 5857 () ())
  8439. (5859 #f 5755 () ())
  8440. (5860 #f 5859 () ())
  8441. (5861 #f 5860 () ())
  8442. (5862 #f 5859 () ())
  8443. (5863 #f 5755 () ())
  8444. (5864 #f 5755 () ())
  8445. (5865 #f 5755 () ())
  8446. (5866 loop 5865 () ())
  8447. (5867 #f 5755 () ())
  8448. (5868 #f 5755 () ())
  8449. (5869 #f 5755 () ())
  8450. (5870 #f 5755 () ())
  8451. (5871 loop 5870 () ())
  8452. (5872 #f 5870 () ())
  8453. (5873 #f 5870 () ())
  8454. (5874 #f 5755 () ())
  8455. (5875 #f 5755 () ())
  8456. (5876 #f 5755 () ())
  8457. (5877 #f #f () ())
  8458. -