initial.debug 233 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407
  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 (define . 14))
  110. (15 (primitive-procedure . 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 (lap . 14))
  119. (24 (letrec . 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 (posqual . 15))
  569. (474 (any . 15))
  570. (475 (every . 15))
  571. (476 (sublist . 15))
  572. (477 (last . 15))
  573. (478 (insert . 15))
  574. (479 (symbol-append . 15))
  575. (480 (fold . 15))
  576. (481 (fold->2 . 15))
  577. (482 (fold->3 . 15))
  578. (483 (mvlet . 15))
  579. (484 (mvlet-helper . 15))
  580. (485 (copy-vars . 15))
  581. (486 (mvlet* . 15))
  582. (487 (inexact? . 15))
  583. (488 (modulo . 15))
  584. (489 (ceiling . 15))
  585. (490 (truncate . 15))
  586. (491 (round . 15))
  587. (492 (gcd . 15))
  588. (493 (euclid . 15))
  589. (494 (lcm . 15))
  590. (495 (expt . 15))
  591. (496 (raise-to-integer-power . 15))
  592. (497 (rationalize . 15))
  593. (498 (simplest-rational . 15))
  594. (499 (*record-type-uid* . 16))
  595. (500 (*record-type* . 16))
  596. (501 (make-record-type . 16))
  597. (502 (record-type? . 16))
  598. (503 (record-type-resumer . 16))
  599. (504 (set-record-type-resumer! . 16))
  600. (505 (record-type-uid . 16))
  601. (506 (record-type-name . 16))
  602. (507 (record-type-field-names . 16))
  603. (508 (record-type-number-of-fields . 16))
  604. (509 (record-type-discloser . 16))
  605. (510 (set-record-type-discloser! . 16))
  606. (511 (record-type-fields . 16))
  607. (512 (record-field-index . 16))
  608. (513 (record-constructor . 16))
  609. (514 (record-accessor . 16))
  610. (515 (record-modifier . 16))
  611. (516 (record-predicate . 16))
  612. (517 (define-record-discloser . 16))
  613. (518 (make-default-record-discloser . 16))
  614. (519 (disclose-record . 16))
  615. (520 (define-record-resumer . 16))
  616. (521 (default-record-resumer . 16))
  617. (522 (initialize-records! . 16))
  618. (523 (resume-record . 16))
  619. (524 (:record-type . 16))
  620. (525 (define-record-type . 18))
  621. (526 (define-synchronized-record-type . 18))
  622. (527 (define-constructor . 18))
  623. (528 (define-accessors . 18))
  624. (529 (define-accessor . 18))
  625. (530 (ref-proc . 18))
  626. (531 (set-proc . 18))
  627. (532 (:simple-type . 19))
  628. (533 (really-make-simple-type . 19))
  629. (534 (simple-type-id . 19))
  630. (535 (simple-type-priority . 19))
  631. (536 (simple-type-predicate . 19))
  632. (537 (simple-type-superiors . 19))
  633. (538 (simple-type? . 19))
  634. (539 (make-simple-type . 19))
  635. (540 (compute-priority . 19))
  636. (541 (*increment* . 19))
  637. (542 (%type-priority . 19))
  638. (543 (%type-predicate . 19))
  639. (544 (%same-type? . 19))
  640. (545 (define-simple-type . 19))
  641. (546 (:syntax . 19))
  642. (547 (:values . 19))
  643. (548 (value? . 19))
  644. (549 (:value . 19))
  645. (550 (:zero . 19))
  646. (551 (:number . 19))
  647. (552 (:complex . 19))
  648. (553 (:real . 19))
  649. (554 (:rational . 19))
  650. (555 (:integer . 19))
  651. (556 (:exact-integer . 19))
  652. (557 (:boolean . 19))
  653. (558 (:symbol . 19))
  654. (559 (:char . 19))
  655. (560 (:null . 19))
  656. (561 (:pair . 19))
  657. (562 (:vector . 19))
  658. (563 (:string . 19))
  659. (564 (:procedure . 19))
  660. (565 (:input-port . 19))
  661. (566 (:output-port . 19))
  662. (567 (:eof-object . 19))
  663. (568 (:record . 19))
  664. (569 (record-type-priority . 19))
  665. (570 (:method-info . 19))
  666. (571 (really-make-method-info . 19))
  667. (572 (method-info-proc . 19))
  668. (573 (method-info-n-ary? . 19))
  669. (574 (method-info-types . 19))
  670. (575 (method-info? . 19))
  671. (576 (make-method-info . 19))
  672. (577 (empty-method-list . 19))
  673. (578 (insert-method . 19))
  674. (579 (same-applicability? . 19))
  675. (580 (every2 . 19))
  676. (581 (more-specific? . 19))
  677. (582 (more-specific-type? . 19))
  678. (583 (:method-table . 19))
  679. (584 (really-make-method-table . 19))
  680. (585 (method-table-id . 19))
  681. (586 (method-table-set-perform! . 19))
  682. (587 (method-table-get-perform . 19))
  683. (588 (make-generic . 19))
  684. (589 (method-table-prototype . 19))
  685. (590 (method-table-methods . 19))
  686. (591 (set-method-table-methods! . 19))
  687. (592 (method-table? . 19))
  688. (593 (make-method-table . 19))
  689. (594 (make-cell-for-generic . 19))
  690. (595 (add-to-method-table! . 19))
  691. (596 (set-final-method! . 19))
  692. (597 (apply-generic . 19))
  693. (598 (define-generic . 19))
  694. (599 (methods->perform . 19))
  695. (600 (last-action . 19))
  696. (601 (one-action . 19))
  697. (602 (argument-sequence-predicate . 19))
  698. (603 (check-for-next . 19))
  699. (604 (check-next . 19))
  700. (605 (method-info . 19))
  701. (606 (method-internal . 19))
  702. (607 (with-next-method . 19))
  703. (608 (define-method . 19))
  704. (609 (&add-method! . 19))
  705. (610 (add-method! . 19))
  706. (611 (&type-predicate . 19))
  707. (612 (type-predicate . 19))
  708. (613 (&type-priority . 19))
  709. (614 (type-priority . 19))
  710. (615 (&type-superiors . 19))
  711. (616 (type-superiors . 19))
  712. (617 (&same-type? . 19))
  713. (618 (same-type? . 19))
  714. (619 (:singleton . 19))
  715. (620 (singleton . 19))
  716. (621 (singleton-value . 19))
  717. (622 (compare-to . 19))
  718. (623 (&disclose . 19))
  719. (624 (disclose . 19))
  720. (625 (proc->discloser . 19))
  721. (626 (&number->string . 20))
  722. (627 (real-number->string . 20))
  723. (628 (number->string . 20))
  724. (629 (integer->string . 20))
  725. (630 (string->number . 20))
  726. (631 (&really-string->number . 20))
  727. (632 (really-string->number . 20))
  728. (633 (:integer-string . 20))
  729. (634 (set-exactness . 20))
  730. (635 (string->integer . 20))
  731. (636 (:thread . 21))
  732. (637 (make-thread . 21))
  733. (638 (thread-proposal . 21))
  734. (639 (thread-dynamic-point . 21))
  735. (640 (thread-dynamic-env . 21))
  736. (641 (get-dynamic-env . 21))
  737. (642 (set-dynamic-env! . 21))
  738. (643 (get-dynamic-point . 21))
  739. (644 (set-dynamic-point! . 21))
  740. (645 (initialize-dynamic-state! . 21))
  741. (646 (with-dynamic-env . 21))
  742. (647 (empty-dynamic-env . 21))
  743. (648 (:fluid . 21))
  744. (649 (make-fluid . 21))
  745. (650 (fluid-top-level-value . 21))
  746. (651 (set-fluid-top-level-value! . 21))
  747. (652 (fluid . 21))
  748. (653 (set-fluid! . 21))
  749. (654 (let-fluid . 21))
  750. (655 (let-fluids . 21))
  751. (656 (fluid-cell-ref . 21))
  752. (657 (fluid-cell-set! . 21))
  753. (658 (define-enumeration . 38))
  754. (659 (components . 38))
  755. (660 (enum . 38))
  756. (661 (enumerand->name . 38))
  757. (662 (name->enumerand . 38))
  758. (663 (lookup-enumerand . 38))
  759. (664 (architecture-version . 39))
  760. (665 (bits-used-per-byte . 39))
  761. (666 (byte-limit . 39))
  762. (667 (two-byte-limit . 39))
  763. (668 (define-instruction-set . 39))
  764. (669 (op . 39))
  765. (670 (op-enumeration . 39))
  766. (671 (op-count . 39))
  767. (672 (opcode-arg-specs . 39))
  768. (673 (interrupt . 39))
  769. (674 (interrupt-enumeration . 39))
  770. (675 (interrupt-count . 39))
  771. (676 (exception . 39))
  772. (677 (exception-enumeration . 39))
  773. (678 (exception-count . 39))
  774. (679 (current-port-marker . 39))
  775. (680 (current-port-marker-enumeration . 39))
  776. (681 (current-port-marker-count . 39))
  777. (682 (maximum-stack-args . 39))
  778. (683 (*last-protocol* . 39))
  779. (684 (next-protocol . 39))
  780. (685 (two-byte-nargs-protocol . 39))
  781. (686 (two-byte-nargs+list-protocol . 39))
  782. (687 (ignore-values-protocol . 39))
  783. (688 (big-stack-protocol . 39))
  784. (689 (args+nargs-protocol . 39))
  785. (690 (nary-dispatch-protocol . 39))
  786. (691 (call-with-values-protocol . 39))
  787. (692 (bottom-of-stack-protocol . 39))
  788. (693 (native-protocol-mask . 39))
  789. (694 (maximum-external-call-args . 39))
  790. (695 (default-stack-space . 39))
  791. (696 (continuation-stack-size . 39))
  792. (697 (available-stack-space . 39))
  793. (698 (continuation-cells . 39))
  794. (699 (continuation-pc-index . 39))
  795. (700 (continuation-code-index . 39))
  796. (701 (continuation-cont-index . 39))
  797. (702 (gc-mask-size-offset . 39))
  798. (703 (gc-mask-offset . 39))
  799. (704 (exception-continuation-cells . 39))
  800. (705 (exception-cont-size-index . 39))
  801. (706 (exception-cont-pc-index . 39))
  802. (707 (exception-cont-code-index . 39))
  803. (708 (exception-cont-exception-index . 39))
  804. (709 (exception-cont-instruction-size-index . 39))
  805. (710 (time-option . 39))
  806. (711 (time-option-enumeration . 39))
  807. (712 (time-option-count . 39))
  808. (713 (memory-status-option . 39))
  809. (714 (memory-status-option-enumeration . 39))
  810. (715 (memory-status-option-count . 39))
  811. (716 (channel-status-option . 39))
  812. (717 (channel-status-option-enumeration . 39))
  813. (718 (channel-status-option-count . 39))
  814. (719 (port-status-options . 39))
  815. (720 (port-status-options-enumeration . 39))
  816. (721 (port-status-options-count . 39))
  817. (722 (channel-parameter-option . 39))
  818. (723 (channel-parameter-option-enumeration . 39))
  819. (724 (channel-parameter-option-count . 39))
  820. (725 (text-encoding-option . 39))
  821. (726 (text-encoding-option-enumeration . 39))
  822. (727 (text-encoding-option-count . 39))
  823. (728 (system-parameter-option . 39))
  824. (729 (system-parameter-option-enumeration . 39))
  825. (730 (system-parameter-option-count . 39))
  826. (731 (stob . 39))
  827. (732 (stob-enumeration . 39))
  828. (733 (stob-count . 39))
  829. (734 (least-b-vector-type . 39))
  830. (735 (stob-data . 39))
  831. (736 (call-atomically . 45))
  832. (737 (call-atomically! . 45))
  833. (738 (call-ensuring-atomicity . 45))
  834. (739 (call-ensuring-atomicity! . 45))
  835. (740 (atomically . 45))
  836. (741 (atomically! . 45))
  837. (742 (ensure-atomicity . 45))
  838. (743 (ensure-atomicity! . 45))
  839. (744 (with-new-proposal . 45))
  840. (745 (remove-current-proposal! . 45))
  841. (746 (invalidate-current-proposal! . 45))
  842. (747 (j-random-pair . 45))
  843. (748 (:queue . 49))
  844. (749 (really-make-queue . 49))
  845. (750 (queue? . 49))
  846. (751 (queue-tail . 49))
  847. (752 (set-queue-tail! . 49))
  848. (753 (real-queue-head . 49))
  849. (754 (set-queue-head! . 49))
  850. (755 (queue-uid . 49))
  851. (756 (next-uid . 49))
  852. (757 (make-queue . 49))
  853. (758 (queue-empty? . 49))
  854. (759 (enqueue! . 49))
  855. (760 (queue-head . 49))
  856. (761 (dequeue! . 49))
  857. (762 (maybe-dequeue! . 49))
  858. (763 (empty-queue! . 49))
  859. (764 (on-queue? . 49))
  860. (765 (delete-from-queue! . 49))
  861. (766 (delete-from-queue-if! . 49))
  862. (767 (queue->list . 49))
  863. (768 (list->queue . 49))
  864. (769 (queue-length . 49))
  865. (770 (*condition-types* . 30))
  866. (771 (condition-supertypes . 30))
  867. (772 (define-condition-type . 30))
  868. (773 (*condition-decoder-alist* . 30))
  869. (774 (decode-condition . 30))
  870. (775 (define-condition-decoder . 30))
  871. (776 (condition-type . 30))
  872. (777 (condition-stuff . 30))
  873. (778 (condition-predicate . 30))
  874. (779 (error? . 30))
  875. (780 (call-error? . 30))
  876. (781 (read-error? . 30))
  877. (782 (vm-exception? . 30))
  878. (783 (vm-exception-opcode . 30))
  879. (784 (vm-exception-reason . 30))
  880. (785 (vm-exception-arguments . 30))
  881. (786 (make-vm-exception . 30))
  882. (787 (i/o-error? . 30))
  883. (788 (i/o-error-status . 30))
  884. (789 (i/o-error-message . 30))
  885. (790 (i/o-error-operation . 30))
  886. (791 (i/o-error-arguments . 30))
  887. (792 (make-i/o-error . 30))
  888. (793 (decoding-error? . 30))
  889. (794 (make-decoding-error . 30))
  890. (795 (decoding-error-encoding-name . 30))
  891. (796 (decoding-error-message . 30))
  892. (797 (decoding-error-bytes . 30))
  893. (798 (decoding-error-start . 30))
  894. (799 (warning? . 30))
  895. (800 (syntax-error? . 30))
  896. (801 (note? . 30))
  897. (802 (interrupt? . 30))
  898. (803 (*session-data-initializers* . 23))
  899. (804 (make-session-data-slot! . 23))
  900. (805 (session-data-ref . 23))
  901. (806 (session-data-set! . 23))
  902. (807 (initialize-session-data! . 23))
  903. (808 (initialize-interrupts! . 43))
  904. (809 (interrupt-handlers . 43))
  905. (810 (set-interrupt-handler! . 43))
  906. (811 (get-interrupt-handler . 43))
  907. (812 (no-interrupts . 43))
  908. (813 (all-interrupts . 43))
  909. (814 (with-interrupts-inhibited . 43))
  910. (815 (with-interrupts-allowed . 43))
  911. (816 (disable-interrupts! . 43))
  912. (817 (enable-interrupts! . 43))
  913. (818 (with-interrupts . 43))
  914. (819 (enabled-interrupts . 43))
  915. (820 (*post-gc-procedures* . 43))
  916. (821 (call-after-gc! . 43))
  917. (822 (post-gc-handler . 43))
  918. (823 (required-post-gc-space . 43))
  919. (824 (space-shortage-handler . 43))
  920. (825 (call-before-heap-overflow! . 43))
  921. (826 (dynamic-wind . 22))
  922. (827 (call-with-current-continuation . 22))
  923. (828 (continuation->procedure . 22))
  924. (829 (:point . 22))
  925. (830 (make-point . 22))
  926. (831 (point-parent . 22))
  927. (832 (point-dynamic-env . 22))
  928. (833 (point-out . 22))
  929. (834 (point-in . 22))
  930. (835 (point-depth . 22))
  931. (836 (travel-to-point! . 22))
  932. (837 (define-vm-exception-handler . 41))
  933. (838 (signal-condition . 41))
  934. (839 (signal-vm-exception . 41))
  935. (840 (vm-exception-handlers . 41))
  936. (841 (initialize-vm-exceptions! . 41))
  937. (842 (extend-opcode! . 41))
  938. (843 (template-overhead . 35))
  939. (844 (template-code . 35))
  940. (845 (template-byte-code . 35))
  941. (846 (template-info . 35))
  942. (847 (template-package-id . 35))
  943. (848 (set-template-code! . 35))
  944. (849 (set-template-byte-code! . 35))
  945. (850 (set-template-info! . 35))
  946. (851 (set-template-package-id! . 35))
  947. (852 (:closure . 37))
  948. (853 (:code-vector . 37))
  949. (854 (:location . 37))
  950. (855 (:cell . 37))
  951. (856 (:template . 37))
  952. (857 (:channel . 37))
  953. (858 (:port . 37))
  954. (859 (:double . 37))
  955. (860 (:weak-pointer . 37))
  956. (861 (:shared-binding . 37))
  957. (862 (make-ref . 36))
  958. (863 (continuation-cont . 36))
  959. (864 (real-continuation-code . 36))
  960. (865 (real-continuation-pc . 36))
  961. (866 (vm-exception-cont-pc . 36))
  962. (867 (vm-exception-cont-code . 36))
  963. (868 (vm-exception-continuation-exception . 36))
  964. (869 (vm-exception-continuation? . 36))
  965. (870 (call-with-values-continuation? . 36))
  966. (871 (continuation-pc . 36))
  967. (872 (continuation-code . 36))
  968. (873 (continuation-template . 36))
  969. (874 (continuation-arg . 36))
  970. (875 (continuation-arg-count . 36))
  971. (876 (:continuation . 36))
  972. (877 (continuation-preview . 36))
  973. (878 (really-signal-condition . 42))
  974. (879 (with-handler . 42))
  975. (880 ($exception-handlers . 42))
  976. (881 (initialize-exceptions! . 42))
  977. (882 (last-resort-exception-handler . 42))
  978. (883 (report-utter-lossage . 42))
  979. (884 (ignore-errors . 42))
  980. (885 (report-errors-as-warnings . 42))
  981. (886 (with-exception-handler . 42))
  982. (887 (raise . 42))
  983. (888 (guard . 42))
  984. (889 (guard-aux . 42))
  985. (890 (:thread . 44))
  986. (891 (really-make-thread . 44))
  987. (892 (thread-name . 44))
  988. (893 (thread-uid . 44))
  989. (894 (thread-cell . 44))
  990. (895 (set-thread-cell! . 44))
  991. (896 (thread-data . 44))
  992. (897 (set-thread-data! . 44))
  993. (898 (thread-events . 44))
  994. (899 (set-thread-events! . 44))
  995. (900 (thread-current-task . 44))
  996. (901 (set-thread-current-task! . 44))
  997. (902 (thread-scheduler . 44))
  998. (903 (set-thread-scheduler! . 44))
  999. (904 (thread-arguments . 44))
  1000. (905 (set-thread-arguments! . 44))
  1001. (906 (thread-continuation . 44))
  1002. (907 (set-thread-continuation! . 44))
  1003. (908 (thread-time . 44))
  1004. (909 (set-thread-time! . 44))
  1005. (910 (thread-proposal . 44))
  1006. (911 (thread-dynamic-point . 44))
  1007. (912 (set-thread-dynamic-point! . 44))
  1008. (913 (thread-dynamic-env . 44))
  1009. (914 (set-thread-dynamic-env! . 44))
  1010. (915 (thread? . 44))
  1011. (916 (*thread-uid* . 44))
  1012. (917 (make-thread . 44))
  1013. (918 (thread-top-level . 44))
  1014. (919 (thread-uid->thread . 44))
  1015. (920 (all-threads . 44))
  1016. (921 (add-event! . 44))
  1017. (922 (next-event! . 44))
  1018. (923 (thunk->continuation . 44))
  1019. (924 (compose-continuation . 44))
  1020. (925 (maybe-dequeue-thread! . 44))
  1021. (926 (thread-queue-empty? . 44))
  1022. (927 (event-type . 44))
  1023. (928 (event-type-enumeration . 44))
  1024. (929 (event-type-count . 44))
  1025. (930 (run . 44))
  1026. (931 (find-and-run-next-thread . 44))
  1027. (932 (debit-thread-times-and-run! . 44))
  1028. (933 (handle-timer-interrupt . 44))
  1029. (934 (run-next-thread . 44))
  1030. (935 (min . 44))
  1031. (936 (switch-to-thread . 44))
  1032. (937 (run-thread . 44))
  1033. (938 (suspend . 44))
  1034. (939 (suspend-to . 44))
  1035. (940 (debit-down! . 44))
  1036. (941 (exit . 44))
  1037. (942 (wait . 44))
  1038. (943 (waiting? . 44))
  1039. (944 (relinquish-timeslice . 44))
  1040. (945 (block . 44))
  1041. (946 (maybe-commit-and-block . 44))
  1042. (947 (maybe-commit-and-block-on-queue . 44))
  1043. (948 (upcall . 44))
  1044. (949 (propogate-upcall . 44))
  1045. (950 (kill-thread! . 44))
  1046. (951 (terminate-thread! . 44))
  1047. (952 (interrupt-thread . 44))
  1048. (953 (get-next-event! . 44))
  1049. (954 (event-pending? . 44))
  1050. (955 (schedule-event . 44))
  1051. (956 (maybe-suspend . 44))
  1052. (957 (really-schedule-event . 44))
  1053. (958 (schedule-wakeup . 44))
  1054. (959 (show-running . 44))
  1055. (960 (running? . 44))
  1056. (961 (spawn . 44))
  1057. (962 (spawn-on-root . 44))
  1058. (963 (spawn-on-scheduler . 44))
  1059. (964 (make-ready . 44))
  1060. (965 (clear-thread-cell! . 44))
  1061. (966 (maybe-commit-and-make-ready . 44))
  1062. (967 (maybe-commit-no-interrupts . 44))
  1063. (968 (make-threads-ready . 44))
  1064. (969 (schedule-interrupt! . 44))
  1065. (970 (cancel-timer-interrupt! . 44))
  1066. (971 (interrupt-timer-time . 44))
  1067. (972 (real-time . 44))
  1068. (973 (with-threads . 44))
  1069. (974 (start-multitasking . 44))
  1070. (975 (deadlock? . 44))
  1071. (976 (terminate? . 44))
  1072. (977 (terminate-current-thread . 44))
  1073. (978 (root-scheduler-slot . 44))
  1074. (979 (root-scheduler . 44))
  1075. (980 (max2 . 44))
  1076. (981 (sleep . 44))
  1077. (982 (coerce-to-nonnegative-integer . 44))
  1078. (983 (register-dozer-unsafe! . 44))
  1079. (984 (register-dozer! . 44))
  1080. (985 (dozers . 44))
  1081. (986 (insert . 44))
  1082. (987 (wake-some-threads . 44))
  1083. (988 (enum-case . 48))
  1084. (989 (:text-codec . 24))
  1085. (990 (really-make-text-codec . 24))
  1086. (991 (text-codec-decode-char-proc . 24))
  1087. (992 (text-codec-encode-char-proc . 24))
  1088. (993 (text-codec-builtin-code . 24))
  1089. (994 (text-codec-names . 24))
  1090. (995 (text-codec? . 24))
  1091. (996 (make-builtin-text-codec . 24))
  1092. (997 (make-text-codec . 24))
  1093. (998 (*builtin-text-codecs* . 24))
  1094. (999 (spec->text-codec . 24))
  1095. (1000 (text-codec->spec . 24))
  1096. (1001 (*text-codecs* . 24))
  1097. (1002 (register-text-codec! . 24))
  1098. (1003 (find-text-codec . 24))
  1099. (1004 (define-text-codec . 24))
  1100. (1005 (define-builtin-text-codec . 24))
  1101. (1006 (null-text-codec . 24))
  1102. (1007 (us-ascii-codec . 24))
  1103. (1008 (latin-1-codec . 24))
  1104. (1009 (utf-8-codec . 24))
  1105. (1010 (utf-16le-codec . 24))
  1106. (1011 (utf-16be-codec . 24))
  1107. (1012 (utf-32le-codec . 24))
  1108. (1013 (utf-32be-codec . 24))
  1109. (1014 (:port-handler . 27))
  1110. (1015 (make-port-handler . 27))
  1111. (1016 (port-handler-force . 27))
  1112. (1017 (port-handler-ready? . 27))
  1113. (1018 (port-handler-block . 27))
  1114. (1019 (port-handler-char . 27))
  1115. (1020 (port-handler-byte . 27))
  1116. (1021 (port-handler-close . 27))
  1117. (1022 (port-handler-discloser . 27))
  1118. (1023 (port-handler? . 27))
  1119. (1024 (disclose-port . 27))
  1120. (1025 (initialize-i/o-handlers! . 27))
  1121. (1026 (one-arg-proc->handler . 27))
  1122. (1027 (two-arg-proc->handler . 27))
  1123. (1028 (real-char-ready? . 27))
  1124. (1029 (real-byte-ready? . 27))
  1125. (1030 (read-block . 27))
  1126. (1031 (write-block . 27))
  1127. (1032 (write-string . 27))
  1128. (1033 (output-port-ready? . 27))
  1129. (1034 (force-output . 27))
  1130. (1035 (force-output-if-open . 27))
  1131. (1036 (close-input-port . 27))
  1132. (1037 (close-output-port . 27))
  1133. (1038 (port-text-codec . 27))
  1134. (1039 (set-port-text-codec! . 27))
  1135. (1040 (okay-limits? . 27))
  1136. (1041 (open-port? . 27))
  1137. (1042 (open-port-mask . 27))
  1138. (1043 (input-port-mask . 27))
  1139. (1044 (open-input-port-mask . 27))
  1140. (1045 (open-input-port-status . 27))
  1141. (1046 (open-input-port? . 27))
  1142. (1047 (make-input-port-closed! . 27))
  1143. (1048 (output-port-mask . 27))
  1144. (1049 (open-output-port-mask . 27))
  1145. (1050 (open-output-port-status . 27))
  1146. (1051 (open-output-port? . 27))
  1147. (1052 (make-output-port-closed! . 27))
  1148. (1053 (make-unbuffered-output-port . 27))
  1149. (1054 (make-one-byte-handler . 27))
  1150. (1055 (make-one-char-handler . 27))
  1151. (1056 (cr . 27))
  1152. (1057 (make-write-block-handler . 27))
  1153. (1058 (make-unbuffered-output-port-handler . 27))
  1154. (1059 (null-output-port-handler . 27))
  1155. (1060 (null-output-buffer . 27))
  1156. (1061 (make-null-output-port . 27))
  1157. (1062 (make-buffered-input-port . 27))
  1158. (1063 (make-buffered-output-port . 27))
  1159. (1064 (okay-buffer? . 27))
  1160. (1065 (make-buffered-input-port-handler . 27))
  1161. (1066 (note-buffer-reuse! . 27))
  1162. (1067 (check-buffer-timestamp! . 27))
  1163. (1068 (port-flushed . 27))
  1164. (1069 (set-port-flushed! . 27))
  1165. (1070 (make-one-byte-input . 27))
  1166. (1071 (make-one-char-input . 27))
  1167. (1072 (make-byte-ready? . 27))
  1168. (1073 (make-read-block . 27))
  1169. (1074 (get-available-bytes! . 27))
  1170. (1075 (make-buffered-output-port-handler . 27))
  1171. (1076 (make-closer . 27))
  1172. (1077 (make-one-byte-output . 27))
  1173. (1078 (make-one-char-output . 27))
  1174. (1079 (make-write-block . 27))
  1175. (1080 (copy-bytes-out! . 27))
  1176. (1081 (make-forcer . 27))
  1177. (1082 (default-buffer-size . 27))
  1178. (1083 (flush-these-ports . 27))
  1179. (1084 (periodically-force-output! . 27))
  1180. (1085 (output-port-forcers . 27))
  1181. (1086 (periodically-flushed-ports . 27))
  1182. (1087 (make-forcing-thunk . 27))
  1183. (1088 (call-to-flush! . 27))
  1184. (1089 (call-to-flush . 27))
  1185. (1090 ($current-input-port . 27))
  1186. (1091 ($current-output-port . 27))
  1187. (1092 ($current-error-port . 27))
  1188. (1093 ($current-noise-port . 27))
  1189. (1094 (current-input-port . 27))
  1190. (1095 (current-output-port . 27))
  1191. (1096 (current-error-port . 27))
  1192. (1097 (current-noise-port . 27))
  1193. (1098 (initialize-i/o . 27))
  1194. (1099 (with-current-ports . 27))
  1195. (1100 (call-with-current-input-port . 27))
  1196. (1101 (call-with-current-output-port . 27))
  1197. (1102 (call-with-current-noise-port . 27))
  1198. (1103 (silently . 27))
  1199. (1104 (newline . 27))
  1200. (1105 (byte-ready? . 27))
  1201. (1106 (char-ready? . 27))
  1202. (1107 (output-port-option . 27))
  1203. (1108 (input-port-option . 27))
  1204. (1109 (write . 31))
  1205. (1110 (recurring-write . 31))
  1206. (1111 (write-boolean . 31))
  1207. (1112 (write-number . 31))
  1208. (1113 (write-char-literal . 31))
  1209. (1114 (*nul* . 31))
  1210. (1115 (*alarm* . 31))
  1211. (1116 (*backspace* . 31))
  1212. (1117 (*tab* . 31))
  1213. (1118 (*linefeed* . 31))
  1214. (1119 (*vtab* . 31))
  1215. (1120 (*page* . 31))
  1216. (1121 (*return* . 31))
  1217. (1122 (*escape* . 31))
  1218. (1123 (*rubout* . 31))
  1219. (1124 (*char-name-table* . 31))
  1220. (1125 (character-name . 31))
  1221. (1126 (write-string-literal . 31))
  1222. (1127 (write-list . 31))
  1223. (1128 (quotation? . 31))
  1224. (1129 (write-vector . 31))
  1225. (1130 (write-other . 31))
  1226. (1131 (display-type-name . 31))
  1227. (1132 (display . 31))
  1228. (1133 (read . 32))
  1229. (1134 (sub-read-carefully . 32))
  1230. (1135 (reader-token-marker . 32))
  1231. (1136 (make-reader-token . 32))
  1232. (1137 (reader-token? . 32))
  1233. (1138 (close-paren . 32))
  1234. (1139 (dot . 32))
  1235. (1140 (*dispatch-table-limit* . 32))
  1236. (1141 (read-dispatch-vector . 32))
  1237. (1142 (read-terminating?-vector . 32))
  1238. (1143 (set-standard-syntax! . 32))
  1239. (1144 (sub-read . 32))
  1240. (1145 (sub-read-constituent . 32))
  1241. (1146 (set-standard-read-macro! . 32))
  1242. (1147 (sub-read-list . 32))
  1243. (1148 (*nul* . 32))
  1244. (1149 (*alarm* . 32))
  1245. (1150 (*backspace* . 32))
  1246. (1151 (*tab* . 32))
  1247. (1152 (*linefeed* . 32))
  1248. (1153 (*vtab* . 32))
  1249. (1154 (*page* . 32))
  1250. (1155 (*return* . 32))
  1251. (1156 (*escape* . 32))
  1252. (1157 (*rubout* . 32))
  1253. (1158 (decode-escape . 32))
  1254. (1159 (char-semicolon? . 32))
  1255. (1160 (decode-hex-digits . 32))
  1256. (1161 (char-hex-digit? . 32))
  1257. (1162 (gobble-line . 32))
  1258. (1163 (*sharp-macros* . 32))
  1259. (1164 (define-sharp-macro . 32))
  1260. (1165 (*char-name-table* . 32))
  1261. (1166 (char-scalar-value-literal-delimiter? . 32))
  1262. (1167 (proper-list? . 32))
  1263. (1168 (sub-read-token . 32))
  1264. (1169 (parse-token . 32))
  1265. (1170 (strange-symbol-names . 32))
  1266. (1171 (delimiter? . 32))
  1267. (1172 (char-unicode-whitespace? . 32))
  1268. (1173 (preferred-case . 32))
  1269. (1174 (reading-error . 32))
  1270. (1175 (binary-search . 32))
  1271. (1176 (*non-symbol-constituents-above-127* . 32))
  1272. (1177 (*whitespaces* . 32))
  1273. (1178 (:condvar . 50))
  1274. (1179 (really-make-condvar . 50))
  1275. (1180 (condvar? . 50))
  1276. (1181 (condvar-id . 50))
  1277. (1182 (condvar-value . 50))
  1278. (1183 (set-condvar-value! . 50))
  1279. (1184 (condvar-has-value? . 50))
  1280. (1185 (set-condvar-has-value?! . 50))
  1281. (1186 (condvar-queue . 50))
  1282. (1187 (make-condvar . 50))
  1283. (1188 (maybe-commit-and-wait-for-condvar . 50))
  1284. (1189 (maybe-commit-and-set-condvar! . 50))
  1285. (1190 (condvar-has-waiters? . 50))
  1286. (1191 (channel-maybe-commit-and-read . 28))
  1287. (1192 (channel-maybe-commit-and-write . 28))
  1288. (1193 (note-channel-result! . 28))
  1289. (1194 (channel-write . 28))
  1290. (1195 (channel-maybe-commit-and-close . 28))
  1291. (1196 (input-channel? . 28))
  1292. (1197 (initialize-channel-i/o! . 28))
  1293. (1198 (i/o-completion-handler . 28))
  1294. (1199 (waiting-for-i/o? . 28))
  1295. (1200 (channel-wait-condvars-slot . 28))
  1296. (1201 (channel-condvars . 28))
  1297. (1202 (set-channel-condvars! . 28))
  1298. (1203 (add-channel-condvar! . 28))
  1299. (1204 (wait-for-channel . 28))
  1300. (1205 (fetch-channel-condvar! . 28))
  1301. (1206 (abort-unwanted-reads! . 28))
  1302. (1207 (define-coding-procs . 25))
  1303. (1208 (char-encoding-length/encoding . 25))
  1304. (1209 (string-encoding-length/encoding . 25))
  1305. (1210 (encode-char/encoding . 25))
  1306. (1211 (encode-string/encoding . 25))
  1307. (1212 (string->bytes-n/encoding . 25))
  1308. (1213 (string->bytes/encoding . 25))
  1309. (1214 (decode-char/encoding . 25))
  1310. (1215 (bytes-string-size/encoding . 25))
  1311. (1216 (decode-string/encoding . 25))
  1312. (1217 (bytes->string/encoding . 25))
  1313. (1218 (bytes->string-n/encoding . 25))
  1314. (1219 (primitive-encode-char/text-codec . 25))
  1315. (1220 (primitive-decode-char/text-codec . 25))
  1316. (1221 (char-encoding-length/text-codec . 25))
  1317. (1222 (string-encoding-length/text-codec . 25))
  1318. (1223 (encode-char/text-codec . 25))
  1319. (1224 (encode-string/text-codec . 25))
  1320. (1225 (string->bytes-n/text-codec . 25))
  1321. (1226 (string->bytes/text-codec . 25))
  1322. (1227 (decode-char/text-codec . 25))
  1323. (1228 (bytes-string-size/text-codec . 25))
  1324. (1229 (decode-string/text-codec . 25))
  1325. (1230 (bytes->string/text-codec . 25))
  1326. (1231 (bytes->string-n/text-codec . 25))
  1327. (1232 (define-text-codec-proc . 25))
  1328. (1233 (char-encoding-length . 25))
  1329. (1234 (string-encoding-length . 25))
  1330. (1235 (encode-char . 25))
  1331. (1236 (encode-string . 25))
  1332. (1237 (string->bytes-n . 25))
  1333. (1238 (string->bytes . 25))
  1334. (1239 (decode-char . 25))
  1335. (1240 (bytes-string-size . 25))
  1336. (1241 (decode-string . 25))
  1337. (1242 (bytes->string . 25))
  1338. (1243 (bytes->string-n . 25))
  1339. (1244 (empty-buffer . 25))
  1340. (1245 (encoding-status . 25))
  1341. (1246 (encoding-status-enumeration . 25))
  1342. (1247 (encoding-status-count . 25))
  1343. (1248 (decoding-error . 25))
  1344. (1249 (decoding-status . 25))
  1345. (1250 (decoding-status-enumeration . 25))
  1346. (1251 (decoding-status-count . 25))
  1347. (1252 (char-encoding-length/utf-8 . 25))
  1348. (1253 (string-encoding-length/utf-8 . 25))
  1349. (1254 (encode-char/utf-8 . 25))
  1350. (1255 (encode-string/utf-8 . 25))
  1351. (1256 (string->utf-8-n . 25))
  1352. (1257 (string->utf-8 . 25))
  1353. (1258 (decode-char/utf-8 . 25))
  1354. (1259 (bytes-string-size/utf-8 . 25))
  1355. (1260 (decode-string/utf-8 . 25))
  1356. (1261 (utf-8->string . 25))
  1357. (1262 (utf-8->string-n . 25))
  1358. (1263 (:os-string . 26))
  1359. (1264 (make-os-string . 26))
  1360. (1265 (os-string-byte-vector . 26))
  1361. (1266 (set-os-string-byte-vector! . 26))
  1362. (1267 (os-string-string . 26))
  1363. (1268 (set-os-string-string! . 26))
  1364. (1269 (os-string-text-codec . 26))
  1365. (1270 (os-string? . 26))
  1366. (1271 (*initial-os-string-text-codec* . 26))
  1367. (1272 (initialize-os-string-text-codec! . 26))
  1368. (1273 ($os-string-text-codec . 26))
  1369. (1274 (current-os-string-text-codec . 26))
  1370. (1275 (call-with-os-string-text-codec . 26))
  1371. (1276 (string->os-string . 26))
  1372. (1277 (byte-vector->os-string . 26))
  1373. (1278 (os-string->byte-vector . 26))
  1374. (1279 (os-string->string . 26))
  1375. (1280 (x->os-string . 26))
  1376. (1281 (byte-vector-copy . 26))
  1377. (1282 (:channel-cell . 29))
  1378. (1283 (really-make-channel-cell . 29))
  1379. (1284 (channel-cell? . 29))
  1380. (1285 (channel-cell-sent . 29))
  1381. (1286 (set-channel-cell-sent! . 29))
  1382. (1287 (channel-cell-in-use? . 29))
  1383. (1288 (set-channel-cell-in-use?! . 29))
  1384. (1289 (channel-cell-condvar . 29))
  1385. (1290 (channel-cell-closer . 29))
  1386. (1291 (channel-cell-ref . 29))
  1387. (1292 (make-channel-cell . 29))
  1388. (1293 (port->channel . 29))
  1389. (1294 (port-channel-closer . 29))
  1390. (1295 (fill-buffer! . 29))
  1391. (1296 (channel-port-ready? . 29))
  1392. (1297 (input-channel-handler . 29))
  1393. (1298 (input-channel->port . 29))
  1394. (1299 (input-channel+closer->port . 29))
  1395. (1300 (real-input-channel->port . 29))
  1396. (1301 (empty-buffer! . 29))
  1397. (1302 (send-some . 29))
  1398. (1303 (output-channel-handler . 29))
  1399. (1304 (output-channel->port . 29))
  1400. (1305 (output-channel+closer->port . 29))
  1401. (1306 (real-output-channel->port . 29))
  1402. (1307 (maybe-open-file . 29))
  1403. (1308 (really-open-input-file . 29))
  1404. (1309 (open-input-file . 29))
  1405. (1310 (really-open-output-file . 29))
  1406. (1311 (open-output-file . 29))
  1407. (1312 (call-with-input-file . 29))
  1408. (1313 (call-with-output-file . 29))
  1409. (1314 (with-input-from-file . 29))
  1410. (1315 (with-output-to-file . 29))
  1411. (1316 (force-channel-output-ports! . 29))
  1412. (1317 (unbuffered-output-handler . 29))
  1413. (1318 (channel-buffer-size . 29))
  1414. (1319 (channel-crlf? . 29))
  1415. (1320 (:table . 82))
  1416. (1321 (really-make-table . 82))
  1417. (1322 (table-set!-procedure . 82))
  1418. (1323 (set-table-set!-procedure! . 82))
  1419. (1324 (table-ref-procedure . 82))
  1420. (1325 (set-table-ref-procedure! . 82))
  1421. (1326 (table-data . 82))
  1422. (1327 (set-table-data! . 82))
  1423. (1328 (table-size . 82))
  1424. (1329 (set-table-size! . 82))
  1425. (1330 (table? . 82))
  1426. (1331 (table-ref . 82))
  1427. (1332 (table-set! . 82))
  1428. (1333 (linear-table-size-limit . 82))
  1429. (1334 (next-table-size . 82))
  1430. (1335 (make-table-maker . 82))
  1431. (1336 (assoc->table-maker . 82))
  1432. (1337 (null-entry . 82))
  1433. (1338 (new-entry . 82))
  1434. (1339 (entry-value . 82))
  1435. (1340 (entry-key . 82))
  1436. (1341 (set-entry-value! . 82))
  1437. (1342 (delete-entry! . 82))
  1438. (1343 (make-assoc . 82))
  1439. (1344 (make-linear-table-ref . 82))
  1440. (1345 (make-linear-table-set! . 82))
  1441. (1346 (make->hash-table . 82))
  1442. (1347 (make-hash-table-ref . 82))
  1443. (1348 (make-hash-table-set! . 82))
  1444. (1349 (expand-hash-table! . 82))
  1445. (1350 (table-enter-alist! . 82))
  1446. (1351 (table-expand-table! . 82))
  1447. (1352 (table-walk . 82))
  1448. (1353 (really-table-walk . 82))
  1449. (1354 (alist-walk . 82))
  1450. (1355 (make-table-immutable! . 82))
  1451. (1356 (table->entry-list . 82))
  1452. (1357 (default-hash-function . 82))
  1453. (1358 (eqv?-assoc . 82))
  1454. (1359 (default-table-assoc . 82))
  1455. (1360 (symbol-hash . 82))
  1456. (1361 (make-table . 82))
  1457. (1362 (make-string-table . 82))
  1458. (1363 (make-symbol-table . 82))
  1459. (1364 (make-integer-table . 82))
  1460. (1365 (make-population . 52))
  1461. (1366 (add-to-population! . 52))
  1462. (1367 (weak-memq . 52))
  1463. (1368 (population-reduce . 52))
  1464. (1369 (population->list . 52))
  1465. (1370 (walk-population . 52))
  1466. (1371 (:meta-type . 53))
  1467. (1372 (really-make-type . 53))
  1468. (1373 (type-info . 53))
  1469. (1374 (type-more . 53))
  1470. (1375 (type-mask . 53))
  1471. (1376 (meta-type? . 53))
  1472. (1377 (make-type . 53))
  1473. (1378 (name->type-table . 53))
  1474. (1379 (mask->name-table . 53))
  1475. (1380 (name->type . 53))
  1476. (1381 (set-type-name! . 53))
  1477. (1382 (*mask* . 53))
  1478. (1383 (new-type-bit . 53))
  1479. (1384 (mask->type . 53))
  1480. (1385 (bottom-type . 53))
  1481. (1386 (error-type . 53))
  1482. (1387 (bottom-type? . 53))
  1483. (1388 (new-atomic-type . 53))
  1484. (1389 (named-atomic-type . 53))
  1485. (1390 (syntax-type . 53))
  1486. (1391 (other-static-type . 53))
  1487. (1392 (empty-rail-type . 53))
  1488. (1393 (rail-type . 53))
  1489. (1394 (make-optional-type . 53))
  1490. (1395 (make-rest-type . 53))
  1491. (1396 (head-type . 53))
  1492. (1397 (head-type-really . 53))
  1493. (1398 (tail-type . 53))
  1494. (1399 (empty-rail-type? . 53))
  1495. (1400 (rest-type? . 53))
  1496. (1401 (optional-type? . 53))
  1497. (1402 (mask/no-values . 53))
  1498. (1403 (mask/two-or-more . 53))
  1499. (1404 (mask/&rest . 53))
  1500. (1405 (value-type . 53))
  1501. (1406 (mask/value . 53))
  1502. (1407 (value-type? . 53))
  1503. (1408 (any-values-type . 53))
  1504. (1409 (any-arguments-type . 53))
  1505. (1410 (mask/one-or-more . 53))
  1506. (1411 (same-type? . 53))
  1507. (1412 (subtype? . 53))
  1508. (1413 (meet-type . 53))
  1509. (1414 (other-type-info . 53))
  1510. (1415 (meet-rail . 53))
  1511. (1416 (meet-procedure . 53))
  1512. (1417 (meet? . 53))
  1513. (1418 (meet-procedure? . 53))
  1514. (1419 (join-type . 53))
  1515. (1420 (join-rail . 53))
  1516. (1421 (join-procedure . 53))
  1517. (1422 (number-hierarchy . 53))
  1518. (1423 (integer-type . 53))
  1519. (1424 (rational-type . 53))
  1520. (1425 (real-type . 53))
  1521. (1426 (complex-type . 53))
  1522. (1427 (number-type . 53))
  1523. (1428 (exact-type . 53))
  1524. (1429 (inexact-type . 53))
  1525. (1430 (exact-integer-type . 53))
  1526. (1431 (inexact-real-type . 53))
  1527. (1432 (boolean-type . 53))
  1528. (1433 (pair-type . 53))
  1529. (1434 (null-type . 53))
  1530. (1435 (record-type . 53))
  1531. (1436 (any-procedure-type . 53))
  1532. (1437 (other-value-type . 53))
  1533. (1438 (mask/other . 53))
  1534. (1439 (make-other-type . 53))
  1535. (1440 (char-type . 53))
  1536. (1441 (unspecific-type . 53))
  1537. (1442 (string-type . 53))
  1538. (1443 (symbol-type . 53))
  1539. (1444 (vector-type . 53))
  1540. (1445 (escape-type . 53))
  1541. (1446 (structure-type . 53))
  1542. (1447 (mask/procedure . 53))
  1543. (1448 (procedure-type . 53))
  1544. (1449 (make-procedure-type . 53))
  1545. (1450 (procedure-type-domain . 53))
  1546. (1451 (procedure-type-codomain . 53))
  1547. (1452 (restrictive? . 53))
  1548. (1453 (sexp->type . 53))
  1549. (1454 (sexp->values-type . 53))
  1550. (1455 (type->sexp . 53))
  1551. (1456 (atomic-type->sexp . 53))
  1552. (1457 (rail-type->sexp . 53))
  1553. (1458 (disjoin-type . 53))
  1554. (1459 (disjoin-rest . 53))
  1555. (1460 (mask/number . 53))
  1556. (1461 (make-some-values-type . 53))
  1557. (1462 (proc . 53))
  1558. (1463 (some-values . 53))
  1559. (1464 (procedure-type? . 53))
  1560. (1465 (fixed-arity-procedure-type? . 53))
  1561. (1466 (procedure-type-arity . 53))
  1562. (1467 (procedure-type-argument-types . 53))
  1563. (1468 (variable-type . 53))
  1564. (1469 (variable-type? . 53))
  1565. (1470 (variable-value-type . 53))
  1566. (1471 (usual-variable-type . 53))
  1567. (1472 (undeclared-type . 53))
  1568. (1473 (compatible-types? . 53))
  1569. (1474 (:interface . 70))
  1570. (1475 (really-make-interface . 70))
  1571. (1476 (interface-name . 70))
  1572. (1477 (set-interface-name! . 70))
  1573. (1478 (interface-clients . 70))
  1574. (1479 (walk-method . 70))
  1575. (1480 (ref-method . 70))
  1576. (1481 (interface? . 70))
  1577. (1482 (make-interface . 70))
  1578. (1483 (interface-ref . 70))
  1579. (1484 (interface-member? . 70))
  1580. (1485 (for-each-declaration . 70))
  1581. (1486 (note-reference-to-interface! . 70))
  1582. (1487 (note-interface-name! . 70))
  1583. (1488 (make-simple-interface . 70))
  1584. (1489 (make-simple-interface-table . 70))
  1585. (1490 (make-compound-interface . 70))
  1586. (1491 (make-modified-interface-maker . 70))
  1587. (1492 (process-commands . 70))
  1588. (1493 (okay-command? . 70))
  1589. (1494 (proper-list? . 70))
  1590. (1495 (process-prefix . 70))
  1591. (1496 (process-expose . 70))
  1592. (1497 (process-hide . 70))
  1593. (1498 (process-alias . 70))
  1594. (1499 (process-rename . 70))
  1595. (1500 (interface-lookup . 70))
  1596. (1501 (make-lookup . 70))
  1597. (1502 (prefix-match? . 70))
  1598. (1503 (remove-prefix . 70))
  1599. (1504 (make-interface-walker . 70))
  1600. (1505 (walk-default . 70))
  1601. (1506 (walk-alist . 70))
  1602. (1507 (:binding . 54))
  1603. (1508 (really-make-binding . 54))
  1604. (1509 (binding-path . 54))
  1605. (1510 (binding-static . 54))
  1606. (1511 (set-binding-static! . 54))
  1607. (1512 (binding-place . 54))
  1608. (1513 (set-binding-place! . 54))
  1609. (1514 (binding-type . 54))
  1610. (1515 (set-binding-type! . 54))
  1611. (1516 (binding? . 54))
  1612. (1517 (make-binding . 54))
  1613. (1518 (add-path . 54))
  1614. (1519 (clobber-binding! . 54))
  1615. (1520 (impose-type . 54))
  1616. (1521 (forget-integration . 54))
  1617. (1522 (same-denotation? . 54))
  1618. (1523 (maybe-fix-place! . 54))
  1619. (1524 (follow-forwarding-pointers . 54))
  1620. (1525 (name? . 55))
  1621. (1526 (:generated . 55))
  1622. (1527 (make-generated . 55))
  1623. (1528 (generated-parent-name . 55))
  1624. (1529 (generated-env . 55))
  1625. (1530 (generated-token . 55))
  1626. (1531 (generated-name . 55))
  1627. (1532 (generated? . 55))
  1628. (1533 (generate-name . 55))
  1629. (1534 (generated-uid . 55))
  1630. (1535 (*generated-uid* . 55))
  1631. (1536 (name->symbol . 55))
  1632. (1537 (name-hash . 55))
  1633. (1538 (make-name-table . 55))
  1634. (1539 (desyntaxify . 55))
  1635. (1540 (make-qualified . 55))
  1636. (1541 (qualified? . 55))
  1637. (1542 (qualified-parent-name . 55))
  1638. (1543 (qualified-symbol . 55))
  1639. (1544 (qualified-uid . 55))
  1640. (1545 (name->qualified . 55))
  1641. (1546 (qualify-parent . 55))
  1642. (1547 (:transform . 55))
  1643. (1548 (really-make-transform . 55))
  1644. (1549 (transform-id . 55))
  1645. (1550 (transform-source . 55))
  1646. (1551 (transform-aux-names . 55))
  1647. (1552 (transform-type . 55))
  1648. (1553 (transform-env . 55))
  1649. (1554 (transform-procedure . 55))
  1650. (1555 (transform? . 55))
  1651. (1556 (make-transform . 55))
  1652. (1557 (maybe-apply-macro-transform . 55))
  1653. (1558 (apply-inline-transform . 55))
  1654. (1559 (make-keyword-comparator . 55))
  1655. (1560 (name->source-name . 55))
  1656. (1561 (bind-aliases . 55))
  1657. (1562 (make-name-generator . 55))
  1658. (1563 (cenv-lookup . 55))
  1659. (1564 (lookup . 58))
  1660. (1565 (bind1 . 58))
  1661. (1566 (bind . 58))
  1662. (1567 (bindrec . 58))
  1663. (1568 (make-compiler-env . 58))
  1664. (1569 (funny-name/macro-eval . 58))
  1665. (1570 (environment-macro-eval . 58))
  1666. (1571 (funny-name/define! . 58))
  1667. (1572 (environment-define! . 58))
  1668. (1573 (funny-name/package . 58))
  1669. (1574 (extract-package-from-environment . 58))
  1670. (1575 (funny-name/source-file-name . 58))
  1671. (1576 (bind-source-file-name . 58))
  1672. (1577 (source-file-name . 58))
  1673. (1578 (:thingie . 56))
  1674. (1579 (make-thingie . 56))
  1675. (1580 (thingie-want-type . 56))
  1676. (1581 (thingie-name . 56))
  1677. (1582 (thingie-binding . 56))
  1678. (1583 (thingie? . 56))
  1679. (1584 (:structure-type . 71))
  1680. (1585 (really-make-structure . 71))
  1681. (1586 (structure-name . 71))
  1682. (1587 (set-structure-name! . 71))
  1683. (1588 (structure-clients . 71))
  1684. (1589 (structure-package . 71))
  1685. (1590 (structure-interface-really . 71))
  1686. (1591 (set-structure-interface! . 71))
  1687. (1592 (structure-interface-thunk . 71))
  1688. (1593 (structure? . 71))
  1689. (1594 (structure-interface . 71))
  1690. (1595 (initialize-structure! . 71))
  1691. (1596 (make-structure . 71))
  1692. (1597 (make-modified-structure . 71))
  1693. (1598 (note-structure-name! . 71))
  1694. (1599 (structure-unstable? . 71))
  1695. (1600 (for-each-export . 71))
  1696. (1601 (:package . 71))
  1697. (1602 (really-make-package . 71))
  1698. (1603 (package-cached . 71))
  1699. (1604 (package-clients . 71))
  1700. (1605 (package-real-undefined-but-assigneds . 71))
  1701. (1606 (set-package-undefined-but-assigneds! . 71))
  1702. (1607 (package-real-undefineds . 71))
  1703. (1608 (set-package-undefineds! . 71))
  1704. (1609 (package-accesses-thunk . 71))
  1705. (1610 (package-opens-thunk . 71))
  1706. (1611 (set-package-opens-thunk! . 71))
  1707. (1612 (package->environment . 71))
  1708. (1613 (set-package->environment! . 71))
  1709. (1614 (package-loaded? . 71))
  1710. (1615 (set-package-loaded?! . 71))
  1711. (1616 (package-clauses . 71))
  1712. (1617 (package-file-name . 71))
  1713. (1618 (package-get-location . 71))
  1714. (1619 (set-package-get-location! . 71))
  1715. (1620 (package-integrate? . 71))
  1716. (1621 (set-package-integrate?! . 71))
  1717. (1622 (package-unstable? . 71))
  1718. (1623 (package-definitions . 71))
  1719. (1624 (package-opens-really . 71))
  1720. (1625 (set-package-opens! . 71))
  1721. (1626 (package-uid . 71))
  1722. (1627 (package? . 71))
  1723. (1628 (make-package . 71))
  1724. (1629 (really-package->environment . 71))
  1725. (1630 (lazy-table-accessor . 71))
  1726. (1631 (package-undefineds . 71))
  1727. (1632 (package-undefined-but-assigneds . 71))
  1728. (1633 (new-package-uid . 71))
  1729. (1634 (*package-uid* . 71))
  1730. (1635 (package-name-table . 71))
  1731. (1636 (package-name . 71))
  1732. (1637 (note-package-name! . 71))
  1733. (1638 (package-opens . 71))
  1734. (1639 (initialize-package-if-necessary! . 71))
  1735. (1640 (package-accesses . 71))
  1736. (1641 (make-simple-package . 71))
  1737. (1642 (package-definition . 71))
  1738. (1643 (package-define! . 71))
  1739. (1644 (package-add-static! . 71))
  1740. (1645 (package-refine-type! . 71))
  1741. (1646 (package-lookup . 71))
  1742. (1647 (really-package-lookup . 71))
  1743. (1648 (search-opens . 71))
  1744. (1649 (structure-lookup . 71))
  1745. (1650 (real-structure-lookup . 71))
  1746. (1651 (generic-lookup . 71))
  1747. (1652 (initialize-package! . 71))
  1748. (1653 (for-each-definition . 71))
  1749. (1654 (get-new-location . 71))
  1750. (1655 (make-new-location . 71))
  1751. (1656 ($get-location . 71))
  1752. (1657 (*location-uid* . 71))
  1753. (1658 (location-info-table . 71))
  1754. (1659 (flush-location-names . 71))
  1755. (1660 (link! . 71))
  1756. (1661 (really-link! . 71))
  1757. (1662 (get-location . 71))
  1758. (1663 (location-on-demand . 71))
  1759. (1664 (get-undefined . 71))
  1760. (1665 (location-for-assignment . 71))
  1761. (1666 (package-note-caching! . 71))
  1762. (1667 (note-caching! . 71))
  1763. (1668 (get-location-for-unassignable . 71))
  1764. (1669 (get-location-for-undefined . 71))
  1765. (1670 ($note-undefined . 71))
  1766. (1671 (cenv->package . 71))
  1767. (1672 (location-for-reference . 71))
  1768. (1673 (noting-undefined-variables . 71))
  1769. (1674 (print-undefined-names . 71))
  1770. (1675 (environment-ref . 84))
  1771. (1676 (environment-set! . 84))
  1772. (1677 (environment-define! . 84))
  1773. (1678 (*structure-ref . 84))
  1774. (1679 (carefully . 84))
  1775. (1680 ($interaction-environment . 84))
  1776. (1681 (interaction-environment . 84))
  1777. (1682 (set-interaction-environment! . 84))
  1778. (1683 (with-interaction-environment . 84))
  1779. (1684 (scheme-report-environment . 84))
  1780. (1685 (*scheme-report-environment* . 84))
  1781. (1686 (*null-environment* . 84))
  1782. (1687 (*scheme-report-number* . 84))
  1783. (1688 (set-scheme-report-environment! . 84))
  1784. (1689 (null-environment . 84))
  1785. (1690 (make-reflective-tower . 84))
  1786. (1691 (set-reflective-tower-maker! . 84))
  1787. (1692 (namestring . 83))
  1788. (1693 (directory-component-separator . 83))
  1789. (1694 (type-component-separator . 83))
  1790. (1695 (namestring-component . 83))
  1791. (1696 (file-name-preferred-case . 83))
  1792. (1697 (*scheme-file-type* . 83))
  1793. (1698 (*load-file-type* . 83))
  1794. (1699 (file-name-directory . 83))
  1795. (1700 (file-name-nondirectory . 83))
  1796. (1701 (file-nondirectory-position . 83))
  1797. (1702 (string-posq . 83))
  1798. (1703 (*translations* . 83))
  1799. (1704 (translations . 83))
  1800. (1705 (set-translation! . 83))
  1801. (1706 (translate . 83))
  1802. (1707 ($note-file-package . 68))
  1803. (1708 (read-forms . 68))
  1804. (1709 (really-read-forms . 68))
  1805. (1710 (skip-line . 68))
  1806. (1711 (:operator . 57))
  1807. (1712 (make-operator . 57))
  1808. (1713 (operator-name . 57))
  1809. (1714 (operator-uid . 57))
  1810. (1715 (operator-nargs . 57))
  1811. (1716 (operator-type . 57))
  1812. (1717 (set-operator-type! . 57))
  1813. (1718 (operator? . 57))
  1814. (1719 (usual-operator-type . 57))
  1815. (1720 (get-operator . 57))
  1816. (1721 (*operator-uid* . 57))
  1817. (1722 (operators-table . 57))
  1818. (1723 (number-of-operators . 57))
  1819. (1724 (the-operators . 57))
  1820. (1725 (make-operator-table . 57))
  1821. (1726 (operator-table-ref . 57))
  1822. (1727 (operator-lookup . 57))
  1823. (1728 (operator-define! . 57))
  1824. (1729 (:node . 57))
  1825. (1730 (really-make-node . 57))
  1826. (1731 (node-plist . 57))
  1827. (1732 (set-node-plist! . 57))
  1828. (1733 (node-form . 57))
  1829. (1734 (node-operator-id . 57))
  1830. (1735 (node? . 57))
  1831. (1736 (make-node . 57))
  1832. (1737 (node-ref . 57))
  1833. (1738 (node-set! . 57))
  1834. (1739 (node-operator . 57))
  1835. (1740 (node-predicate . 57))
  1836. (1741 (make-similar-node . 57))
  1837. (1742 (force-node . 57))
  1838. (1743 (lambda-node? . 57))
  1839. (1744 (flat-lambda-node? . 57))
  1840. (1745 (call-node? . 57))
  1841. (1746 (name-node? . 57))
  1842. (1747 (literal-node? . 57))
  1843. (1748 (quote-node? . 57))
  1844. (1749 (define-node? . 57))
  1845. (1750 (loophole-node? . 57))
  1846. (1751 (operator/flat-lambda . 57))
  1847. (1752 (operator/lambda . 57))
  1848. (1753 (operator/set! . 57))
  1849. (1754 (operator/call . 57))
  1850. (1755 (operator/begin . 57))
  1851. (1756 (operator/name . 57))
  1852. (1757 (operator/letrec . 57))
  1853. (1758 (operator/pure-letrec . 57))
  1854. (1759 (operator/literal . 57))
  1855. (1760 (operator/quote . 57))
  1856. (1761 (operator/unassigned . 57))
  1857. (1762 (operator/unspecific . 57))
  1858. (1763 (operator/define . 57))
  1859. (1764 (operator/define-syntax . 57))
  1860. (1765 (operator/primitive-procedure . 57))
  1861. (1766 (operator/structure-ref . 57))
  1862. (1767 (schemify . 57))
  1863. (1768 (schemifiers . 57))
  1864. (1769 (schemify-node . 57))
  1865. (1770 (schemify-nodes . 57))
  1866. (1771 (define-schemifier . 57))
  1867. (1772 (schemify-lambda . 57))
  1868. (1773 (schemify-formals . 57))
  1869. (1774 (schemify-letrec . 57))
  1870. (1775 (schemify-sexp . 57))
  1871. (1776 (number-of-required-args . 61))
  1872. (1777 (n-ary? . 61))
  1873. (1778 (normalize-formals . 61))
  1874. (1779 (scan-forms . 59))
  1875. (1780 (expand-scanned-form . 59))
  1876. (1781 (scan-define . 59))
  1877. (1782 (expand-define . 59))
  1878. (1783 (scan-define-syntax . 59))
  1879. (1784 (expand-form . 59))
  1880. (1785 (expand-head . 59))
  1881. (1786 (destructure-define . 59))
  1882. (1787 (make-operator-predicate . 59))
  1883. (1788 (define? . 59))
  1884. (1789 (begin? . 59))
  1885. (1790 (define-syntax? . 59))
  1886. (1791 (static-value . 59))
  1887. (1792 (expand-body . 59))
  1888. (1793 (scan-body-forms . 59))
  1889. (1794 (body-lossage . 59))
  1890. (1795 (expand . 59))
  1891. (1796 (expand-list . 59))
  1892. (1797 (expand-literal . 59))
  1893. (1798 (expand-call . 59))
  1894. (1799 (expand-name . 59))
  1895. (1800 (expand-macro-application . 59))
  1896. (1801 (expand-operator-form . 59))
  1897. (1802 (expanders . 59))
  1898. (1803 (define-expander . 59))
  1899. (1804 (unspecific-node . 59))
  1900. (1805 (expand-structure-ref . 59))
  1901. (1806 (expand-lambda . 59))
  1902. (1807 (bind-names . 59))
  1903. (1808 (names? . 59))
  1904. (1809 (expand-letrec . 59))
  1905. (1810 (process-syntax . 59))
  1906. (1811 (this-long? . 59))
  1907. (1812 (at-least-this-long? . 59))
  1908. (1813 (let-specs? . 59))
  1909. (1814 (literal? . 59))
  1910. (1815 (syntax? . 59))
  1911. (1816 (:primop . 64))
  1912. (1817 (make-primop . 64))
  1913. (1818 (primop-compilator . 64))
  1914. (1819 (primop-closed . 64))
  1915. (1820 (primop-type . 64))
  1916. (1821 (primop-name . 64))
  1917. (1822 (primop? . 64))
  1918. (1823 (primop-table . 64))
  1919. (1824 (walk-primops . 64))
  1920. (1825 (define-compiler-primitive . 64))
  1921. (1826 (get-primop . 64))
  1922. (1827 (arithmetic-shift-right . 40))
  1923. (1828 (shift-left . 40))
  1924. (1829 (adjoin-bits . 40))
  1925. (1830 (low-bits . 40))
  1926. (1831 (high-bits . 40))
  1927. (1832 (unsigned-high-bits . 40))
  1928. (1833 (assert . 40))
  1929. (1834 (useful-bits-per-word . 40))
  1930. (1835 (bits-per-byte . 40))
  1931. (1836 (bytes-per-cell . 40))
  1932. (1837 (bits-per-cell . 40))
  1933. (1838 (bytes->cells . 40))
  1934. (1839 (cells->bytes . 40))
  1935. (1840 (unused-field-width . 40))
  1936. (1841 (addressing-units-per-cell . 40))
  1937. (1842 (cells->a-units . 40))
  1938. (1843 (a-units->cells . 40))
  1939. (1844 (bytes->a-units . 40))
  1940. (1845 (tag-field-width . 40))
  1941. (1846 (data-field-width . 40))
  1942. (1847 (make-descriptor . 40))
  1943. (1848 (descriptor-tag . 40))
  1944. (1849 (descriptor-data . 40))
  1945. (1850 (unsigned-descriptor-data . 40))
  1946. (1851 (set-descriptor-tag . 40))
  1947. (1852 (vm-eq? . 40))
  1948. (1853 (tag . 40))
  1949. (1854 (tag-enumeration . 40))
  1950. (1855 (tag-count . 40))
  1951. (1856 (fixnum? . 40))
  1952. (1857 (immediate? . 40))
  1953. (1858 (header? . 40))
  1954. (1859 (stob? . 40))
  1955. (1860 (bits-per-fixnum . 40))
  1956. (1861 (least-fixnum-value . 40))
  1957. (1862 (greatest-fixnum-value . 40))
  1958. (1863 (too-big-for-fixnum? . 40))
  1959. (1864 (too-small-for-fixnum? . 40))
  1960. (1865 (enter-fixnum . 40))
  1961. (1866 (extract-fixnum . 40))
  1962. (1867 (descriptor->fixnum . 40))
  1963. (1868 (fixnum->stob . 40))
  1964. (1869 (fixnum= . 40))
  1965. (1870 (fixnum< . 40))
  1966. (1871 (fixnum> . 40))
  1967. (1872 (fixnum<= . 40))
  1968. (1873 (fixnum>= . 40))
  1969. (1874 (fixnum-bitwise-not . 40))
  1970. (1875 (fixnum-bitwise-and . 40))
  1971. (1876 (fixnum-bitwise-ior . 40))
  1972. (1877 (fixnum-bitwise-xor . 40))
  1973. (1878 (immediate-type-field-width . 40))
  1974. (1879 (make-immediate . 40))
  1975. (1880 (immediate-type . 40))
  1976. (1881 (immediate-info . 40))
  1977. (1882 (tag&immediate-type . 40))
  1978. (1883 (make-tag&immediate-type . 40))
  1979. (1884 (imm . 40))
  1980. (1885 (imm-enumeration . 40))
  1981. (1886 (imm-count . 40))
  1982. (1887 (immediate-predicate . 40))
  1983. (1888 (bytes-per-scalar-value-unit . 40))
  1984. (1889 (bytes->scalar-value-units . 40))
  1985. (1890 (scalar-value-units->bytes . 40))
  1986. (1891 (vm-char? . 40))
  1987. (1892 (undefined? . 40))
  1988. (1893 (true . 40))
  1989. (1894 (false . 40))
  1990. (1895 (eof-object . 40))
  1991. (1896 (null . 40))
  1992. (1897 (unspecific-value . 40))
  1993. (1898 (quiescent . 40))
  1994. (1899 (unbound-marker . 40))
  1995. (1900 (unassigned-marker . 40))
  1996. (1901 (unreleased-value . 40))
  1997. (1902 (false? . 40))
  1998. (1903 (enter-boolean . 40))
  1999. (1904 (extract-boolean . 40))
  2000. (1905 (vm-boolean? . 40))
  2001. (1906 (enter-char . 40))
  2002. (1907 (extract-char . 40))
  2003. (1908 (scalar-value->char . 40))
  2004. (1909 (char->scalar-value . 40))
  2005. (1910 (vm-char=? . 40))
  2006. (1911 (vm-char<? . 40))
  2007. (1912 (header-type-field-width . 40))
  2008. (1913 (header-size-field-width . 40))
  2009. (1914 (max-stob-contents-size-in-cells . 40))
  2010. (1915 (make-header . 40))
  2011. (1916 (header-immutable-bit-mask . 40))
  2012. (1917 (make-header-immutable . 40))
  2013. (1918 (header-type . 40))
  2014. (1919 (immutable-header? . 40))
  2015. (1920 (header-length-in-bytes . 40))
  2016. (1921 (header-length-in-cells . 40))
  2017. (1922 (header-length-in-a-units . 40))
  2018. (1923 (d-vector-header? . 40))
  2019. (1924 (b-vector-header? . 40))
  2020. (1925 (add-stob-tag . 40))
  2021. (1926 (remove-stob-tag . 40))
  2022. (1927 (:debug-data . 62))
  2023. (1928 (make-debug-data . 62))
  2024. (1929 (debug-data-source . 62))
  2025. (1930 (set-debug-data-source! . 62))
  2026. (1931 (debug-data-jump-back-dests . 62))
  2027. (1932 (set-debug-data-jump-back-dests! . 62))
  2028. (1933 (debug-data-env-maps . 62))
  2029. (1934 (set-debug-data-env-maps! . 62))
  2030. (1935 (debug-data-parent . 62))
  2031. (1936 (debug-data-name . 62))
  2032. (1937 (debug-data-uid . 62))
  2033. (1938 (debug-data? . 62))
  2034. (1939 (debug-data-env-shape . 62))
  2035. (1940 (new-template-uid . 62))
  2036. (1941 (*template-uid* . 62))
  2037. (1942 (template-uid . 62))
  2038. (1943 (set-template-uid! . 62))
  2039. (1944 (debug-flag-names . 62))
  2040. (1945 (type/debug-flags . 62))
  2041. (1946 (make-debug-flags . 62))
  2042. (1947 ($debug-flags . 62))
  2043. (1948 (debug-flag-accessor . 62))
  2044. (1949 (debug-flag-modifier . 62))
  2045. (1950 (keep-source-code? . 62))
  2046. (1951 (keep-environment-maps? . 62))
  2047. (1952 (keep-procedure-names? . 62))
  2048. (1953 (keep-file-names? . 62))
  2049. (1954 (tabulate-debug-data? . 62))
  2050. (1955 (debug-data-table . 62))
  2051. (1956 (with-fresh-compiler-state . 62))
  2052. (1957 (saving-and-restoring . 62))
  2053. (1958 (debug-data->info . 62))
  2054. (1959 (get-debug-data . 62))
  2055. (1960 (note-debug-data! . 62))
  2056. (1961 (new-debug-data . 62))
  2057. (1962 (:frame . 67))
  2058. (1963 (really-make-frame . 67))
  2059. (1964 (frame-debug-data . 67))
  2060. (1965 (frame-count . 67))
  2061. (1966 (set-frame-count! . 67))
  2062. (1967 (frame-literals . 67))
  2063. (1968 (set-frame-literals! . 67))
  2064. (1969 (frame-size . 67))
  2065. (1970 (set-frame-size! . 67))
  2066. (1971 (frame-closure-index . 67))
  2067. (1972 (frame-env-index . 67))
  2068. (1973 (frame-template-index . 67))
  2069. (1974 (frame? . 67))
  2070. (1975 (make-frame . 67))
  2071. (1976 (adjust-procedure-name . 67))
  2072. (1977 (index->offset . 67))
  2073. (1978 (template-offset . 67))
  2074. (1979 (environment-offset . 67))
  2075. (1980 (depth-check! . 67))
  2076. (1981 (binding->index . 67))
  2077. (1982 (literal->index . 67))
  2078. (1983 (literal-position . 67))
  2079. (1984 (position . 67))
  2080. (1985 (make-segment . 63))
  2081. (1986 (segment-size . 63))
  2082. (1987 (segment-emitter . 63))
  2083. (1988 (segment->cv . 63))
  2084. (1989 (segment->template . 63))
  2085. (1990 (segment-data->template . 63))
  2086. (1991 ($package-key . 63))
  2087. (1992 (with-package-key . 63))
  2088. (1993 (check-stack-use . 63))
  2089. (1994 (add-big-stack-protocol! . 63))
  2090. (1995 (:assembly-state . 63))
  2091. (1996 (make-assembly-state . 63))
  2092. (1997 (astate-jump-back-dests . 63))
  2093. (1998 (set-astate-jump-back-dests! . 63))
  2094. (1999 (astate-env-maps . 63))
  2095. (2000 (set-astate-env-maps! . 63))
  2096. (2001 (astate-pc . 63))
  2097. (2002 (set-astate-pc! . 63))
  2098. (2003 (astate-code-vector . 63))
  2099. (2004 (make-astate . 63))
  2100. (2005 (emit-byte! . 63))
  2101. (2006 (emit-segment! . 63))
  2102. (2007 (empty-segment . 63))
  2103. (2008 (instruction . 63))
  2104. (2009 (sequentially . 63))
  2105. (2010 (sequentially-2 . 63))
  2106. (2011 (continuation-data . 63))
  2107. (2012 (live-mask . 63))
  2108. (2013 (bits->bytes . 63))
  2109. (2014 (make-push-byte . 63))
  2110. (2015 (lambda-protocol . 63))
  2111. (2016 (nary-lambda-protocol . 63))
  2112. (2017 (nary-primitive-protocol . 63))
  2113. (2018 (dispatch-protocol-size . 63))
  2114. (2019 (make-dispatch-protocol . 63))
  2115. (2020 (continuation-protocol . 63))
  2116. (2021 (cwv-continuation-protocol . 63))
  2117. (2022 (make-label . 63))
  2118. (2023 (label-reference . 63))
  2119. (2024 (jump-instruction . 63))
  2120. (2025 (instruction-using-label . 63))
  2121. (2026 (optional-label-reference . 63))
  2122. (2027 (using-optional-label . 63))
  2123. (2028 (bytes->segment . 63))
  2124. (2029 (computed-goto-label-size . 63))
  2125. (2030 (computed-goto-instruction . 63))
  2126. (2031 (attach-label . 63))
  2127. (2032 (insert-label! . 63))
  2128. (2033 (insert-backward-label! . 63))
  2129. (2034 (code-vector-set2! . 63))
  2130. (2035 (high-byte . 63))
  2131. (2036 (low-byte . 63))
  2132. (2037 (note-source-code . 63))
  2133. (2038 (note-environment . 63))
  2134. (2039 (empty-segment? . 63))
  2135. (2040 (optimizers-table . 73))
  2136. (2041 (set-optimizer! . 73))
  2137. (2042 (get-optimizer . 73))
  2138. (2043 (apply-optimizers . 73))
  2139. (2044 (flatten-form . 69))
  2140. (2045 (flatten-node . 69))
  2141. (2046 (flatteners . 69))
  2142. (2047 (define-flattener . 69))
  2143. (2048 (flatten-list . 69))
  2144. (2049 (no-free-vars . 69))
  2145. (2050 (flatten-lambda . 69))
  2146. (2051 (convert-lambda-body . 69))
  2147. (2052 (add-cells . 69))
  2148. (2053 (flatten-letrec . 69))
  2149. (2054 (flatten-pure-letrec . 69))
  2150. (2055 (flatten-impure-letrec . 69))
  2151. (2056 (assigned? . 69))
  2152. (2057 (mark-set-variables! . 69))
  2153. (2058 (mark-sets . 69))
  2154. (2059 (define-set-marker . 69))
  2155. (2060 (no-sets . 69))
  2156. (2061 (mark-letrec-sets . 69))
  2157. (2062 (make-make-cell . 69))
  2158. (2063 (make-unassigned-cell . 69))
  2159. (2064 (make-cell-ref . 69))
  2160. (2065 (really-make-cell-ref . 69))
  2161. (2066 (make-cell-set! . 69))
  2162. (2067 (make-primop-call . 69))
  2163. (2068 (define-primop . 69))
  2164. (2069 (temp0 . 69))
  2165. (2070 (make-cell-primop . 69))
  2166. (2071 (temp1 . 69))
  2167. (2072 (cell-ref-primop . 69))
  2168. (2073 (temp2 . 69))
  2169. (2074 (cell-set!-primop . 69))
  2170. (2075 (temp3 . 69))
  2171. (2076 (unassigned-check-primop . 69))
  2172. (2077 (install-new-set! . 69))
  2173. (2078 (install-set! . 69))
  2174. (2079 (set->list . 69))
  2175. (2080 (set-add-element! . 69))
  2176. (2081 (set-union! . 69))
  2177. (2082 (set-difference! . 69))
  2178. (2083 (clean-var-list . 69))
  2179. (2084 (clear-var-set! . 69))
  2180. (2085 (node-type . 65))
  2181. (2086 (reconstruct-type . 65))
  2182. (2087 (reconstruct . 65))
  2183. (2088 (examine . 65))
  2184. (2089 (reconstructors . 65))
  2185. (2090 (define-reconstructor . 65))
  2186. (2091 (reconstruct-lambda . 65))
  2187. (2092 (careful-codomain . 65))
  2188. (2093 (reconstruct-name . 65))
  2189. (2094 (proc->reconstructor . 65))
  2190. (2095 (reconstruct-call . 65))
  2191. (2096 (fork-constraints . 65))
  2192. (2097 (reconstruct-letrec . 65))
  2193. (2098 (node->type . 65))
  2194. (2099 (primop-reconstructors . 65))
  2195. (2100 (define-primop-reconstructor . 65))
  2196. (2101 (reconstruct-apply . 65))
  2197. (2102 (constant-type . 65))
  2198. (2103 (compile-expression . 66))
  2199. (2104 (compile . 66))
  2200. (2105 (compilators . 66))
  2201. (2106 (define-compilator . 66))
  2202. (2107 (compile-constant . 66))
  2203. (2108 (small-integer? . 66))
  2204. (2109 (integer-literal-instruction . 66))
  2205. (2110 (deliver-constant-value . 66))
  2206. (2111 (compile-local-name . 66))
  2207. (2112 (maybe-compile-with-push . 66))
  2208. (2113 (constant-with-push . 66))
  2209. (2114 (lexical-ref-with-push . 66))
  2210. (2115 (push+stack-ref-instruction . 66))
  2211. (2116 (push+stack-indirect-instruction . 66))
  2212. (2117 (compile-call . 66))
  2213. (2118 (compile-name-call . 66))
  2214. (2119 (compile-unknown-call . 66))
  2215. (2120 (compile-redex . 66))
  2216. (2121 (compile-inline-body . 66))
  2217. (2122 (letrec-template-maker . 66))
  2218. (2123 (maybe-push-continuation . 66))
  2219. (2124 (push-continuation . 66))
  2220. (2125 (push-continuation-no-protocol . 66))
  2221. (2126 (really-push-continuation . 66))
  2222. (2127 (fixup-source . 66))
  2223. (2128 (push-arguments . 66))
  2224. (2129 (push-all-but-last . 66))
  2225. (2130 (push-all-with-names . 66))
  2226. (2131 (push-argument . 66))
  2227. (2132 (really-push-arguments . 66))
  2228. (2133 (compile-argument . 66))
  2229. (2134 (pre-push . 66))
  2230. (2135 (push-instruction . 66))
  2231. (2136 (call-instruction . 66))
  2232. (2137 (stack-ref-instruction . 66))
  2233. (2138 (stack-set!-instruction . 66))
  2234. (2139 (stack-indirect-instruction . 66))
  2235. (2140 (make-cont . 66))
  2236. (2141 (cont-kind . 66))
  2237. (2142 (cont-source-info . 66))
  2238. (2143 (return-cont . 66))
  2239. (2144 (return-cont? . 66))
  2240. (2145 (fall-through-cont . 66))
  2241. (2146 (plain-fall-through-cont . 66))
  2242. (2147 (fall-through-cont? . 66))
  2243. (2148 (ignore-values-segment . 66))
  2244. (2149 (ignore-values-cont . 66))
  2245. (2150 (ignore-values-cont? . 66))
  2246. (2151 (accept-values-cont . 66))
  2247. (2152 (accept-values-cont? . 66))
  2248. (2153 (deliver-value . 66))
  2249. (2154 (named-cont . 66))
  2250. (2155 (cont-name . 66))
  2251. (2156 (name-node-binding . 66))
  2252. (2157 (generate-trap . 66))
  2253. (2158 (type-check . 66))
  2254. (2159 (set-type-check?! . 66))
  2255. (2160 (*type-check?* . 66))
  2256. (2161 (diagnose-call-error . 66))
  2257. (2162 (receive . 66))
  2258. (2163 (compile-flat-lambda . 66))
  2259. (2164 (really-compile-flat-lambda . 66))
  2260. (2165 (compile-lambda . 66))
  2261. (2166 (set-lexical-offsets! . 66))
  2262. (2167 (compile-lambda-code . 66))
  2263. (2168 (set-frame-locations! . 66))
  2264. (2169 (name-node->symbol . 66))
  2265. (2170 (compile-environment . 66))
  2266. (2171 (compile-recursive-environment . 66))
  2267. (2172 (finish-flat-env . 66))
  2268. (2173 (one-byte->two-byte . 66))
  2269. (2174 (flat-environment-code . 66))
  2270. (2175 (get-variables-locations . 66))
  2271. (2176 (add-variable . 66))
  2272. (2177 (figure-env-data . 66))
  2273. (2178 (primop-closed-template . 66))
  2274. (2179 (direct-compilator . 66))
  2275. (2180 (direct-closed-compilator . 66))
  2276. (2181 (nargs->domain . 66))
  2277. (2182 (get-primop-type . 66))
  2278. (2183 (primop-types . 66))
  2279. (2184 (define-simple-primitive . 66))
  2280. (2185 (simple-compilator . 66))
  2281. (2186 (simple-closed-compilator . 66))
  2282. (2187 (define-stob-predicate . 66))
  2283. (2188 (define-data-struct-primitives . 66))
  2284. (2189 (define-vector-primitives . 66))
  2285. (2190 (define-more-vector-primitives . 66))
  2286. (2191 (thunk-node? . 66))
  2287. (2192 (thunk-body . 66))
  2288. (2193 (unflatten-form . 66))
  2289. (2194 (define-n-ary-compiler-primitive . 66))
  2290. (2195 (n-ary-primitive-compilator . 66))
  2291. (2196 (evaluate-arguments-for-effect . 66))
  2292. (2197 (call-on-arg-and-id . 66))
  2293. (2198 (call-on-args . 66))
  2294. (2199 (push-and-compile . 66))
  2295. (2200 (op/unspecific . 66))
  2296. (2201 (op/literal . 66))
  2297. (2202 (compile-forms . 66))
  2298. (2203 (compile-forms-loop . 66))
  2299. (2204 (compile-form . 66))
  2300. (2205 (call-template-inst . 66))
  2301. (2206 (template-call . 66))
  2302. (2207 (compile-definition . 66))
  2303. (2208 (location-contents-offset . 66))
  2304. (2209 (make-startup-procedure . 66))
  2305. (2210 (append-templates . 66))
  2306. (2211 (an-ignore-values-cont . 66))
  2307. (2212 (eval . 85))
  2308. (2213 (load-into . 85))
  2309. (2214 (load-script-into . 85))
  2310. (2215 (eval-from-file . 85))
  2311. (2216 (load . 85))
  2312. (2217 (really-load-into . 85))
  2313. (2218 (compile-and-run . 85))
  2314. (2219 (command-processor . 89))
  2315. (2220 (mini-load . 89))
  2316. (2221 (read-string . 89))
  2317. (2222 (byte-vector->string . 89))
  2318. (2223 (display-condition . 89))
  2319. (2224 (really-display-condition . 89))
  2320. (2225 (*depth* . 89))
  2321. (2226 (condition-display-depth . 89))
  2322. (2227 (set-condition-display-depth! . 89))
  2323. (2228 (*length* . 89))
  2324. (2229 (condition-display-length . 89))
  2325. (2230 (set-condition-display-length! . 89))
  2326. (2231 (&disclose-condition . 89))
  2327. (2232 (disclose-condition . 89))
  2328. (2233 (limited-write . 89))
  2329. (2234 (run-threads . 46))
  2330. (2235 (run-threads-with-housekeeper . 46))
  2331. (2236 (round-robin-event-handler . 46))
  2332. (2237 (make-counter . 46))
  2333. (2238 (counter-value . 46))
  2334. (2239 (increment-counter! . 46))
  2335. (2240 (decrement-counter! . 46))
  2336. (2241 (root-scheduler . 47))
  2337. (2242 (make-root-event-handler . 47))
  2338. (2243 (root-handler . 47))
  2339. (2244 (cheap-display-condition . 47))
  2340. (2245 (abort-token . 47))
  2341. (2246 (scheme-exit-now . 47))
  2342. (2247 (root-wait . 47))
  2343. (2248 (do-some-waiting . 47))
  2344. (2249 (one-minute-of-milliseconds . 47))
  2345. (2250 (one-day-of-milliseconds . 47))
  2346. (2251 (one-year-of-minutes . 47))
  2347. (2252 (deadlock-handler . 47))
  2348. (2253 (call-when-deadlocked! . 47))
  2349. (2254 (spawn-output-forcers . 47))
  2350. (2255 (make-usual-resumer . 51))
  2351. (2256 (usual-resumer . 51))
  2352. (2257 (warn-about-undefined-imported-bindings . 51))
  2353. (2258 (initialize-rts . 51))
  2354. (2259 (set-encoding! . 51))
  2355. (2260 (*initialization-thunks* . 51))
  2356. (2261 (add-initialization-thunk! . 51))
  2357. (2262 (run-initialization-thunks . 51))
  2358. (2263 (start . 90))
  2359. (2264 (make-built-in-structures . 90))
  2360. (2265 (initialize-interaction-environment! . 90))
  2361. (2266 (make-initial-package . 90))
  2362. (2267 (make-tower . 90))
  2363. (2268 (the-usual-transforms . 60))
  2364. (2269 (define-usual-macro . 60))
  2365. (2270 (usual-transform . 60))
  2366. (2271 (do-spec? . 60))
  2367. (2272 (specs? . 60))
  2368. (2273 (case-clause? . 60))
  2369. (2274 (process-rules . 60))
  2370. (2275 (segment-pattern? . 60))
  2371. (2276 (segment-template? . 60))
  2372. (2277 (segment-depth . 60))
  2373. (2278 (segment-tail . 60))
  2374. (2279 (indicators-for-zero-or-more . 60))
  2375. (2280 (find-free-names-in-syntax-rules . 60))
  2376. (2281 (strongly-connected-components . 81))
  2377. (2282 (find-next-vertex . 81))
  2378. (2283 (:vertex . 81))
  2379. (2284 (really-make-vertex . 81))
  2380. (2285 (vertex-lowpoint . 81))
  2381. (2286 (set-vertex-lowpoint! . 81))
  2382. (2287 (vertex-parent . 81))
  2383. (2288 (set-vertex-parent! . 81))
  2384. (2289 (vertex-index . 81))
  2385. (2290 (set-vertex-index! . 81))
  2386. (2291 (vertex-stack . 81))
  2387. (2292 (set-vertex-stack! . 81))
  2388. (2293 (vertex-edges . 81))
  2389. (2294 (set-vertex-edges! . 81))
  2390. (2295 (vertex-data . 81))
  2391. (2296 (vertex? . 81))
  2392. (2297 (make-vertex . 81))
  2393. (2298 (make-vertices . 81))
  2394. (2299 (do-vertex . 81))
  2395. (2300 (get-strong . 81))
  2396. (2301 (end-vertex . 81))
  2397. (2302 (unwind-stack . 81))
  2398. (2303 (follow-edge . 81))
  2399. (2304 (pop-vertex-edge! . 81))
  2400. (2305 (find-usages . 78))
  2401. (2306 (maybe-update-known-type . 78))
  2402. (2307 (find-node-usages . 78))
  2403. (2308 (analyze . 78))
  2404. (2309 (analyze-nodes . 78))
  2405. (2310 (usage-analyzers . 78))
  2406. (2311 (define-usage-analyzer . 78))
  2407. (2312 (nothing . 78))
  2408. (2313 (add-if-free . 78))
  2409. (2314 (analyze-letrec . 78))
  2410. (2315 (:usage . 78))
  2411. (2316 (really-make-usage . 78))
  2412. (2317 (usage-assignment-count . 78))
  2413. (2318 (set-assignment! . 78))
  2414. (2319 (usage-operator-count . 78))
  2415. (2320 (set-operator! . 78))
  2416. (2321 (usage-reference-count . 78))
  2417. (2322 (set-reference! . 78))
  2418. (2323 (usage-name-node . 78))
  2419. (2324 (usage? . 78))
  2420. (2325 (make-usage . 78))
  2421. (2326 (make-package-usage . 78))
  2422. (2327 (package-usage? . 78))
  2423. (2328 (usage-incrementator . 78))
  2424. (2329 (note-reference! . 78))
  2425. (2330 (note-operator! . 78))
  2426. (2331 (note-assignment! . 78))
  2427. (2332 (sort-forms . 78))
  2428. (2333 (stuff-count . 78))
  2429. (2334 (maybe-make-aliased . 78))
  2430. (2335 (topologically-sort . 78))
  2431. (2336 (:form . 78))
  2432. (2337 (really-make-form . 78))
  2433. (2338 (form-temp . 78))
  2434. (2339 (set-form-temp! . 78))
  2435. (2340 (form-free . 78))
  2436. (2341 (set-form-free! . 78))
  2437. (2342 (form-unaliased? . 78))
  2438. (2343 (set-form-unaliased?! . 78))
  2439. (2344 (form-aliases . 78))
  2440. (2345 (set-form-aliases! . 78))
  2441. (2346 (form-node . 78))
  2442. (2347 (form? . 78))
  2443. (2348 (make-form . 78))
  2444. (2349 (insert-aliases . 78))
  2445. (2350 (make-inline-transform . 80))
  2446. (2351 (clean-node . 80))
  2447. (2352 (clean-lambda . 80))
  2448. (2353 (clean-lookup . 80))
  2449. (2354 (unused-name . 80))
  2450. (2355 (remove-bindings . 80))
  2451. (2356 (inline-transform . 80))
  2452. (2357 (make-substitution . 80))
  2453. (2358 (reconstitute . 80))
  2454. (2359 (reconstitute-name . 80))
  2455. (2360 (qualified->name . 80))
  2456. (2361 (get-qualified-env . 80))
  2457. (2362 (operator . 87))
  2458. (2363 (primop . 87))
  2459. (2364 (simple-interface . 87))
  2460. (2365 (package . 87))
  2461. (2366 (transform . 87))
  2462. (2367 (package-define-static! . 87))
  2463. (2368 (:syntax . 76))
  2464. (2369 (:values . 76))
  2465. (2370 (:arguments . 76))
  2466. (2371 (:value . 76))
  2467. (2372 (procedure . 76))
  2468. (2373 (:boolean . 76))
  2469. (2374 (:char . 76))
  2470. (2375 (:null . 76))
  2471. (2376 (:unspecific . 76))
  2472. (2377 (:number . 76))
  2473. (2378 (:complex . 76))
  2474. (2379 (:real . 76))
  2475. (2380 (:rational . 76))
  2476. (2381 (:integer . 76))
  2477. (2382 (:exact-integer . 76))
  2478. (2383 (:pair . 76))
  2479. (2384 (:string . 76))
  2480. (2385 (:symbol . 76))
  2481. (2386 (:vector . 76))
  2482. (2387 (:procedure . 76))
  2483. (2388 (:input-port . 76))
  2484. (2389 (:output-port . 76))
  2485. (2390 (:error . 76))
  2486. (2391 (:escape . 76))
  2487. (2392 (:structure . 76))
  2488. (2393 (:type . 76))
  2489. (2394 (def . 75))
  2490. (2395 (really-def . 75))
  2491. (2396 (define-multiple . 75))
  2492. (2397 (define-interface . 75))
  2493. (2398 (compound-interface . 75))
  2494. (2399 (export . 75))
  2495. (2400 (define-structure . 75))
  2496. (2401 (define-structures . 75))
  2497. (2402 (structure . 75))
  2498. (2403 (structures . 75))
  2499. (2404 (modify . 75))
  2500. (2405 (subset . 75))
  2501. (2406 (with-prefix . 75))
  2502. (2407 (a-package . 75))
  2503. (2408 (define-reflective-tower-maker . 75))
  2504. (2409 (export-reflective-tower-maker . 75))
  2505. (2410 (define-module . 75))
  2506. (2411 (make-a-package . 75))
  2507. (2412 (loser . 75))
  2508. (2413 (interface-of . 75))
  2509. (2414 (*verify-later!* . 75))
  2510. (2415 (verify-later! . 75))
  2511. (2416 (set-verify-later! . 75))
  2512. (2417 (note-name! . 75))
  2513. (2418 (collect-packages . 72))
  2514. (2419 (package-source . 72))
  2515. (2420 (read-files . 72))
  2516. (2421 (package-optimizer-names . 72))
  2517. (2422 (check-structure . 72))
  2518. (2423 (compile-package . 74))
  2519. (2424 (expand-package . 74))
  2520. (2425 (define-usual-transform . 74))
  2521. (2426 (define-primitives . 74))
  2522. (2427 (analyze-forms . 79))
  2523. (2428 (analyze-form . 79))
  2524. (2429 (inlinable-rhs? . 79))
  2525. (2430 (simple-lambda? . 79))
  2526. (2431 (simple? . 79))
  2527. (2432 (simple-list? . 79))
  2528. (2433 (analyzers . 79))
  2529. (2434 (define-analyzer . 79))
  2530. (2435 (really-simple-call? . 79))
  2531. (2436 (primitive-proc? . 79))
  2532. (2437 (no-ret . 79))
  2533. (2438 (ret . 79))
  2534. (2439 (simple-literal? . 79))
  2535. (2440 (require . 79))
  2536. (2441 (*debug?* . 79))
  2537. (2442 (package-lookup-type . 79))
  2538. (2443 (ensure-loaded . 86))
  2539. -
  2540. ; Template uid -> name, parent, env maps
  2541. (0 scheme-level-0 #f () ())
  2542. (1 scheme-level-0 #f () ())
  2543. (2 atan #f () ())
  2544. (3 scheme-level-0 #f () ())
  2545. (4 scheme-level-0 #f () ())
  2546. (5 set-location-defined?! #f () ())
  2547. (6 scheme-level-0 #f () ())
  2548. (7 scheme-level-0 #f () ())
  2549. (8 acos #f () ())
  2550. (9 scheme-level-0 #f () ())
  2551. (10 scheme-level-0 #f () ())
  2552. (11 vm-extension #f () ())
  2553. (12 scheme-level-0 #f () ())
  2554. (13 scheme-level-0 #f () ())
  2555. (14 asin #f () ())
  2556. (15 scheme-level-0 #f () ())
  2557. (16 scheme-level-0 #f () ())
  2558. (17 system-parameter #f () ())
  2559. (18 scheme-level-0 #f () ())
  2560. (19 scheme-level-0 #f () ())
  2561. (20 location-defined? #f () ())
  2562. (21 scheme-level-0 #f () ())
  2563. (22 scheme-level-0 #f () ())
  2564. (23 time #f () ())
  2565. (24 scheme-level-0 #f () ())
  2566. (25 scheme-level-0 #f () ())
  2567. (26 template-set! #f () ())
  2568. (27 scheme-level-0 #f () ())
  2569. (28 scheme-level-0 #f () ())
  2570. (29 set-current-proposal! #f () ())
  2571. (30 scheme-level-0 #f () ())
  2572. (31 scheme-level-0 #f () ())
  2573. (32 scheme-level-0 #f () ())
  2574. (33 cons #f () ())
  2575. (34 scheme-level-0 #f () ())
  2576. (35 scheme-level-0 #f () ())
  2577. (36 wait #f () ())
  2578. (37 scheme-level-0 #f () ())
  2579. (38 scheme-level-0 #f () ())
  2580. (39 poll #f () ())
  2581. (40 scheme-level-0 #f () ())
  2582. (41 scheme-level-0 #f () ())
  2583. (42 trap #f () ())
  2584. (43 scheme-level-0 #f () ())
  2585. (44 scheme-level-0 #f () ())
  2586. (45 assq #f () ())
  2587. (46 scheme-level-0 #f () ())
  2588. (47 scheme-level-0 #f () ())
  2589. (48 resume-interrupted-call-to-native-code #f () ())
  2590. (49 scheme-level-0 #f () ())
  2591. (50 scheme-level-0 #f () ())
  2592. (51 current-proposal #f () ())
  2593. (52 scheme-level-0 #f () ())
  2594. (53 scheme-level-0 #f () ())
  2595. (54 make-weak-pointer #f () ())
  2596. (55 scheme-level-0 #f () ())
  2597. (56 scheme-level-0 #f () ())
  2598. (57 scalar-value? #f () ())
  2599. (58 scheme-level-0 #f () ())
  2600. (59 scheme-level-0 #f () ())
  2601. (60 lookup-shared-binding #f () ())
  2602. (61 scheme-level-0 #f () ())
  2603. (62 scheme-level-0 #f () ())
  2604. (63 push #f () ())
  2605. (64 scheme-level-0 #f () ())
  2606. (65 scheme-level-0 #f () ())
  2607. (66 provisional-set-contents! #f () ())
  2608. (67 scheme-level-0 #f () ())
  2609. (68 scheme-level-0 #f () ())
  2610. (69 set-contents! #f () ())
  2611. (70 scheme-level-0 #f () ())
  2612. (71 scheme-level-0 #f () ())
  2613. (72 resume-interrupted-opcode-to-byte-code #f () ())
  2614. (73 scheme-level-0 #f () ())
  2615. (74 scheme-level-0 #f () ())
  2616. (75 read-char #f () ())
  2617. (76 scheme-level-0 #f () ())
  2618. (77 scheme-level-0 #f () ())
  2619. (78 make-cell #f () ())
  2620. (79 scheme-level-0 #f () ())
  2621. (80 scheme-level-0 #f () ())
  2622. (81 provisional-contents #f () ())
  2623. (82 scheme-level-0 #f () ())
  2624. (83 scheme-level-0 #f () ())
  2625. (84 sqrt #f () ())
  2626. (85 scheme-level-0 #f () ())
  2627. (86 scheme-level-0 #f () ())
  2628. (87 * #f () ())
  2629. (88 scheme-level-0 #f () ())
  2630. (89 scheme-level-0 #f () ())
  2631. (90 contents #f () ())
  2632. (91 scheme-level-0 #f () ())
  2633. (92 scheme-level-0 #f () ())
  2634. (93 + #f () ())
  2635. (94 scheme-level-0 #f () ())
  2636. (95 scheme-level-0 #f () ())
  2637. (96 peek-char #f () ())
  2638. (97 scheme-level-0 #f () ())
  2639. (98 scheme-level-0 #f () ())
  2640. (99 - #f () ())
  2641. (100 scheme-level-0 #f () ())
  2642. (101 scheme-level-0 #f () ())
  2643. (102 continuation-set! #f () ())
  2644. (103 scheme-level-0 #f () ())
  2645. (104 scheme-level-0 #f () ())
  2646. (105 / #f () ())
  2647. (106 scheme-level-0 #f () ())
  2648. (107 scheme-level-0 #f () ())
  2649. (108 weak-pointer? #f () ())
  2650. (109 scheme-level-0 #f () ())
  2651. (110 scheme-level-0 #f () ())
  2652. (111 atan1 #f () ())
  2653. (112 scheme-level-0 #f () ())
  2654. (113 scheme-level-0 #f () ())
  2655. (114 atan2 #f () ())
  2656. (115 scheme-level-0 #f () ())
  2657. (116 scheme-level-0 #f () ())
  2658. (117 quotient #f () ())
  2659. (118 scheme-level-0 #f () ())
  2660. (119 scheme-level-0 #f () ())
  2661. (120 close-channel #f () ())
  2662. (121 scheme-level-0 #f () ())
  2663. (122 scheme-level-0 #f () ())
  2664. (123 channel-abort #f () ())
  2665. (124 scheme-level-0 #f () ())
  2666. (125 scheme-level-0 #f () ())
  2667. (126 read-byte #f () ())
  2668. (127 scheme-level-0 #f () ())
  2669. (128 scheme-level-0 #f () ())
  2670. (129 char? #f () ())
  2671. (130 scheme-level-0 #f () ())
  2672. (131 scheme-level-0 #f () ())
  2673. (132 < #f () ())
  2674. (133 scheme-level-0 #f () ())
  2675. (134 scheme-level-0 #f () ())
  2676. (135 = #f () ())
  2677. (136 scheme-level-0 #f () ())
  2678. (137 scheme-level-0 #f () ())
  2679. (138 provisional-set-port-data! #f () ())
  2680. (139 scheme-level-0 #f () ())
  2681. (140 scheme-level-0 #f () ())
  2682. (141 cell? #f () ())
  2683. (142 scheme-level-0 #f () ())
  2684. (143 scheme-level-0 #f () ())
  2685. (144 > #f () ())
  2686. (145 scheme-level-0 #f () ())
  2687. (146 scheme-level-0 #f () ())
  2688. (147 make-location #f () ())
  2689. (148 scheme-level-0 #f () ())
  2690. (149 scheme-level-0 #f () ())
  2691. (150 imag-part #f () ())
  2692. (151 scheme-level-0 #f () ())
  2693. (152 scheme-level-0 #f () ())
  2694. (153 channel-parameter #f () ())
  2695. (154 scheme-level-0 #f () ())
  2696. (155 scheme-level-0 #f () ())
  2697. (156 set-port-data! #f () ())
  2698. (157 scheme-level-0 #f () ())
  2699. (158 scheme-level-0 #f () ())
  2700. (159 make-template #f () ())
  2701. (160 scheme-level-0 #f () ())
  2702. (161 scheme-level-0 #f () ())
  2703. (162 scalar-value->char #f () ())
  2704. (163 scheme-level-0 #f () ())
  2705. (164 scheme-level-0 #f () ())
  2706. (165 char->scalar-value #f () ())
  2707. (166 scheme-level-0 #f () ())
  2708. (167 scheme-level-0 #f () ())
  2709. (168 real? #f () ())
  2710. (169 scheme-level-0 #f () ())
  2711. (170 scheme-level-0 #f () ())
  2712. (171 peek-byte #f () ())
  2713. (172 scheme-level-0 #f () ())
  2714. (173 scheme-level-0 #f () ())
  2715. (174 real-part #f () ())
  2716. (175 scheme-level-0 #f () ())
  2717. (176 scheme-level-0 #f () ())
  2718. (177 provisional-port-data #f () ())
  2719. (178 scheme-level-0 #f () ())
  2720. (179 scheme-level-0 #f () ())
  2721. (180 record-length #f () ())
  2722. (181 scheme-level-0 #f () ())
  2723. (182 scheme-level-0 #f () ())
  2724. (183 port-data #f () ())
  2725. (184 scheme-level-0 #f () ())
  2726. (185 scheme-level-0 #f () ())
  2727. (186 pair? #f () ())
  2728. (187 scheme-level-0 #f () ())
  2729. (188 scheme-level-0 #f () ())
  2730. (189 provisional-set-port-lock! #f () ())
  2731. (190 scheme-level-0 #f () ())
  2732. (191 scheme-level-0 #f () ())
  2733. (192 make-port #f () ())
  2734. (193 scheme-level-0 #f () ())
  2735. (194 scheme-level-0 #f () ())
  2736. (195 set-port-lock! #f () ())
  2737. (196 scheme-level-0 #f () ())
  2738. (197 scheme-level-0 #f () ())
  2739. (198 bit-count #f () ())
  2740. (199 scheme-level-0 #f () ())
  2741. (200 scheme-level-0 #f () ())
  2742. (201 provisional-checked-record-ref #f () ())
  2743. (202 scheme-level-0 #f () ())
  2744. (203 scheme-level-0 #f () ())
  2745. (204 return-from-exception #f () ())
  2746. (205 scheme-level-0 #f () ())
  2747. (206 scheme-level-0 #f () ())
  2748. (207 provisional-port-lock #f () ())
  2749. (208 scheme-level-0 #f () ())
  2750. (209 scheme-level-0 #f () ())
  2751. (210 location? #f () ())
  2752. (211 scheme-level-0 #f () ())
  2753. (212 scheme-level-0 #f () ())
  2754. (213 checked-record-ref #f () ())
  2755. (214 scheme-level-0 #f () ())
  2756. (215 scheme-level-0 #f () ())
  2757. (216 channel-maybe-read #f () ())
  2758. (217 scheme-level-0 #f () ())
  2759. (218 scheme-level-0 #f () ())
  2760. (219 add-finalizer! #f () ())
  2761. (220 scheme-level-0 #f () ())
  2762. (221 scheme-level-0 #f () ())
  2763. (222 rational? #f () ())
  2764. (223 scheme-level-0 #f () ())
  2765. (224 scheme-level-0 #f () ())
  2766. (225 copy-string-chars! #f () ())
  2767. (226 scheme-level-0 #f () ())
  2768. (227 scheme-level-0 #f () ())
  2769. (228 template? #f () ())
  2770. (229 scheme-level-0 #f () ())
  2771. (230 scheme-level-0 #f () ())
  2772. (231 port-lock #f () ())
  2773. (232 scheme-level-0 #f () ())
  2774. (233 scheme-level-0 #f () ())
  2775. (234 vector-length #f () ())
  2776. (235 scheme-level-0 #f () ())
  2777. (236 scheme-level-0 #f () ())
  2778. (237 make-continuation #f () ())
  2779. (238 scheme-level-0 #f () ())
  2780. (239 scheme-level-0 #f () ())
  2781. (240 provisional-shared-binding-ref #f () ())
  2782. (241 scheme-level-0 #f () ())
  2783. (242 scheme-level-0 #f () ())
  2784. (243 string-length #f () ())
  2785. (244 scheme-level-0 #f () ())
  2786. (245 scheme-level-0 #f () ())
  2787. (246 shared-binding-ref #f () ())
  2788. (247 scheme-level-0 #f () ())
  2789. (248 scheme-level-0 #f () ())
  2790. (249 port? #f () ())
  2791. (250 scheme-level-0 #f () ())
  2792. (251 scheme-level-0 #f () ())
  2793. (252 angle #f () ())
  2794. (253 scheme-level-0 #f () ())
  2795. (254 scheme-level-0 #f () ())
  2796. (255 false #f () ())
  2797. (256 scheme-level-0 #f () ())
  2798. (257 scheme-level-0 #f () ())
  2799. (258 remainder #f () ())
  2800. (259 scheme-level-0 #f () ())
  2801. (260 scheme-level-0 #f () ())
  2802. (261 continuation? #f () ())
  2803. (262 scheme-level-0 #f () ())
  2804. (263 scheme-level-0 #f () ())
  2805. (264 channel-ready? #f () ())
  2806. (265 scheme-level-0 #f () ())
  2807. (266 scheme-level-0 #f () ())
  2808. (267 binary-reduce1 #f () ())
  2809. (268 scheme-level-0 #f () ())
  2810. (269 scheme-level-0 #f () ())
  2811. (270 binary-reduce2 #f () ())
  2812. (271 scheme-level-0 #f () ())
  2813. (272 scheme-level-0 #f () ())
  2814. (273 char<? #f () ())
  2815. (274 scheme-level-0 #f () ())
  2816. (275 scheme-level-0 #f () ())
  2817. (276 char=? #f () ())
  2818. (277 scheme-level-0 #f () ())
  2819. (278 scheme-level-0 #f () ())
  2820. (279 <= #f () ())
  2821. (280 scheme-level-0 #f () ())
  2822. (281 scheme-level-0 #f () ())
  2823. (282 magnitude #f () ())
  2824. (283 scheme-level-0 #f () ())
  2825. (284 scheme-level-0 #f () ())
  2826. (285 >= #f () ())
  2827. (286 scheme-level-0 #f () ())
  2828. (287 scheme-level-0 #f () ())
  2829. (288 with-continuation #f () ())
  2830. (289 scheme-level-0 #f () ())
  2831. (290 scheme-level-0 #f () ())
  2832. (291 floor #f () ())
  2833. (292 scheme-level-0 #f () ())
  2834. (293 scheme-level-0 #f () ())
  2835. (294 provisional-checked-record-set! #f () ())
  2836. (295 scheme-level-0 #f () ())
  2837. (296 scheme-level-0 #f () ())
  2838. (297 apply #f () ())
  2839. (298 scheme-level-0 #f () ())
  2840. (299 scheme-level-0 #f () ())
  2841. (300 memory-status #f () ())
  2842. (301 scheme-level-0 #f () ())
  2843. (302 scheme-level-0 #f () ())
  2844. (303 checked-record-set! #f () ())
  2845. (304 scheme-level-0 #f () ())
  2846. (305 scheme-level-0 #f () ())
  2847. (306 inexact->exact #f () ())
  2848. (307 scheme-level-0 #f () ())
  2849. (308 scheme-level-0 #f () ())
  2850. (309 exact->inexact #f () ())
  2851. (310 scheme-level-0 #f () ())
  2852. (311 scheme-level-0 #f () ())
  2853. (312 provisional-set-port-crlf?! #f () ())
  2854. (313 scheme-level-0 #f () ())
  2855. (314 scheme-level-0 #f () ())
  2856. (315 extended-number-length #f () ())
  2857. (316 scheme-level-0 #f () ())
  2858. (317 scheme-level-0 #f () ())
  2859. (318 set-port-crlf?! #f () ())
  2860. (319 scheme-level-0 #f () ())
  2861. (320 scheme-level-0 #f () ())
  2862. (321 open-channels-list #f () ())
  2863. (322 scheme-level-0 #f () ())
  2864. (323 scheme-level-0 #f () ())
  2865. (324 provisional-shared-binding-set! #f () ())
  2866. (325 scheme-level-0 #f () ())
  2867. (326 scheme-level-0 #f () ())
  2868. (327 channel-id #f () ())
  2869. (328 scheme-level-0 #f () ())
  2870. (329 scheme-level-0 #f () ())
  2871. (330 provisional-port-crlf? #f () ())
  2872. (331 scheme-level-0 #f () ())
  2873. (332 scheme-level-0 #f () ())
  2874. (333 shared-binding-set! #f () ())
  2875. (334 scheme-level-0 #f () ())
  2876. (335 scheme-level-0 #f () ())
  2877. (336 port-crlf? #f () ())
  2878. (337 scheme-level-0 #f () ())
  2879. (338 scheme-level-0 #f () ())
  2880. (339 numerator #f () ())
  2881. (340 scheme-level-0 #f () ())
  2882. (341 scheme-level-0 #f () ())
  2883. (342 eof-object #f () ())
  2884. (343 scheme-level-0 #f () ())
  2885. (344 scheme-level-0 #f () ())
  2886. (345 byte-vector-length #f () ())
  2887. (346 scheme-level-0 #f () ())
  2888. (347 scheme-level-0 #f () ())
  2889. (348 resume-native-poll #f () ())
  2890. (349 scheme-level-0 #f () ())
  2891. (350 scheme-level-0 #f () ())
  2892. (351 record-ref #f () ())
  2893. (352 scheme-level-0 #f () ())
  2894. (353 scheme-level-0 #f () ())
  2895. (354 make-polar #f () ())
  2896. (355 scheme-level-0 #f () ())
  2897. (356 scheme-level-0 #f () ())
  2898. (357 write-char #f () ())
  2899. (358 scheme-level-0 #f () ())
  2900. (359 scheme-level-0 #f () ())
  2901. (360 symbol->string #f () ())
  2902. (361 scheme-level-0 #f () ())
  2903. (362 scheme-level-0 #f () ())
  2904. (363 exact? #f () ())
  2905. (364 scheme-level-0 #f () ())
  2906. (365 scheme-level-0 #f () ())
  2907. (366 push-false #f () ())
  2908. (367 scheme-level-0 #f () ())
  2909. (368 scheme-level-0 #f () ())
  2910. (369 provisional-vector-ref #f () ())
  2911. (370 scheme-level-0 #f () ())
  2912. (371 scheme-level-0 #f () ())
  2913. (372 vector-ref #f () ())
  2914. (373 scheme-level-0 #f () ())
  2915. (374 scheme-level-0 #f () ())
  2916. (375 set-current-thread! #f () ())
  2917. (376 scheme-level-0 #f () ())
  2918. (377 scheme-level-0 #f () ())
  2919. (378 provisional-set-port-index! #f () ())
  2920. (379 scheme-level-0 #f () ())
  2921. (380 scheme-level-0 #f () ())
  2922. (381 immutable? #f () ())
  2923. (382 scheme-level-0 #f () ())
  2924. (383 scheme-level-0 #f () ())
  2925. (384 set-exception-handlers! #f () ())
  2926. (385 scheme-level-0 #f () ())
  2927. (386 scheme-level-0 #f () ())
  2928. (387 string-ref #f () ())
  2929. (388 scheme-level-0 #f () ())
  2930. (389 scheme-level-0 #f () ())
  2931. (390 set-port-index! #f () ())
  2932. (391 scheme-level-0 #f () ())
  2933. (392 scheme-level-0 #f () ())
  2934. (393 provisional-set-port-limit! #f () ())
  2935. (394 scheme-level-0 #f () ())
  2936. (395 scheme-level-0 #f () ())
  2937. (396 make-shared-binding #f () ())
  2938. (397 scheme-level-0 #f () ())
  2939. (398 scheme-level-0 #f () ())
  2940. (399 current-thread #f () ())
  2941. (400 scheme-level-0 #f () ())
  2942. (401 scheme-level-0 #f () ())
  2943. (402 provisional-port-index #f () ())
  2944. (403 scheme-level-0 #f () ())
  2945. (404 scheme-level-0 #f () ())
  2946. (405 channel-status #f () ())
  2947. (406 scheme-level-0 #f () ())
  2948. (407 scheme-level-0 #f () ())
  2949. (408 set-port-limit! #f () ())
  2950. (409 scheme-level-0 #f () ())
  2951. (410 scheme-level-0 #f () ())
  2952. (411 shared-binding-name #f () ())
  2953. (412 scheme-level-0 #f () ())
  2954. (413 scheme-level-0 #f () ())
  2955. (414 port-index #f () ())
  2956. (415 scheme-level-0 #f () ())
  2957. (416 scheme-level-0 #f () ())
  2958. (417 make-immutable! #f () ())
  2959. (418 scheme-level-0 #f () ())
  2960. (419 scheme-level-0 #f () ())
  2961. (420 write-byte #f () ())
  2962. (421 scheme-level-0 #f () ())
  2963. (422 scheme-level-0 #f () ())
  2964. (423 byte-vector-logging-ref #f () ())
  2965. (424 scheme-level-0 #f () ())
  2966. (425 scheme-level-0 #f () ())
  2967. (426 set-enabled-interrupts! #f () ())
  2968. (427 scheme-level-0 #f () ())
  2969. (428 scheme-level-0 #f () ())
  2970. (429 provisional-port-limit #f () ())
  2971. (430 scheme-level-0 #f () ())
  2972. (431 scheme-level-0 #f () ())
  2973. (432 port-limit #f () ())
  2974. (433 scheme-level-0 #f () ())
  2975. (434 scheme-level-0 #f () ())
  2976. (435 undefine-shared-binding #f () ())
  2977. (436 scheme-level-0 #f () ())
  2978. (437 scheme-level-0 #f () ())
  2979. (438 channel-close-silently? #f () ())
  2980. (439 scheme-level-0 #f () ())
  2981. (440 scheme-level-0 #f () ())
  2982. (441 attempt-copy-bytes! #f () ())
  2983. (442 scheme-level-0 #f () ())
  2984. (443 scheme-level-0 #f () ())
  2985. (444 record-set! #f () ())
  2986. (445 scheme-level-0 #f () ())
  2987. (446 scheme-level-0 #f () ())
  2988. (447 shared-binding? #f () ())
  2989. (448 scheme-level-0 #f () ())
  2990. (449 scheme-level-0 #f () ())
  2991. (450 eof-object? #f () ())
  2992. (451 scheme-level-0 #f () ())
  2993. (452 scheme-level-0 #f () ())
  2994. (453 set-interrupt-handlers! #f () ())
  2995. (454 scheme-level-0 #f () ())
  2996. (455 scheme-level-0 #f () ())
  2997. (456 record #f () ())
  2998. (457 scheme-level-0 #f () ())
  2999. (458 scheme-level-0 #f () ())
  3000. (459 schedule-interrupt #f () ())
  3001. (460 scheme-level-0 #f () ())
  3002. (461 scheme-level-0 #f () ())
  3003. (462 channel-maybe-write #f () ())
  3004. (463 scheme-level-0 #f () ())
  3005. (464 scheme-level-0 #f () ())
  3006. (465 unspecific #f () ())
  3007. (466 scheme-level-0 #f () ())
  3008. (467 scheme-level-0 #f () ())
  3009. (468 provisional-vector-set! #f () ())
  3010. (469 scheme-level-0 #f () ())
  3011. (470 scheme-level-0 #f () ())
  3012. (471 extended-number-ref #f () ())
  3013. (472 scheme-level-0 #f () ())
  3014. (473 scheme-level-0 #f () ())
  3015. (474 vector-set! #f () ())
  3016. (475 scheme-level-0 #f () ())
  3017. (476 scheme-level-0 #f () ())
  3018. (477 decode-char #f () ())
  3019. (478 scheme-level-0 #f () ())
  3020. (479 scheme-level-0 #f () ())
  3021. (480 copy-bytes! #f () ())
  3022. (481 scheme-level-0 #f () ())
  3023. (482 scheme-level-0 #f () ())
  3024. (483 string-set! #f () ())
  3025. (484 scheme-level-0 #f () ())
  3026. (485 scheme-level-0 #f () ())
  3027. (486 unassigned #f () ())
  3028. (487 scheme-level-0 #f () ())
  3029. (488 scheme-level-0 #f () ())
  3030. (489 call-external-value #f () ())
  3031. (490 scheme-level-0 #f () ())
  3032. (491 scheme-level-0 #f () ())
  3033. (492 values #f () ())
  3034. (493 scheme-level-0 #f () ())
  3035. (494 scheme-level-0 #f () ())
  3036. (495 intern #f () ())
  3037. (496 scheme-level-0 #f () ())
  3038. (497 scheme-level-0 #f () ())
  3039. (498 vector #f () ())
  3040. (499 scheme-level-0 #f () ())
  3041. (500 scheme-level-0 #f () ())
  3042. (501 write-image-low #f () ())
  3043. (502 scheme-level-0 #f () ())
  3044. (503 scheme-level-0 #f () ())
  3045. (504 provisional-byte-vector-ref #f () ())
  3046. (505 scheme-level-0 #f () ())
  3047. (506 scheme-level-0 #f () ())
  3048. (507 encode-char #f () ())
  3049. (508 scheme-level-0 #f () ())
  3050. (509 scheme-level-0 #f () ())
  3051. (510 byte-vector-logging-set! #f () ())
  3052. (511 scheme-level-0 #f () ())
  3053. (512 scheme-level-0 #f () ())
  3054. (513 byte-vector-ref #f () ())
  3055. (514 scheme-level-0 #f () ())
  3056. (515 scheme-level-0 #f () ())
  3057. (516 make-double #f () ())
  3058. (517 scheme-level-0 #f () ())
  3059. (518 scheme-level-0 #f () ())
  3060. (519 provisional-set-location-id! #f () ())
  3061. (520 scheme-level-0 #f () ())
  3062. (521 scheme-level-0 #f () ())
  3063. (522 make-record #f () ())
  3064. (523 scheme-level-0 #f () ())
  3065. (524 scheme-level-0 #f () ())
  3066. (525 set-location-id! #f () ())
  3067. (526 scheme-level-0 #f () ())
  3068. (527 scheme-level-0 #f () ())
  3069. (528 provisional-location-id #f () ())
  3070. (529 scheme-level-0 #f () ())
  3071. (530 scheme-level-0 #f () ())
  3072. (531 decode-char! #f () ())
  3073. (532 scheme-level-0 #f () ())
  3074. (533 scheme-level-0 #f () ())
  3075. (534 location-id #f () ())
  3076. (535 scheme-level-0 #f () ())
  3077. (536 scheme-level-0 #f () ())
  3078. (537 bitwise-and #f () ())
  3079. (538 scheme-level-0 #f () ())
  3080. (539 scheme-level-0 #f () ())
  3081. (540 eq? #f () ())
  3082. (541 scheme-level-0 #f () ())
  3083. (542 scheme-level-0 #f () ())
  3084. (543 encode-char! #f () ())
  3085. (544 scheme-level-0 #f () ())
  3086. (545 scheme-level-0 #f () ())
  3087. (546 double? #f () ())
  3088. (547 scheme-level-0 #f () ())
  3089. (548 scheme-level-0 #f () ())
  3090. (549 extended-number-set! #f () ())
  3091. (550 scheme-level-0 #f () ())
  3092. (551 scheme-level-0 #f () ())
  3093. (552 make-vector #f () ())
  3094. (553 scheme-level-0 #f () ())
  3095. (554 scheme-level-0 #f () ())
  3096. (555 record? #f () ())
  3097. (556 scheme-level-0 #f () ())
  3098. (557 scheme-level-0 #f () ())
  3099. (558 provisional-set-port-buffer! #f () ())
  3100. (559 scheme-level-0 #f () ())
  3101. (560 scheme-level-0 #f () ())
  3102. (561 make-string #f () ())
  3103. (562 scheme-level-0 #f () ())
  3104. (563 scheme-level-0 #f () ())
  3105. (564 find-undefined-imported-bindings #f () ())
  3106. (565 scheme-level-0 #f () ())
  3107. (566 scheme-level-0 #f () ())
  3108. (567 set-port-buffer! #f () ())
  3109. (568 scheme-level-0 #f () ())
  3110. (569 scheme-level-0 #f () ())
  3111. (570 primitive-catch #f () ())
  3112. (571 scheme-level-0 #f () ())
  3113. (572 scheme-level-0 #f () ())
  3114. (573 string-hash #f () ())
  3115. (574 scheme-level-0 #f () ())
  3116. (575 scheme-level-0 #f () ())
  3117. (576 provisional-byte-vector-set! #f () ())
  3118. (577 scheme-level-0 #f () ())
  3119. (578 scheme-level-0 #f () ())
  3120. (579 template-length #f () ())
  3121. (580 scheme-level-0 #f () ())
  3122. (581 scheme-level-0 #f () ())
  3123. (582 provisional-port-buffer #f () ())
  3124. (583 scheme-level-0 #f () ())
  3125. (584 scheme-level-0 #f () ())
  3126. (585 number? #f () ())
  3127. (586 scheme-level-0 #f () ())
  3128. (587 scheme-level-0 #f () ())
  3129. (588 provisional-set-port-pending-cr?! #f () ())
  3130. (589 scheme-level-0 #f () ())
  3131. (590 scheme-level-0 #f () ())
  3132. (591 provisional-set-port-text-codec-spec! #f () ())
  3133. (592 scheme-level-0 #f () ())
  3134. (593 scheme-level-0 #f () ())
  3135. (594 port-buffer #f () ())
  3136. (595 scheme-level-0 #f () ())
  3137. (596 scheme-level-0 #f () ())
  3138. (597 byte-vector-set! #f () ())
  3139. (598 scheme-level-0 #f () ())
  3140. (599 scheme-level-0 #f () ())
  3141. (600 bitwise-ior #f () ())
  3142. (601 scheme-level-0 #f () ())
  3143. (602 scheme-level-0 #f () ())
  3144. (603 set-port-pending-cr?! #f () ())
  3145. (604 scheme-level-0 #f () ())
  3146. (605 scheme-level-0 #f () ())
  3147. (606 set-port-text-codec-spec! #f () ())
  3148. (607 scheme-level-0 #f () ())
  3149. (608 scheme-level-0 #f () ())
  3150. (609 provisional-set-car! #f () ())
  3151. (610 scheme-level-0 #f () ())
  3152. (611 scheme-level-0 #f () ())
  3153. (612 provisional-set-cdr! #f () ())
  3154. (613 scheme-level-0 #f () ())
  3155. (614 scheme-level-0 #f () ())
  3156. (615 set-car! #f () ())
  3157. (616 scheme-level-0 #f () ())
  3158. (617 scheme-level-0 #f () ())
  3159. (618 provisional-port-pending-cr? #f () ())
  3160. (619 scheme-level-0 #f () ())
  3161. (620 scheme-level-0 #f () ())
  3162. (621 provisional-port-text-codec-spec #f () ())
  3163. (622 scheme-level-0 #f () ())
  3164. (623 scheme-level-0 #f () ())
  3165. (624 closure-env #f () ())
  3166. (625 scheme-level-0 #f () ())
  3167. (626 scheme-level-0 #f () ())
  3168. (627 vector? #f () ())
  3169. (628 scheme-level-0 #f () ())
  3170. (629 scheme-level-0 #f () ())
  3171. (630 bitwise-not #f () ())
  3172. (631 scheme-level-0 #f () ())
  3173. (632 scheme-level-0 #f () ())
  3174. (633 set-cdr! #f () ())
  3175. (634 scheme-level-0 #f () ())
  3176. (635 scheme-level-0 #f () ())
  3177. (636 port-pending-cr? #f () ())
  3178. (637 scheme-level-0 #f () ())
  3179. (638 scheme-level-0 #f () ())
  3180. (639 port-text-codec-spec #f () ())
  3181. (640 scheme-level-0 #f () ())
  3182. (641 scheme-level-0 #f () ())
  3183. (642 provisional-car #f () ())
  3184. (643 scheme-level-0 #f () ())
  3185. (644 scheme-level-0 #f () ())
  3186. (645 symbol? #f () ())
  3187. (646 scheme-level-0 #f () ())
  3188. (647 scheme-level-0 #f () ())
  3189. (648 string? #f () ())
  3190. (649 scheme-level-0 #f () ())
  3191. (650 scheme-level-0 #f () ())
  3192. (651 provisional-cdr #f () ())
  3193. (652 scheme-level-0 #f () ())
  3194. (653 scheme-level-0 #f () ())
  3195. (654 car #f () ())
  3196. (655 scheme-level-0 #f () ())
  3197. (656 scheme-level-0 #f () ())
  3198. (657 bitwise-xor #f () ())
  3199. (658 scheme-level-0 #f () ())
  3200. (659 scheme-level-0 #f () ())
  3201. (660 cdr #f () ())
  3202. (661 scheme-level-0 #f () ())
  3203. (662 scheme-level-0 #f () ())
  3204. (663 find-all-records #f () ())
  3205. (664 scheme-level-0 #f () ())
  3206. (665 scheme-level-0 #f () ())
  3207. (666 continuation-length #f () ())
  3208. (667 scheme-level-0 #f () ())
  3209. (668 scheme-level-0 #f () ())
  3210. (669 log #f () ())
  3211. (670 scheme-level-0 #f () ())
  3212. (671 scheme-level-0 #f () ())
  3213. (672 message #f () ())
  3214. (673 scheme-level-0 #f () ())
  3215. (674 scheme-level-0 #f () ())
  3216. (675 tan #f () ())
  3217. (676 scheme-level-0 #f () ())
  3218. (677 scheme-level-0 #f () ())
  3219. (678 collect #f () ())
  3220. (679 scheme-level-0 #f () ())
  3221. (680 scheme-level-0 #f () ())
  3222. (681 cos #f () ())
  3223. (682 scheme-level-0 #f () ())
  3224. (683 scheme-level-0 #f () ())
  3225. (684 channel-os-index #f () ())
  3226. (685 scheme-level-0 #f () ())
  3227. (686 scheme-level-0 #f () ())
  3228. (687 provisional-set-port-status! #f () ())
  3229. (688 scheme-level-0 #f () ())
  3230. (689 scheme-level-0 #f () ())
  3231. (690 make-extended-number #f () ())
  3232. (691 scheme-level-0 #f () ())
  3233. (692 scheme-level-0 #f () ())
  3234. (693 set-port-status! #f () ())
  3235. (694 scheme-level-0 #f () ())
  3236. (695 scheme-level-0 #f () ())
  3237. (696 sin #f () ())
  3238. (697 scheme-level-0 #f () ())
  3239. (698 scheme-level-0 #f () ())
  3240. (699 exp #f () ())
  3241. (700 scheme-level-0 #f () ())
  3242. (701 scheme-level-0 #f () ())
  3243. (702 provisional-port-status #f () ())
  3244. (703 scheme-level-0 #f () ())
  3245. (704 scheme-level-0 #f () ())
  3246. (705 pop #f () ())
  3247. (706 scheme-level-0 #f () ())
  3248. (707 scheme-level-0 #f () ())
  3249. (708 port-status #f () ())
  3250. (709 scheme-level-0 #f () ())
  3251. (710 scheme-level-0 #f () ())
  3252. (711 return-from-callback #f () ())
  3253. (712 scheme-level-0 #f () ())
  3254. (713 scheme-level-0 #f () ())
  3255. (714 make-byte-vector #f () ())
  3256. (715 scheme-level-0 #f () ())
  3257. (716 scheme-level-0 #f () ())
  3258. (717 weak-pointer-ref #f () ())
  3259. (718 scheme-level-0 #f () ())
  3260. (719 scheme-level-0 #f () ())
  3261. (720 call-with-values #f () ())
  3262. (721 scheme-level-0 #f () ())
  3263. (722 scheme-level-0 #f () ())
  3264. (723 denominator #f () ())
  3265. (724 scheme-level-0 #f () ())
  3266. (725 scheme-level-0 #f () ())
  3267. (726 reverse-list->string #f () ())
  3268. (727 scheme-level-0 #f () ())
  3269. (728 scheme-level-0 #f () ())
  3270. (729 extended-number? #f () ())
  3271. (730 scheme-level-0 #f () ())
  3272. (731 scheme-level-0 #f () ())
  3273. (732 shared-binding-is-import? #f () ())
  3274. (733 scheme-level-0 #f () ())
  3275. (734 scheme-level-0 #f () ())
  3276. (735 provisional-cell-ref #f () ())
  3277. (736 scheme-level-0 #f () ())
  3278. (737 scheme-level-0 #f () ())
  3279. (738 return-from-native-exception #f () ())
  3280. (739 scheme-level-0 #f () ())
  3281. (740 scheme-level-0 #f () ())
  3282. (741 os-error-message #f () ())
  3283. (742 scheme-level-0 #f () ())
  3284. (743 scheme-level-0 #f () ())
  3285. (744 find-all #f () ())
  3286. (745 scheme-level-0 #f () ())
  3287. (746 scheme-level-0 #f () ())
  3288. (747 cell-ref #f () ())
  3289. (748 scheme-level-0 #f () ())
  3290. (749 scheme-level-0 #f () ())
  3291. (750 byte-vector? #f () ())
  3292. (751 scheme-level-0 #f () ())
  3293. (752 scheme-level-0 #f () ())
  3294. (753 string=? #f () ())
  3295. (754 scheme-level-0 #f () ())
  3296. (755 scheme-level-0 #f () ())
  3297. (756 open-channel #f () ())
  3298. (757 scheme-level-0 #f () ())
  3299. (758 scheme-level-0 #f () ())
  3300. (759 channel? #f () ())
  3301. (760 scheme-level-0 #f () ())
  3302. (761 scheme-level-0 #f () ())
  3303. (762 unassigned-check #f () ())
  3304. (763 scheme-level-0 #f () ())
  3305. (764 scheme-level-0 #f () ())
  3306. (765 make-rectangular #f () ())
  3307. (766 scheme-level-0 #f () ())
  3308. (767 scheme-level-0 #f () ())
  3309. (768 set-session-data! #f () ())
  3310. (769 scheme-level-0 #f () ())
  3311. (770 scheme-level-0 #f () ())
  3312. (771 maybe-commit #f () ())
  3313. (772 scheme-level-0 #f () ())
  3314. (773 scheme-level-0 #f () ())
  3315. (774 template-ref #f () ())
  3316. (775 scheme-level-0 #f () ())
  3317. (776 scheme-level-0 #f () ())
  3318. (777 make-closure #f () ())
  3319. (778 scheme-level-0 #f () ())
  3320. (779 scheme-level-0 #f () ())
  3321. (780 session-data #f () ())
  3322. (781 scheme-level-0 #f () ())
  3323. (782 scheme-level-0 #f () ())
  3324. (783 integer? #f () ())
  3325. (784 scheme-level-0 #f () ())
  3326. (785 scheme-level-0 #f () ())
  3327. (786 signal-condition #f () ())
  3328. (787 scheme-level-0 #f () ())
  3329. (788 scheme-level-0 #f () ())
  3330. (789 provisional-set-port-pending-eof?! #f () ())
  3331. (790 scheme-level-0 #f () ())
  3332. (791 scheme-level-0 #f () ())
  3333. (792 port-handler #f () ())
  3334. (793 scheme-level-0 #f () ())
  3335. (794 scheme-level-0 #f () ())
  3336. (795 set-port-pending-eof?! #f () ())
  3337. (796 scheme-level-0 #f () ())
  3338. (797 scheme-level-0 #f () ())
  3339. (798 arithmetic-shift #f () ())
  3340. (799 scheme-level-0 #f () ())
  3341. (800 scheme-level-0 #f () ())
  3342. (801 provisional-port-pending-eof? #f () ())
  3343. (802 scheme-level-0 #f () ())
  3344. (803 scheme-level-0 #f () ())
  3345. (804 provisional-cell-set! #f () ())
  3346. (805 scheme-level-0 #f () ())
  3347. (806 scheme-level-0 #f () ())
  3348. (807 complex? #f () ())
  3349. (808 scheme-level-0 #f () ())
  3350. (809 scheme-level-0 #f () ())
  3351. (810 port-pending-eof? #f () ())
  3352. (811 scheme-level-0 #f () ())
  3353. (812 scheme-level-0 #f () ())
  3354. (813 cell-set! #f () ())
  3355. (814 scheme-level-0 #f () ())
  3356. (815 scheme-level-0 #f () ())
  3357. (816 scheme-level-0 #f () ())
  3358. (817 closure? #f () ())
  3359. (818 scheme-level-0 #f () ())
  3360. (819 scheme-level-0 #f () ())
  3361. (820 continuation-ref #f () ())
  3362. (821 scheme-level-0 #f () ())
  3363. (822 scheme-level-0 #f () ())
  3364. (823 closure-template #f () ())
  3365. (824 scheme-level-0 #f () ())
  3366. (825 scheme-level-0 #f () ())
  3367. (826 current-cont #f () ())
  3368. (827 scheme-level-0 #f () ())
  3369. (828 scheme-level-0 #f () ())
  3370. (829 char->ascii 828 () ())
  3371. (830 scheme-level-0 #f () ())
  3372. (831 ascii->char 830 () ())
  3373. (832 scheme-level-0 #f () ())
  3374. (833 char->integer 832 () ())
  3375. (834 scheme-level-0 #f () ())
  3376. (835 integer->char 834 () ())
  3377. (836 scheme-level-0 #f () ())
  3378. (837 invoke-closure 836 () ())
  3379. (838 scheme-level-0 #f () ())
  3380. (839 primitive-cwcc 838 () ())
  3381. (840 #f 839 () ())
  3382. (841 scheme-level-0 #f () ())
  3383. (842 make-undefined-location 841 () ())
  3384. (843 scheme-level-0 #f () ())
  3385. (844 location-assigned? 843 () ())
  3386. (845 scheme-level-0 #f () ())
  3387. (846 cell-unassigned? 845 () ())
  3388. (847 scheme-level-0 #f () ())
  3389. (848 vector-unassigned? 847 () ())
  3390. (849 scheme-level-0 #f () ())
  3391. (850 string-copy 849 () ())
  3392. (851 scheme-level-0 #f () ())
  3393. (852 string->symbol 851 () ())
  3394. (853 scheme-level-0 #f () ())
  3395. (854 input-port? 853 () ())
  3396. (855 scheme-level-0 #f () ())
  3397. (856 output-port? 855 () ())
  3398. (857 scheme-level-0 #f () ())
  3399. (858 record-type 857 () ())
  3400. (859 scheme-level-0 #f () ())
  3401. (860 make-code-vector 859 () ())
  3402. (861 scheme-level-0 #f () ())
  3403. (862 code-vector? 861 () ())
  3404. (863 scheme-level-0 #f () ())
  3405. (864 code-vector-length 863 () ())
  3406. (865 scheme-level-0 #f () ())
  3407. (866 code-vector-ref 865 () ())
  3408. (867 scheme-level-0 #f () ())
  3409. (868 code-vector-set! 867 () ())
  3410. (869 scheme-level-0 #f () ())
  3411. (870 lookup-imported-binding 869 () ())
  3412. (871 scheme-level-0 #f () ())
  3413. (872 lookup-exported-binding 871 () ())
  3414. (873 scheme-level-0 #f () ())
  3415. (874 define-imported-binding 873 () ())
  3416. (875 scheme-level-0 #f () ())
  3417. (876 define-exported-binding 875 () ())
  3418. (877 scheme-level-0 #f () ())
  3419. (878 undefine-imported-binding 877 () ())
  3420. (879 scheme-level-0 #f () ())
  3421. (880 undefine-exported-binding 879 () ())
  3422. (881 scheme-level-0 #f () ())
  3423. (882 secret-length 881 () ())
  3424. (883 scheme-level-0 #f () ())
  3425. (884 byte-vector 883 () ())
  3426. (885 loop##1 884 () ())
  3427. (886 scheme-level-0 #f () ())
  3428. (887 debug-message 886 () ())
  3429. (888 scheme-level-0 #f () ())
  3430. (889 signal 888 () ())
  3431. (890 scheme-level-0 #f () ())
  3432. (891 vector-prefix->list 890 () ())
  3433. (892 loop##2 891 () ())
  3434. (893 scheme-level-0 #f () ())
  3435. (894 write-image 893 () ())
  3436. (895 scheme-level-0 #f () ())
  3437. (896 make-proposal 895 () ())
  3438. (897 scheme-level-0 #f () ())
  3439. (898 error 897 () ())
  3440. (899 scheme-level-0 #f () ())
  3441. (900 warn 899 () ())
  3442. (901 scheme-level-0 #f () ())
  3443. (902 note 901 () ())
  3444. (903 scheme-level-0 #f () ())
  3445. (904 syntax-error 903 () ())
  3446. (905 scheme-level-0 #f () ())
  3447. (906 call-error 905 () ())
  3448. (907 scheme-level-0 #f () ())
  3449. (908 scheme-level-0 #f () ())
  3450. (909 scheme-level-0 #f () ())
  3451. (910 scheme-level-1 #f () ())
  3452. (911 scheme-level-1 #f () ())
  3453. (912 scheme-level-1 #f () ())
  3454. (913 scheme-level-1 #f () ())
  3455. (914 scheme-level-1 #f () ())
  3456. (915 scheme-level-1 #f () ())
  3457. (916 scheme-level-1 #f () ())
  3458. (917 scheme-level-1 #f () ())
  3459. (918 scheme-level-1 #f () ())
  3460. (919 scheme-level-1 #f () ())
  3461. (920 scheme-level-1 #f () ())
  3462. (921 scheme-level-1 #f () ())
  3463. (922 scheme-level-1 #f () ())
  3464. (923 scheme-level-1 #f () ())
  3465. (924 scheme-level-1 #f () ())
  3466. (925 scheme-level-1 #f () ())
  3467. (926 scheme-level-1 #f () ())
  3468. (927 scheme-level-1 #f () ())
  3469. (928 #f 927 () ())
  3470. (929 scheme-level-1 #f () ())
  3471. (930 #f 929 () ())
  3472. (931 scheme-level-1 #f () ())
  3473. (932 scheme-level-1 #f () ())
  3474. (933 char-whitespace?-proc 932 () ())
  3475. (934 scheme-level-1 #f () ())
  3476. (935 char-whitespace? 934 () ())
  3477. (936 scheme-level-1 #f () ())
  3478. (937 not 936 () ())
  3479. (938 scheme-level-1 #f () ())
  3480. (939 char>=? 938 () ())
  3481. (940 scheme-level-1 #f () ())
  3482. (941 char>? 940 () ())
  3483. (942 scheme-level-1 #f () ())
  3484. (943 char<=? 942 () ())
  3485. (944 scheme-level-1 #f () ())
  3486. (945 char-lower-case?-proc 944 () ())
  3487. (946 scheme-level-1 #f () ())
  3488. (947 char-lower-case? 946 () ())
  3489. (948 scheme-level-1 #f () ())
  3490. (949 char-upper-case?-proc 948 () ())
  3491. (950 scheme-level-1 #f () ())
  3492. (951 char-upper-case? 950 () ())
  3493. (952 scheme-level-1 #f () ())
  3494. (953 char-numeric?-proc 952 () ())
  3495. (954 scheme-level-1 #f () ())
  3496. (955 char-numeric? 954 () ())
  3497. (956 scheme-level-1 #f () ())
  3498. (957 char-alphabetic?-proc 956 () ())
  3499. (958 scheme-level-1 #f () ())
  3500. (959 char-alphabetic? 958 () ())
  3501. (960 scheme-level-1 #f () ())
  3502. (961 make-character-map 960 () ())
  3503. (962 loop##5 961 () ())
  3504. (963 scheme-level-1 #f () ())
  3505. (964 char-upcase-proc 963 () ())
  3506. (965 scheme-level-1 #f () ())
  3507. (966 char-upcase 965 () ())
  3508. (967 scheme-level-1 #f () ())
  3509. (968 char-downcase-proc 967 () ())
  3510. (969 scheme-level-1 #f () ())
  3511. (970 char-downcase 969 () ())
  3512. (971 scheme-level-1 #f () ())
  3513. (972 char-foldcase 971 () ())
  3514. (973 scheme-level-1 #f () ())
  3515. (974 char-ci-compare 973 () ())
  3516. (975 #f 974 () ())
  3517. (976 scheme-level-1 #f () ())
  3518. (977 set-char-map-procedures! 976 () ())
  3519. (978 scheme-level-1 #f () ())
  3520. (979 boolean? 978 () ())
  3521. (980 scheme-level-1 #f () ())
  3522. (981 eqv? 980 () ())
  3523. (982 scheme-level-1 #f () ())
  3524. (983 equal? 982 () ())
  3525. (984 loop 983 () ())
  3526. (985 scheme-level-1 #f () ())
  3527. (986 null? 985 () ())
  3528. (987 scheme-level-1 #f () ())
  3529. (988 inexact? 987 () ())
  3530. (989 scheme-level-1 #f () ())
  3531. (990 max-or-min 989 () ())
  3532. (991 loop 990 () ())
  3533. (992 scheme-level-1 #f () ())
  3534. (993 max 992 () ())
  3535. (994 scheme-level-1 #f () ())
  3536. (995 min 994 () ())
  3537. (996 scheme-level-1 #f () ())
  3538. (997 abs 996 () ())
  3539. (998 scheme-level-1 #f () ())
  3540. (999 zero? 998 () ())
  3541. (1000 scheme-level-1 #f () ())
  3542. (1001 positive? 1000 () ())
  3543. (1002 scheme-level-1 #f () ())
  3544. (1003 negative? 1002 () ())
  3545. (1004 scheme-level-1 #f () ())
  3546. (1005 even? 1004 () ())
  3547. (1006 scheme-level-1 #f () ())
  3548. (1007 odd? 1006 () ())
  3549. (1008 scheme-level-1 #f () ())
  3550. (1009 caar 1008 () ())
  3551. (1010 scheme-level-1 #f () ())
  3552. (1011 cadr 1010 () ())
  3553. (1012 scheme-level-1 #f () ())
  3554. (1013 cdar 1012 () ())
  3555. (1014 scheme-level-1 #f () ())
  3556. (1015 cddr 1014 () ())
  3557. (1016 scheme-level-1 #f () ())
  3558. (1017 caaar 1016 () ())
  3559. (1018 scheme-level-1 #f () ())
  3560. (1019 caadr 1018 () ())
  3561. (1020 scheme-level-1 #f () ())
  3562. (1021 cadar 1020 () ())
  3563. (1022 scheme-level-1 #f () ())
  3564. (1023 caddr 1022 () ())
  3565. (1024 scheme-level-1 #f () ())
  3566. (1025 cdaar 1024 () ())
  3567. (1026 scheme-level-1 #f () ())
  3568. (1027 cdadr 1026 () ())
  3569. (1028 scheme-level-1 #f () ())
  3570. (1029 cddar 1028 () ())
  3571. (1030 scheme-level-1 #f () ())
  3572. (1031 cdddr 1030 () ())
  3573. (1032 scheme-level-1 #f () ())
  3574. (1033 caaaar 1032 () ())
  3575. (1034 scheme-level-1 #f () ())
  3576. (1035 caaadr 1034 () ())
  3577. (1036 scheme-level-1 #f () ())
  3578. (1037 caadar 1036 () ())
  3579. (1038 scheme-level-1 #f () ())
  3580. (1039 caaddr 1038 () ())
  3581. (1040 scheme-level-1 #f () ())
  3582. (1041 cadaar 1040 () ())
  3583. (1042 scheme-level-1 #f () ())
  3584. (1043 cadadr 1042 () ())
  3585. (1044 scheme-level-1 #f () ())
  3586. (1045 caddar 1044 () ())
  3587. (1046 scheme-level-1 #f () ())
  3588. (1047 cadddr 1046 () ())
  3589. (1048 scheme-level-1 #f () ())
  3590. (1049 cdaaar 1048 () ())
  3591. (1050 scheme-level-1 #f () ())
  3592. (1051 cdaadr 1050 () ())
  3593. (1052 scheme-level-1 #f () ())
  3594. (1053 cdadar 1052 () ())
  3595. (1054 scheme-level-1 #f () ())
  3596. (1055 cdaddr 1054 () ())
  3597. (1056 scheme-level-1 #f () ())
  3598. (1057 cddaar 1056 () ())
  3599. (1058 scheme-level-1 #f () ())
  3600. (1059 cddadr 1058 () ())
  3601. (1060 scheme-level-1 #f () ())
  3602. (1061 cdddar 1060 () ())
  3603. (1062 scheme-level-1 #f () ())
  3604. (1063 cddddr 1062 () ())
  3605. (1064 scheme-level-1 #f () ())
  3606. (1065 list 1064 () ())
  3607. (1066 scheme-level-1 #f () ())
  3608. (1067 real-length 1066 () ())
  3609. (1068 scheme-level-1 #f () ())
  3610. (1069 length 1068 () ())
  3611. (1070 scheme-level-1 #f () ())
  3612. (1071 reduce 1070 () ())
  3613. (1072 scheme-level-1 #f () ())
  3614. (1073 append 1072 () ())
  3615. (1074 recur 1073 () ())
  3616. (1075 scheme-level-1 #f () ())
  3617. (1076 append-reverse 1075 () ())
  3618. (1077 scheme-level-1 #f () ())
  3619. (1078 reverse 1077 () ())
  3620. (1079 scheme-level-1 #f () ())
  3621. (1080 list-tail 1079 () ())
  3622. (1081 scheme-level-1 #f () ())
  3623. (1082 list-ref 1081 () ())
  3624. (1083 scheme-level-1 #f () ())
  3625. (1084 mem 1083 () ())
  3626. (1085 #f 1084 () ())
  3627. (1086 loop 1085 () ())
  3628. (1087 scheme-level-1 #f () ())
  3629. (1088 ass 1087 () ())
  3630. (1089 #f 1088 () ())
  3631. (1090 loop 1089 () ())
  3632. (1091 scheme-level-1 #f () ())
  3633. (1092 list? 1091 () ())
  3634. (1093 recur 1092 () ())
  3635. (1094 scheme-level-1 #f () ())
  3636. (1095 list->string 1094 () ())
  3637. (1096 loop##12 1095 () ())
  3638. (1097 scheme-level-1 #f () ())
  3639. (1098 string 1097 () ())
  3640. (1099 scheme-level-1 #f () ())
  3641. (1100 substring 1099 () ())
  3642. (1101 loop##13 1100 () ())
  3643. (1102 scheme-level-1 #f () ())
  3644. (1103 string-append 1102 () ())
  3645. (1104 #f 1103 () ())
  3646. (1105 loop 1103 () ())
  3647. (1106 loop##14 1105 () ())
  3648. (1107 scheme-level-1 #f () ())
  3649. (1108 string->list 1107 () ())
  3650. (1109 loop##15 1108 () ())
  3651. (1110 scheme-level-1 #f () ())
  3652. (1111 unspecific 1110 () ())
  3653. (1112 scheme-level-1 #f () ())
  3654. (1113 string-fill! 1112 () ())
  3655. (1114 loop##16 1113 () ())
  3656. (1115 scheme-level-1 #f () ())
  3657. (1116 make-string=? 1115 () ())
  3658. (1117 #f 1116 () ())
  3659. (1118 loop 1117 () ())
  3660. (1119 scheme-level-1 #f () ())
  3661. (1120 string-ci=? 1119 () ())
  3662. (1121 scheme-level-1 #f () ())
  3663. (1122 make-string<? 1121 () ())
  3664. (1123 #f 1122 () ())
  3665. (1124 loop 1123 () ())
  3666. (1125 scheme-level-1 #f () ())
  3667. (1126 string-ci<? 1125 () ())
  3668. (1127 scheme-level-1 #f () ())
  3669. (1128 string>? 1127 () ())
  3670. (1129 scheme-level-1 #f () ())
  3671. (1130 string<=? 1129 () ())
  3672. (1131 scheme-level-1 #f () ())
  3673. (1132 string>=? 1131 () ())
  3674. (1133 scheme-level-1 #f () ())
  3675. (1134 string-ci>? 1133 () ())
  3676. (1135 scheme-level-1 #f () ())
  3677. (1136 string-ci<=? 1135 () ())
  3678. (1137 scheme-level-1 #f () ())
  3679. (1138 string-ci>=? 1137 () ())
  3680. (1139 scheme-level-1 #f () ())
  3681. (1140 set-string-ci-procedures! 1139 () ())
  3682. (1141 scheme-level-1 #f () ())
  3683. (1142 vector->list 1141 () ())
  3684. (1143 loop##18 1142 () ())
  3685. (1144 scheme-level-1 #f () ())
  3686. (1145 list->vector 1144 () ())
  3687. (1146 loop##19 1145 () ())
  3688. (1147 scheme-level-1 #f () ())
  3689. (1148 vector-fill! 1147 () ())
  3690. (1149 loop##20 1148 () ())
  3691. (1150 scheme-level-1 #f () ())
  3692. (1151 map1 1150 () ())
  3693. (1152 scheme-level-1 #f () ())
  3694. (1153 any 1152 () ())
  3695. (1154 scheme-level-1 #f () ())
  3696. (1155 map2+ 1154 () ())
  3697. (1156 scheme-level-1 #f () ())
  3698. (1157 map 1156 () ())
  3699. (1158 scheme-level-1 #f () ())
  3700. (1159 for-each1 1158 () ())
  3701. (1160 loop 1159 () ())
  3702. (1161 scheme-level-1 #f () ())
  3703. (1162 for-each2+ 1161 () ())
  3704. (1163 loop 1162 () ())
  3705. (1164 scheme-level-1 #f () ())
  3706. (1165 for-each 1164 () ())
  3707. (1166 scheme-level-1 #f () ())
  3708. (1167 make-promise 1166 () ())
  3709. (1168 #f 1167 () ())
  3710. (1169 scheme-level-1 #f () ())
  3711. (1170 force 1169 () ())
  3712. (1171 scheme-level-1 #f () ())
  3713. (1172 filter 1171 () ())
  3714. (1173 #f 1172 () ())
  3715. (1174 scheme-level-1 #f () ())
  3716. (1175 pos 1174 () ())
  3717. (1176 #f 1175 () ())
  3718. (1177 loop 1176 () ())
  3719. (1178 scheme-level-1 #f () ())
  3720. (1179 every 1178 () ())
  3721. (1180 scheme-level-1 #f () ())
  3722. (1181 sublist 1180 () ())
  3723. (1182 recur 1181 () ())
  3724. (1183 scheme-level-1 #f () ())
  3725. (1184 last 1183 () ())
  3726. (1185 scheme-level-1 #f () ())
  3727. (1186 insert 1185 () ())
  3728. (1187 scheme-level-1 #f () ())
  3729. (1188 symbol-append 1187 () ())
  3730. (1189 scheme-level-1 #f () ())
  3731. (1190 fold 1189 () ())
  3732. (1191 loop##24 1190 () ())
  3733. (1192 scheme-level-1 #f () ())
  3734. (1193 fold->2 1192 () ())
  3735. (1194 loop 1193 () ())
  3736. (1195 #f 1194 () ())
  3737. (1196 #f 1194 () ())
  3738. (1197 scheme-level-1 #f () ())
  3739. (1198 fold->3 1197 () ())
  3740. (1199 loop 1198 () ())
  3741. (1200 #f 1199 () ())
  3742. (1201 #f 1199 () ())
  3743. (1202 scheme-level-1 #f () ())
  3744. (1203 modulo 1202 () ())
  3745. (1204 scheme-level-1 #f () ())
  3746. (1205 ceiling 1204 () ())
  3747. (1206 scheme-level-1 #f () ())
  3748. (1207 truncate 1206 () ())
  3749. (1208 scheme-level-1 #f () ())
  3750. (1209 round 1208 () ())
  3751. (1210 scheme-level-1 #f () ())
  3752. (1211 euclid 1210 () ())
  3753. (1212 scheme-level-1 #f () ())
  3754. (1213 gcd 1212 () ())
  3755. (1214 #f 1213 () ())
  3756. (1215 scheme-level-1 #f () ())
  3757. (1216 lcm 1215 () ())
  3758. (1217 #f 1216 () ())
  3759. (1218 scheme-level-1 #f () ())
  3760. (1219 raise-to-integer-power 1218 () ())
  3761. (1220 loop 1219 () ())
  3762. (1221 scheme-level-1 #f () ())
  3763. (1222 expt 1221 () ())
  3764. (1223 scheme-level-1 #f () ())
  3765. (1224 simplest-rational 1223 () ())
  3766. (1225 simplest-rational-internal 1224 () ())
  3767. (1226 scheme-level-1 #f () ())
  3768. (1227 rationalize 1226 () ())
  3769. (1228 record-types #f () ())
  3770. (1229 #f 1228 () ())
  3771. (1230 record-types #f () ())
  3772. (1231 record-types #f () ())
  3773. (1232 record-types #f () ())
  3774. (1233 record-types #f () ())
  3775. (1234 record-type-name 1233 () ())
  3776. (1235 record-types #f () ())
  3777. (1236 make-default-record-discloser 1235 () ())
  3778. (1237 #f 1236 () ())
  3779. (1238 record-types #f () ())
  3780. (1239 make-record-type 1238 () ())
  3781. (1240 record-types #f () ())
  3782. (1241 record-type? 1240 () ())
  3783. (1242 record-types #f () ())
  3784. (1243 record-type-resumer 1242 () ())
  3785. (1244 record-types #f () ())
  3786. (1245 set-record-type-resumer! 1244 () ())
  3787. (1246 record-types #f () ())
  3788. (1247 record-type-uid 1246 () ())
  3789. (1248 record-types #f () ())
  3790. (1249 record-type-field-names 1248 () ())
  3791. (1250 record-types #f () ())
  3792. (1251 record-type-number-of-fields 1250 () ())
  3793. (1252 record-types #f () ())
  3794. (1253 record-type-discloser 1252 () ())
  3795. (1254 record-types #f () ())
  3796. (1255 set-record-type-discloser! 1254 () ())
  3797. (1256 record-types #f () ())
  3798. (1257 record-field-index 1256 () ())
  3799. (1258 loop 1257 () ())
  3800. (1259 record-types #f () ())
  3801. (1260 record-constructor 1259 () ())
  3802. (1261 #f 1260 () ())
  3803. (1262 #f 1260 () ())
  3804. (1263 loop 1262 () ())
  3805. (1264 record-types #f () ())
  3806. (1265 record-accessor 1264 () ())
  3807. (1266 #f 1265 () ())
  3808. (1267 record-types #f () ())
  3809. (1268 record-modifier 1267 () ())
  3810. (1269 #f 1268 () ())
  3811. (1270 record-types #f () ())
  3812. (1271 record-predicate 1270 () ())
  3813. (1272 #f 1271 () ())
  3814. (1273 record-types #f () ())
  3815. (1274 define-record-discloser 1273 () ())
  3816. (1275 record-types #f () ())
  3817. (1276 disclose-record 1275 () ())
  3818. (1277 record-types #f () ())
  3819. (1278 define-record-resumer 1277 () ())
  3820. (1279 record-types #f () ())
  3821. (1280 resume-record 1279 () ())
  3822. (1281 record-types #f () ())
  3823. (1282 initialize-records! 1281 () ())
  3824. (1283 loop##27 1282 () ())
  3825. (1284 record-types #f () ())
  3826. (1285 record-types #f () ())
  3827. (1286 record-types #f () ())
  3828. (1287 record-types #f () ())
  3829. (1288 define-record-types #f () ())
  3830. (1289 methods #f () ())
  3831. (1290 &add-method! 1289 () ())
  3832. (1291 methods #f () ())
  3833. (1292 &disclose 1291 () ())
  3834. (1293 methods #f () ())
  3835. (1294 &disclose 1293 () ())
  3836. (1295 methods #f () ())
  3837. (1296 methods #f () ())
  3838. (1297 disclose 1296 () ())
  3839. (1298 methods #f () ())
  3840. (1299 &same-type? 1298 () ())
  3841. (1300 methods #f () ())
  3842. (1301 &type-priority 1300 () ())
  3843. (1302 methods #f () ())
  3844. (1303 &type-predicate 1302 () ())
  3845. (1304 methods #f () ())
  3846. (1305 #f 1304 () ())
  3847. (1306 methods #f () ())
  3848. (1307 singleton-value 1306 () ())
  3849. (1308 methods #f () ())
  3850. (1309 singleton 1308 () ())
  3851. (1310 methods #f () ())
  3852. (1311 methods #f () ())
  3853. (1312 &same-type? 1311 () ())
  3854. (1313 methods #f () ())
  3855. (1314 &same-type? 1313 () ())
  3856. (1315 methods #f () ())
  3857. (1316 methods #f () ())
  3858. (1317 same-type? 1316 () ())
  3859. (1318 methods #f () ())
  3860. (1319 &type-superiors 1318 () ())
  3861. (1320 methods #f () ())
  3862. (1321 &type-superiors 1320 () ())
  3863. (1322 methods #f () ())
  3864. (1323 methods #f () ())
  3865. (1324 type-superiors 1323 () ())
  3866. (1325 methods #f () ())
  3867. (1326 &type-priority 1325 () ())
  3868. (1327 methods #f () ())
  3869. (1328 &type-priority 1327 () ())
  3870. (1329 methods #f () ())
  3871. (1330 methods #f () ())
  3872. (1331 type-priority 1330 () ())
  3873. (1332 methods #f () ())
  3874. (1333 &type-predicate 1332 () ())
  3875. (1334 methods #f () ())
  3876. (1335 &type-predicate 1334 () ())
  3877. (1336 methods #f () ())
  3878. (1337 methods #f () ())
  3879. (1338 type-predicate 1337 () ())
  3880. (1339 methods #f () ())
  3881. (1340 add-method! 1339 () ())
  3882. (1341 methods #f () ())
  3883. (1342 methods #f () ())
  3884. (1343 add-method! 1342 () ())
  3885. (1344 methods #f () ())
  3886. (1345 #f 1344 () ())
  3887. (1346 methods #f () ())
  3888. (1347 set-method-table-methods! 1346 () ())
  3889. (1348 methods #f () ())
  3890. (1349 method-table-methods 1348 () ())
  3891. (1350 methods #f () ())
  3892. (1351 method-table-prototype 1350 () ())
  3893. (1352 methods #f () ())
  3894. (1353 make-generic 1352 () ())
  3895. (1354 methods #f () ())
  3896. (1355 method-table-get-perform 1354 () ())
  3897. (1356 methods #f () ())
  3898. (1357 method-table-set-perform! 1356 () ())
  3899. (1358 methods #f () ())
  3900. (1359 method-table-id 1358 () ())
  3901. (1360 methods #f () ())
  3902. (1361 really-make-method-table 1360 () ())
  3903. (1362 methods #f () ())
  3904. (1363 methods #f () ())
  3905. (1364 #f 1363 () ())
  3906. (1365 methods #f () ())
  3907. (1366 method-info-types 1365 () ())
  3908. (1367 methods #f () ())
  3909. (1368 method-info-n-ary? 1367 () ())
  3910. (1369 methods #f () ())
  3911. (1370 method-info-proc 1369 () ())
  3912. (1371 methods #f () ())
  3913. (1372 really-make-method-info 1371 () ())
  3914. (1373 methods #f () ())
  3915. (1374 methods #f () ())
  3916. (1375 record-type-priority 1374 () ())
  3917. (1376 methods #f () ())
  3918. (1377 methods #f () ())
  3919. (1378 methods #f () ())
  3920. (1379 methods #f () ())
  3921. (1380 methods #f () ())
  3922. (1381 methods #f () ())
  3923. (1382 methods #f () ())
  3924. (1383 methods #f () ())
  3925. (1384 methods #f () ())
  3926. (1385 methods #f () ())
  3927. (1386 methods #f () ())
  3928. (1387 methods #f () ())
  3929. (1388 methods #f () ())
  3930. (1389 #f 1388 () ())
  3931. (1390 methods #f () ())
  3932. (1391 methods #f () ())
  3933. (1392 methods #f () ())
  3934. (1393 methods #f () ())
  3935. (1394 methods #f () ())
  3936. (1395 methods #f () ())
  3937. (1396 #f 1395 () ())
  3938. (1397 methods #f () ())
  3939. (1398 methods #f () ())
  3940. (1399 methods #f () ())
  3941. (1400 methods #f () ())
  3942. (1401 #f 1400 () ())
  3943. (1402 methods #f () ())
  3944. (1403 simple-type-superiors 1402 () ())
  3945. (1404 methods #f () ())
  3946. (1405 simple-type-predicate 1404 () ())
  3947. (1406 methods #f () ())
  3948. (1407 simple-type-priority 1406 () ())
  3949. (1408 methods #f () ())
  3950. (1409 simple-type-id 1408 () ())
  3951. (1410 methods #f () ())
  3952. (1411 really-make-simple-type 1410 () ())
  3953. (1412 methods #f () ())
  3954. (1413 methods #f () ())
  3955. (1414 simple-type? 1413 () ())
  3956. (1415 methods #f () ())
  3957. (1416 %type-priority 1415 () ())
  3958. (1417 methods #f () ())
  3959. (1418 compute-priority 1417 () ())
  3960. (1419 methods #f () ())
  3961. (1420 make-simple-type 1419 () ())
  3962. (1421 methods #f () ())
  3963. (1422 %type-predicate 1421 () ())
  3964. (1423 methods #f () ())
  3965. (1424 %same-type? 1423 () ())
  3966. (1425 methods #f () ())
  3967. (1426 value? 1425 () ())
  3968. (1427 methods #f () ())
  3969. (1428 method-info? 1427 () ())
  3970. (1429 methods #f () ())
  3971. (1430 make-method-info 1429 () ())
  3972. (1431 methods #f () ())
  3973. (1432 empty-method-list 1431 () ())
  3974. (1433 methods #f () ())
  3975. (1434 more-specific-type? 1433 () ())
  3976. (1435 methods #f () ())
  3977. (1436 more-specific? 1435 () ())
  3978. (1437 loop 1436 () ())
  3979. (1438 methods #f () ())
  3980. (1439 every2 1438 () ())
  3981. (1440 methods #f () ())
  3982. (1441 same-applicability? 1440 () ())
  3983. (1442 methods #f () ())
  3984. (1443 insert-method 1442 () ())
  3985. (1444 recur 1443 () ())
  3986. (1445 methods #f () ())
  3987. (1446 method-table? 1445 () ())
  3988. (1447 methods #f () ())
  3989. (1448 last-action 1447 () ())
  3990. (1449 #f 1448 () ())
  3991. (1450 methods #f () ())
  3992. (1451 one-action 1450 () ())
  3993. (1452 #f 1451 () ())
  3994. (1453 #f 1452 () ())
  3995. (1454 methods #f () ())
  3996. (1455 check-for-next 1454 () ())
  3997. (1456 #f 1455 () ())
  3998. (1457 methods #f () ())
  3999. (1458 check-next 1457 () ())
  4000. (1459 #f 1458 () ())
  4001. (1460 methods #f () ())
  4002. (1461 argument-sequence-predicate 1460 () ())
  4003. (1462 recur 1461 () ())
  4004. (1463 methods #f () ())
  4005. (1464 methods->perform 1463 () ())
  4006. (1465 recur 1464 () ())
  4007. (1466 methods #f () ())
  4008. (1467 add-to-method-table! 1466 () ())
  4009. (1468 methods #f () ())
  4010. (1469 set-final-method! 1468 () ())
  4011. (1470 methods #f () ())
  4012. (1471 make-cell-for-generic 1470 () ())
  4013. (1472 #f 1471 () ())
  4014. (1473 #f 1471 () ())
  4015. (1474 #f 1471 () ())
  4016. (1475 methods #f () ())
  4017. (1476 make-method-table 1475 () ())
  4018. (1477 #f 1476 () ())
  4019. (1478 #f 1476 () ())
  4020. (1479 methods #f () ())
  4021. (1480 apply-generic 1479 () ())
  4022. (1481 methods #f () ())
  4023. (1482 compare-to 1481 () ())
  4024. (1483 #f 1482 () ())
  4025. (1484 methods #f () ())
  4026. (1485 proc->discloser 1484 () ())
  4027. (1486 #f 1485 () ())
  4028. (1487 #f 1486 () ())
  4029. (1488 methods #f () ())
  4030. (1489 number-i/o #f () ())
  4031. (1490 #f 1489 () ())
  4032. (1491 #f 1489 () ())
  4033. (1492 loop 1491 () ())
  4034. (1493 #f 1489 () ())
  4035. (1494 number-i/o #f () ())
  4036. (1495 set-exactness 1494 () ())
  4037. (1496 number-i/o #f () ())
  4038. (1497 &really-string->number 1496 () ())
  4039. (1498 number-i/o #f () ())
  4040. (1499 #f 1498 () ())
  4041. (1500 loop 1499 () ())
  4042. (1501 number-i/o #f () ())
  4043. (1502 &really-string->number 1501 () ())
  4044. (1503 number-i/o #f () ())
  4045. (1504 number-i/o #f () ())
  4046. (1505 number-i/o #f () ())
  4047. (1506 string->number 1505 () ())
  4048. (1507 loop 1506 () ())
  4049. (1508 radix-is 1507 () ())
  4050. (1509 radix-is 1507 () ())
  4051. (1510 loop 1507 () ())
  4052. (1511 number-i/o #f () ())
  4053. (1512 #f 1511 () ())
  4054. (1513 recur 1512 () ())
  4055. (1514 #f 1511 () ())
  4056. (1515 number-i/o #f () ())
  4057. (1516 &number->string 1515 () ())
  4058. (1517 number-i/o #f () ())
  4059. (1518 &number->string 1517 () ())
  4060. (1519 number-i/o #f () ())
  4061. (1520 number->string 1519 () ())
  4062. (1521 number-i/o #f () ())
  4063. (1522 number-i/o #f () ())
  4064. (1523 fluids #f () ())
  4065. (1524 fluids #f () ())
  4066. (1525 set-fluid-top-level-value! 1524 () ())
  4067. (1526 fluids #f () ())
  4068. (1527 fluid-top-level-value 1526 () ())
  4069. (1528 fluids #f () ())
  4070. (1529 make-fluid 1528 () ())
  4071. (1530 fluids #f () ())
  4072. (1531 fluids #f () ())
  4073. (1532 thread-dynamic-env 1531 () ())
  4074. (1533 fluids #f () ())
  4075. (1534 thread-dynamic-point 1533 () ())
  4076. (1535 fluids #f () ())
  4077. (1536 thread-proposal 1535 () ())
  4078. (1537 fluids #f () ())
  4079. (1538 make-thread 1537 () ())
  4080. (1539 fluids #f () ())
  4081. (1540 fluids #f () ())
  4082. (1541 get-dynamic-env 1540 () ())
  4083. (1542 fluids #f () ())
  4084. (1543 set-dynamic-env! 1542 () ())
  4085. (1544 fluids #f () ())
  4086. (1545 get-dynamic-point 1544 () ())
  4087. (1546 fluids #f () ())
  4088. (1547 set-dynamic-point! 1546 () ())
  4089. (1548 fluids #f () ())
  4090. (1549 empty-dynamic-env 1548 () ())
  4091. (1550 fluids #f () ())
  4092. (1551 initialize-dynamic-state! 1550 () ())
  4093. (1552 fluids #f () ())
  4094. (1553 with-dynamic-env 1552 () ())
  4095. (1554 #f 1553 () ())
  4096. (1555 fluids #f () ())
  4097. (1556 fluid 1555 () ())
  4098. (1557 fluids #f () ())
  4099. (1558 set-fluid! 1557 () ())
  4100. (1559 fluids #f () ())
  4101. (1560 let-fluid 1559 () ())
  4102. (1561 fluids #f () ())
  4103. (1562 let-fluids 1561 () ())
  4104. (1563 loop 1562 () ())
  4105. (1564 fluids #f () ())
  4106. (1565 fluid-cell-ref 1564 () ())
  4107. (1566 fluids #f () ())
  4108. (1567 fluid-cell-set! 1566 () ())
  4109. (1568 enumerated #f () ())
  4110. (1569 lookup-enumerand 1568 () ())
  4111. (1570 loop 1569 () ())
  4112. (1571 architecture #f () ())
  4113. (1572 architecture #f () ())
  4114. (1573 architecture #f () ())
  4115. (1574 architecture #f () ())
  4116. (1575 architecture #f () ())
  4117. (1576 architecture #f () ())
  4118. (1577 architecture #f () ())
  4119. (1578 architecture #f () ())
  4120. (1579 architecture #f () ())
  4121. (1580 architecture #f () ())
  4122. (1581 architecture #f () ())
  4123. (1582 architecture #f () ())
  4124. (1583 architecture #f () ())
  4125. (1584 architecture #f () ())
  4126. (1585 architecture #f () ())
  4127. (1586 architecture #f () ())
  4128. (1587 architecture #f () ())
  4129. (1588 architecture #f () ())
  4130. (1589 architecture #f () ())
  4131. (1590 architecture #f () ())
  4132. (1591 architecture #f () ())
  4133. (1592 architecture #f () ())
  4134. (1593 architecture #f () ())
  4135. (1594 architecture #f () ())
  4136. (1595 architecture #f () ())
  4137. (1596 architecture #f () ())
  4138. (1597 architecture #f () ())
  4139. (1598 architecture #f () ())
  4140. (1599 architecture #f () ())
  4141. (1600 architecture #f () ())
  4142. (1601 architecture #f () ())
  4143. (1602 architecture #f () ())
  4144. (1603 architecture #f () ())
  4145. (1604 architecture #f () ())
  4146. (1605 architecture #f () ())
  4147. (1606 architecture #f () ())
  4148. (1607 architecture #f () ())
  4149. (1608 architecture #f () ())
  4150. (1609 architecture #f () ())
  4151. (1610 architecture #f () ())
  4152. (1611 architecture #f () ())
  4153. (1612 architecture #f () ())
  4154. (1613 architecture #f () ())
  4155. (1614 architecture #f () ())
  4156. (1615 next-protocol 1614 () ())
  4157. (1616 architecture #f () ())
  4158. (1617 architecture #f () ())
  4159. (1618 architecture #f () ())
  4160. (1619 architecture #f () ())
  4161. (1620 architecture #f () ())
  4162. (1621 architecture #f () ())
  4163. (1622 architecture #f () ())
  4164. (1623 architecture #f () ())
  4165. (1624 architecture #f () ())
  4166. (1625 architecture #f () ())
  4167. (1626 architecture #f () ())
  4168. (1627 architecture #f () ())
  4169. (1628 architecture #f () ())
  4170. (1629 architecture #f () ())
  4171. (1630 architecture #f () ())
  4172. (1631 proposals #f () ())
  4173. (1632 proposals #f () ())
  4174. (1633 invalidate-current-proposal! 1632 () ())
  4175. (1634 proposals #f () ())
  4176. (1635 remove-current-proposal! 1634 () ())
  4177. (1636 proposals #f () ())
  4178. (1637 call-ensuring-atomicity! 1636 () ())
  4179. (1638 proposals #f () ())
  4180. (1639 call-ensuring-atomicity 1638 () ())
  4181. (1640 proposals #f () ())
  4182. (1641 call-atomically! 1640 () ())
  4183. (1642 #f 1641 () ())
  4184. (1643 #f 1641 () ())
  4185. (1644 lose 1643 () ())
  4186. (1645 proposals #f () ())
  4187. (1646 call-atomically 1645 () ())
  4188. (1647 loop 1646 () ())
  4189. (1648 #f 1647 () ())
  4190. (1649 queues #f () ())
  4191. (1650 queues #f () ())
  4192. (1651 queue-uid 1650 () ())
  4193. (1652 queues #f () ())
  4194. (1653 set-queue-head! 1652 () ())
  4195. (1654 queues #f () ())
  4196. (1655 real-queue-head 1654 () ())
  4197. (1656 queues #f () ())
  4198. (1657 set-queue-tail! 1656 () ())
  4199. (1658 queues #f () ())
  4200. (1659 queue-tail 1658 () ())
  4201. (1660 queues #f () ())
  4202. (1661 really-make-queue 1660 () ())
  4203. (1662 queues #f () ())
  4204. (1663 queues #f () ())
  4205. (1664 queue? 1663 () ())
  4206. (1665 queues #f () ())
  4207. (1666 next-uid 1665 () ())
  4208. (1667 #f 1666 () ())
  4209. (1668 queues #f () ())
  4210. (1669 make-queue 1668 () ())
  4211. (1670 queues #f () ())
  4212. (1671 queue-empty? 1670 () ())
  4213. (1672 queues #f () ())
  4214. (1673 enqueue! 1672 () ())
  4215. (1674 #f 1673 () ())
  4216. (1675 queues #f () ())
  4217. (1676 queue-head 1675 () ())
  4218. (1677 #f 1676 () ())
  4219. (1678 queues #f () ())
  4220. (1679 dequeue! 1678 () ())
  4221. (1680 #f 1679 () ())
  4222. (1681 queues #f () ())
  4223. (1682 maybe-dequeue! 1681 () ())
  4224. (1683 #f 1682 () ())
  4225. (1684 queues #f () ())
  4226. (1685 empty-queue! 1684 () ())
  4227. (1686 #f 1685 () ())
  4228. (1687 queues #f () ())
  4229. (1688 on-queue? 1687 () ())
  4230. (1689 #f 1688 () ())
  4231. (1690 queues #f () ())
  4232. (1691 delete-from-queue-if! 1690 () ())
  4233. (1692 #f 1691 () ())
  4234. (1693 loop 1692 () ())
  4235. (1694 queues #f () ())
  4236. (1695 delete-from-queue! 1694 () ())
  4237. (1696 #f 1695 () ())
  4238. (1697 queues #f () ())
  4239. (1698 queue->list 1697 () ())
  4240. (1699 #f 1698 () ())
  4241. (1700 #f 1699 () ())
  4242. (1701 queues #f () ())
  4243. (1702 list->queue 1701 () ())
  4244. (1703 loop 1702 () ())
  4245. (1704 queues #f () ())
  4246. (1705 queue-length 1704 () ())
  4247. (1706 #f 1705 () ())
  4248. (1707 simple-conditions #f () ())
  4249. (1708 simple-conditions #f () ())
  4250. (1709 simple-conditions #f () ())
  4251. (1710 simple-conditions #f () ())
  4252. (1711 simple-conditions #f () ())
  4253. (1712 simple-conditions #f () ())
  4254. (1713 simple-conditions #f () ())
  4255. (1714 simple-conditions #f () ())
  4256. (1715 simple-conditions #f () ())
  4257. (1716 decoding-error-start 1715 () ())
  4258. (1717 simple-conditions #f () ())
  4259. (1718 decoding-error-bytes 1717 () ())
  4260. (1719 simple-conditions #f () ())
  4261. (1720 decoding-error-message 1719 () ())
  4262. (1721 simple-conditions #f () ())
  4263. (1722 decoding-error-encoding-name 1721 () ())
  4264. (1723 simple-conditions #f () ())
  4265. (1724 make-decoding-error 1723 () ())
  4266. (1725 simple-conditions #f () ())
  4267. (1726 simple-conditions #f () ())
  4268. (1727 simple-conditions #f () ())
  4269. (1728 make-i/o-error 1727 () ())
  4270. (1729 simple-conditions #f () ())
  4271. (1730 i/o-error-arguments 1729 () ())
  4272. (1731 simple-conditions #f () ())
  4273. (1732 i/o-error-operation 1731 () ())
  4274. (1733 simple-conditions #f () ())
  4275. (1734 i/o-error-message 1733 () ())
  4276. (1735 simple-conditions #f () ())
  4277. (1736 i/o-error-status 1735 () ())
  4278. (1737 simple-conditions #f () ())
  4279. (1738 simple-conditions #f () ())
  4280. (1739 simple-conditions #f () ())
  4281. (1740 make-vm-exception 1739 () ())
  4282. (1741 simple-conditions #f () ())
  4283. (1742 vm-exception-arguments 1741 () ())
  4284. (1743 simple-conditions #f () ())
  4285. (1744 vm-exception-reason 1743 () ())
  4286. (1745 simple-conditions #f () ())
  4287. (1746 vm-exception-opcode 1745 () ())
  4288. (1747 simple-conditions #f () ())
  4289. (1748 simple-conditions #f () ())
  4290. (1749 simple-conditions #f () ())
  4291. (1750 simple-conditions #f () ())
  4292. (1751 simple-conditions #f () ())
  4293. (1752 simple-conditions #f () ())
  4294. (1753 simple-conditions #f () ())
  4295. (1754 simple-conditions #f () ())
  4296. (1755 simple-conditions #f () ())
  4297. (1756 condition-predicate 1755 () ())
  4298. (1757 #f 1756 () ())
  4299. (1758 simple-conditions #f () ())
  4300. (1759 condition-stuff 1758 () ())
  4301. (1760 #f 1759 () ())
  4302. (1761 #f 1759 () ())
  4303. (1762 simple-conditions #f () ())
  4304. (1763 condition-type 1762 () ())
  4305. (1764 #f 1763 () ())
  4306. (1765 #f 1763 () ())
  4307. (1766 simple-conditions #f () ())
  4308. (1767 define-condition-decoder 1766 () ())
  4309. (1768 simple-conditions #f () ())
  4310. (1769 decode-condition 1768 () ())
  4311. (1770 loop 1769 () ())
  4312. (1771 simple-conditions #f () ())
  4313. (1772 simple-conditions #f () ())
  4314. (1773 define-condition-type 1772 () ())
  4315. (1774 #f 1773 () ())
  4316. (1775 simple-conditions #f () ())
  4317. (1776 condition-supertypes 1775 () ())
  4318. (1777 simple-conditions #f () ())
  4319. (1778 session-data #f () ())
  4320. (1779 make-session-data-slot! 1778 () ())
  4321. (1780 session-data #f () ())
  4322. (1781 session-data-ref 1780 () ())
  4323. (1782 session-data #f () ())
  4324. (1783 session-data-set! 1782 () ())
  4325. (1784 session-data #f () ())
  4326. (1785 initialize-session-data! 1784 () ())
  4327. (1786 session-data #f () ())
  4328. (1787 interrupts #f () ())
  4329. (1788 #f 1787 () ())
  4330. (1789 interrupts #f () ())
  4331. (1790 interrupts #f () ())
  4332. (1791 interrupts #f () ())
  4333. (1792 interrupts #f () ())
  4334. (1793 enabled-interrupts 1792 () ())
  4335. (1794 interrupts #f () ())
  4336. (1795 post-gc-handler 1794 () ())
  4337. (1796 #f 1795 () ())
  4338. (1797 #f 1796 () ())
  4339. (1798 #f 1796 () ())
  4340. (1799 #f 1798 () ())
  4341. (1800 #f 1798 () ())
  4342. (1801 interrupts #f () ())
  4343. (1802 initialize-interrupts! 1801 () ())
  4344. (1803 #f 1802 () ())
  4345. (1804 loop##93 1803 () ())
  4346. (1805 #f 1804 () ())
  4347. (1806 #f 1803 () ())
  4348. (1807 #f 1806 () ())
  4349. (1808 interrupts #f () ())
  4350. (1809 set-interrupt-handler! 1808 () ())
  4351. (1810 interrupts #f () ())
  4352. (1811 get-interrupt-handler 1810 () ())
  4353. (1812 interrupts #f () ())
  4354. (1813 with-interrupts 1812 () ())
  4355. (1814 #f 1813 () ())
  4356. (1815 interrupts #f () ())
  4357. (1816 with-interrupts-inhibited 1815 () ())
  4358. (1817 interrupts #f () ())
  4359. (1818 with-interrupts-allowed 1817 () ())
  4360. (1819 interrupts #f () ())
  4361. (1820 disable-interrupts! 1819 () ())
  4362. (1821 interrupts #f () ())
  4363. (1822 enable-interrupts! 1821 () ())
  4364. (1823 interrupts #f () ())
  4365. (1824 call-after-gc! 1823 () ())
  4366. (1825 interrupts #f () ())
  4367. (1826 call-before-heap-overflow! 1825 () ())
  4368. (1827 interrupts #f () ())
  4369. (1828 interrupts #f () ())
  4370. (1829 wind #f () ())
  4371. (1830 point-depth 1829 () ())
  4372. (1831 wind #f () ())
  4373. (1832 point-in 1831 () ())
  4374. (1833 wind #f () ())
  4375. (1834 point-out 1833 () ())
  4376. (1835 wind #f () ())
  4377. (1836 point-dynamic-env 1835 () ())
  4378. (1837 wind #f () ())
  4379. (1838 point-parent 1837 () ())
  4380. (1839 wind #f () ())
  4381. (1840 make-point 1839 () ())
  4382. (1841 wind #f () ())
  4383. (1842 wind #f () ())
  4384. (1843 dynamic-wind 1842 () ())
  4385. (1844 wind #f () ())
  4386. (1845 travel-to-point! 1844 () ())
  4387. (1846 wind #f () ())
  4388. (1847 continuation->procedure 1846 () ())
  4389. (1848 #f 1847 () ())
  4390. (1849 #f 1848 () ())
  4391. (1850 wind #f () ())
  4392. (1851 call-with-current-continuation 1850 () ())
  4393. (1852 #f 1851 () ())
  4394. (1853 vm-exceptions #f () ())
  4395. (1854 extend-opcode! 1853 () ())
  4396. (1855 except 1854 () ())
  4397. (1856 #f 1854 () ())
  4398. (1857 vm-exceptions #f () ())
  4399. (1858 #f 1857 () ())
  4400. (1859 vm-exceptions #f () ())
  4401. (1860 #f 1859 () ())
  4402. (1861 vm-exceptions #f () ())
  4403. (1862 initialize-vm-exceptions! 1861 () ())
  4404. (1863 vm-exceptions #f () ())
  4405. (1864 vm-exceptions #f () ())
  4406. (1865 signal-vm-exception 1864 () ())
  4407. (1866 vm-exceptions #f () ())
  4408. (1867 vm-exceptions #f () ())
  4409. (1868 define-vm-exception-handler 1867 () ())
  4410. (1869 templates #f () ())
  4411. (1870 template-code 1869 () ())
  4412. (1871 templates #f () ())
  4413. (1872 template-byte-code 1871 () ())
  4414. (1873 templates #f () ())
  4415. (1874 template-info 1873 () ())
  4416. (1875 templates #f () ())
  4417. (1876 template-package-id 1875 () ())
  4418. (1877 templates #f () ())
  4419. (1878 set-template-code! 1877 () ())
  4420. (1879 templates #f () ())
  4421. (1880 set-template-byte-code! 1879 () ())
  4422. (1881 templates #f () ())
  4423. (1882 set-template-info! 1881 () ())
  4424. (1883 templates #f () ())
  4425. (1884 set-template-package-id! 1883 () ())
  4426. (1885 templates #f () ())
  4427. (1886 more-types #f () ())
  4428. (1887 &disclose 1886 () ())
  4429. (1888 more-types #f () ())
  4430. (1889 more-types #f () ())
  4431. (1890 &disclose 1889 () ())
  4432. (1891 more-types #f () ())
  4433. (1892 more-types #f () ())
  4434. (1893 more-types #f () ())
  4435. (1894 more-types #f () ())
  4436. (1895 more-types #f () ())
  4437. (1896 more-types #f () ())
  4438. (1897 more-types #f () ())
  4439. (1898 more-types #f () ())
  4440. (1899 more-types #f () ())
  4441. (1900 continuations #f () ())
  4442. (1901 &disclose 1900 () ())
  4443. (1902 continuations #f () ())
  4444. (1903 continuations #f () ())
  4445. (1904 continuations #f () ())
  4446. (1905 continuations #f () ())
  4447. (1906 continuations #f () ())
  4448. (1907 continuations #f () ())
  4449. (1908 continuations #f () ())
  4450. (1909 continuations #f () ())
  4451. (1910 make-ref 1909 () ())
  4452. (1911 #f 1910 () ())
  4453. (1912 continuations #f () ())
  4454. (1913 vm-exception-continuation? 1912 () ())
  4455. (1914 continuations #f () ())
  4456. (1915 call-with-values-continuation? 1914 () ())
  4457. (1916 continuations #f () ())
  4458. (1917 continuation-pc 1916 () ())
  4459. (1918 continuations #f () ())
  4460. (1919 continuation-code 1918 () ())
  4461. (1920 continuations #f () ())
  4462. (1921 continuation-arg 1920 () ())
  4463. (1922 continuations #f () ())
  4464. (1923 continuation-template 1922 () ())
  4465. (1924 loop 1923 () ())
  4466. (1925 loop 1923 () ())
  4467. (1926 continuations #f () ())
  4468. (1927 continuation-arg-count 1926 () ())
  4469. (1928 continuations #f () ())
  4470. (1929 continuation-preview 1928 () ())
  4471. (1930 exceptions #f () ())
  4472. (1931 raise 1930 () ())
  4473. (1932 #f 1931 () ())
  4474. (1933 loop 1932 () ())
  4475. (1934 #f 1933 () ())
  4476. (1935 exceptions #f () ())
  4477. (1936 with-exception-handler 1935 () ())
  4478. (1937 #f 1936 () ())
  4479. (1938 exceptions #f () ())
  4480. (1939 &disclose 1938 () ())
  4481. (1940 exceptions #f () ())
  4482. (1941 &disclose 1940 () ())
  4483. (1942 exceptions #f () ())
  4484. (1943 report-errors-as-warnings 1942 () ())
  4485. (1944 #f 1943 () ())
  4486. (1945 exceptions #f () ())
  4487. (1946 ignore-errors 1945 () ())
  4488. (1947 #f 1946 () ())
  4489. (1948 #f 1947 () ())
  4490. (1949 exceptions #f () ())
  4491. (1950 report-utter-lossage 1949 () ())
  4492. (1951 #f 1950 () ())
  4493. (1952 exceptions #f () ())
  4494. (1953 last-resort-exception-handler 1952 () ())
  4495. (1954 #f 1953 () ())
  4496. (1955 #f 1954 () ())
  4497. (1956 exceptions #f () ())
  4498. (1957 initialize-exceptions! 1956 () ())
  4499. (1958 #f 1957 () ())
  4500. (1959 exceptions #f () ())
  4501. (1960 exceptions #f () ())
  4502. (1961 with-handler 1960 () ())
  4503. (1962 exceptions #f () ())
  4504. (1963 really-signal-condition 1962 () ())
  4505. (1964 loop 1963 () ())
  4506. (1965 #f 1964 () ())
  4507. (1966 threads #f () ())
  4508. (1967 threads #f () ())
  4509. (1968 threads #f () ())
  4510. (1969 threads #f () ())
  4511. (1970 threads #f () ())
  4512. (1971 threads #f () ())
  4513. (1972 threads #f () ())
  4514. (1973 #f 1972 () ())
  4515. (1974 threads #f () ())
  4516. (1975 set-thread-dynamic-env! 1974 () ())
  4517. (1976 threads #f () ())
  4518. (1977 thread-dynamic-env 1976 () ())
  4519. (1978 threads #f () ())
  4520. (1979 set-thread-dynamic-point! 1978 () ())
  4521. (1980 threads #f () ())
  4522. (1981 thread-dynamic-point 1980 () ())
  4523. (1982 threads #f () ())
  4524. (1983 thread-proposal 1982 () ())
  4525. (1984 threads #f () ())
  4526. (1985 set-thread-time! 1984 () ())
  4527. (1986 threads #f () ())
  4528. (1987 thread-time 1986 () ())
  4529. (1988 threads #f () ())
  4530. (1989 set-thread-continuation! 1988 () ())
  4531. (1990 threads #f () ())
  4532. (1991 thread-continuation 1990 () ())
  4533. (1992 threads #f () ())
  4534. (1993 set-thread-arguments! 1992 () ())
  4535. (1994 threads #f () ())
  4536. (1995 thread-arguments 1994 () ())
  4537. (1996 threads #f () ())
  4538. (1997 set-thread-scheduler! 1996 () ())
  4539. (1998 threads #f () ())
  4540. (1999 thread-scheduler 1998 () ())
  4541. (2000 threads #f () ())
  4542. (2001 set-thread-current-task! 2000 () ())
  4543. (2002 threads #f () ())
  4544. (2003 thread-current-task 2002 () ())
  4545. (2004 threads #f () ())
  4546. (2005 set-thread-events! 2004 () ())
  4547. (2006 threads #f () ())
  4548. (2007 thread-events 2006 () ())
  4549. (2008 threads #f () ())
  4550. (2009 set-thread-data! 2008 () ())
  4551. (2010 threads #f () ())
  4552. (2011 thread-data 2010 () ())
  4553. (2012 threads #f () ())
  4554. (2013 set-thread-cell! 2012 () ())
  4555. (2014 threads #f () ())
  4556. (2015 thread-cell 2014 () ())
  4557. (2016 threads #f () ())
  4558. (2017 thread-uid 2016 () ())
  4559. (2018 threads #f () ())
  4560. (2019 thread-name 2018 () ())
  4561. (2020 threads #f () ())
  4562. (2021 really-make-thread 2020 () ())
  4563. (2022 threads #f () ())
  4564. (2023 threads #f () ())
  4565. (2024 thread? 2023 () ())
  4566. (2025 threads #f () ())
  4567. (2026 compose-continuation 2025 () ())
  4568. (2027 #f 2026 () ())
  4569. (2028 #f 2027 () ())
  4570. (2029 #f 2028 () ())
  4571. (2030 #f 2029 () ())
  4572. (2031 #f 2030 () ())
  4573. (2032 threads #f () ())
  4574. (2033 thunk->continuation 2032 () ())
  4575. (2034 threads #f () ())
  4576. (2035 max2 2034 () ())
  4577. (2036 threads #f () ())
  4578. (2037 interrupt-timer-time 2036 () ())
  4579. (2038 threads #f () ())
  4580. (2039 debit-down! 2038 () ())
  4581. (2040 loop 2039 () ())
  4582. (2041 threads #f () ())
  4583. (2042 run-thread 2041 () ())
  4584. (2043 #f 2042 () ())
  4585. (2044 threads #f () ())
  4586. (2045 switch-to-thread 2044 () ())
  4587. (2046 #f 2045 () ())
  4588. (2047 threads #f () ())
  4589. (2048 suspend-to 2047 () ())
  4590. (2049 threads #f () ())
  4591. (2050 suspend 2049 () ())
  4592. (2051 threads #f () ())
  4593. (2052 thread-top-level 2051 () ())
  4594. (2053 thread-start 2052 () ())
  4595. (2054 #f 2053 () ())
  4596. (2055 threads #f () ())
  4597. (2056 make-thread 2055 () ())
  4598. (2057 threads #f () ())
  4599. (2058 all-threads 2057 () ())
  4600. (2059 threads #f () ())
  4601. (2060 thread-uid->thread 2059 () ())
  4602. (2061 loop 2060 () ())
  4603. (2062 threads #f () ())
  4604. (2063 add-event! 2062 () ())
  4605. (2064 threads #f () ())
  4606. (2065 next-event! 2064 () ())
  4607. (2066 threads #f () ())
  4608. (2067 maybe-dequeue-thread! 2066 () ())
  4609. (2068 loop 2067 () ())
  4610. (2069 threads #f () ())
  4611. (2070 thread-queue-empty? 2069 () ())
  4612. (2071 #f 2070 () ())
  4613. (2072 loop 2071 () ())
  4614. (2073 threads #f () ())
  4615. (2074 event-pending? 2073 () ())
  4616. (2075 threads #f () ())
  4617. (2076 min 2075 () ())
  4618. (2077 threads #f () ())
  4619. (2078 schedule-interrupt! 2077 () ())
  4620. (2079 threads #f () ())
  4621. (2080 run-next-thread 2079 () ())
  4622. (2081 threads #f () ())
  4623. (2082 debit-thread-times-and-run! 2081 () ())
  4624. (2083 loop 2082 () ())
  4625. (2084 threads #f () ())
  4626. (2085 find-and-run-next-thread 2084 () ())
  4627. (2086 loop 2085 () ())
  4628. (2087 threads #f () ())
  4629. (2088 run 2087 () ())
  4630. (2089 threads #f () ())
  4631. (2090 handle-timer-interrupt 2089 () ())
  4632. (2091 threads #f () ())
  4633. (2092 exit 2091 () ())
  4634. (2093 threads #f () ())
  4635. (2094 wait 2093 () ())
  4636. (2095 threads #f () ())
  4637. (2096 waiting? 2095 () ())
  4638. (2097 threads #f () ())
  4639. (2098 relinquish-timeslice 2097 () ())
  4640. (2099 threads #f () ())
  4641. (2100 block 2099 () ())
  4642. (2101 threads #f () ())
  4643. (2102 maybe-commit-and-block 2101 () ())
  4644. (2103 threads #f () ())
  4645. (2104 maybe-commit-and-block-on-queue 2103 () ())
  4646. (2105 threads #f () ())
  4647. (2106 running? 2105 () ())
  4648. (2107 loop 2106 () ())
  4649. (2108 threads #f () ())
  4650. (2109 interrupt-thread 2108 () ())
  4651. (2110 threads #f () ())
  4652. (2111 propogate-upcall 2110 () ())
  4653. (2112 #f 2111 () ())
  4654. (2113 threads #f () ())
  4655. (2114 upcall 2113 () ())
  4656. (2115 threads #f () ())
  4657. (2116 kill-thread! 2115 () ())
  4658. (2117 #f 2116 () ())
  4659. (2118 threads #f () ())
  4660. (2119 clear-thread-cell! 2118 () ())
  4661. (2120 threads #f () ())
  4662. (2121 terminate-current-thread 2120 () ())
  4663. (2122 threads #f () ())
  4664. (2123 terminate-thread! 2122 () ())
  4665. (2124 #f 2123 () ())
  4666. (2125 threads #f () ())
  4667. (2126 get-next-event! 2125 () ())
  4668. (2127 threads #f () ())
  4669. (2128 schedule-wakeup 2127 () ())
  4670. (2129 threads #f () ())
  4671. (2130 really-schedule-event 2129 () ())
  4672. (2131 threads #f () ())
  4673. (2132 root-scheduler 2131 () ())
  4674. (2133 threads #f () ())
  4675. (2134 maybe-suspend 2133 () ())
  4676. (2135 loop 2134 () ())
  4677. (2136 threads #f () ())
  4678. (2137 schedule-event 2136 () ())
  4679. (2138 threads #f () ())
  4680. (2139 show-running 2138 () ())
  4681. (2140 loop##165 2139 () ())
  4682. (2141 threads #f () ())
  4683. (2142 spawn-on-scheduler 2141 () ())
  4684. (2143 threads #f () ())
  4685. (2144 spawn 2143 () ())
  4686. (2145 threads #f () ())
  4687. (2146 spawn-on-root 2145 () ())
  4688. (2147 threads #f () ())
  4689. (2148 make-ready 2147 () ())
  4690. (2149 threads #f () ())
  4691. (2150 make-threads-ready 2149 () ())
  4692. (2151 loop 2150 () ())
  4693. (2152 threads #f () ())
  4694. (2153 maybe-commit-and-make-ready 2152 () ())
  4695. (2154 threads #f () ())
  4696. (2155 maybe-commit-no-interrupts 2154 () ())
  4697. (2156 threads #f () ())
  4698. (2157 cancel-timer-interrupt! 2156 () ())
  4699. (2158 threads #f () ())
  4700. (2159 real-time 2158 () ())
  4701. (2160 threads #f () ())
  4702. (2161 start-multitasking 2160 () ())
  4703. (2162 #f 2161 () ())
  4704. (2163 #f 2162 () ())
  4705. (2164 #f 2162 () ())
  4706. (2165 #f 2164 () ())
  4707. (2166 #f 2165 () ())
  4708. (2167 #f 2165 () ())
  4709. (2168 threads #f () ())
  4710. (2169 with-threads 2168 () ())
  4711. (2170 #f 2169 () ())
  4712. (2171 #f 2170 () ())
  4713. (2172 #f 2170 () ())
  4714. (2173 #f 2170 () ())
  4715. (2174 threads #f () ())
  4716. (2175 insert 2174 () ())
  4717. (2176 threads #f () ())
  4718. (2177 register-dozer-unsafe! 2176 () ())
  4719. (2178 #f 2177 () ())
  4720. (2179 threads #f () ())
  4721. (2180 coerce-to-nonnegative-integer 2179 () ())
  4722. (2181 threads #f () ())
  4723. (2182 sleep 2181 () ())
  4724. (2183 #f 2182 () ())
  4725. (2184 #f 2182 () ())
  4726. (2185 threads #f () ())
  4727. (2186 register-dozer! 2185 () ())
  4728. (2187 threads #f () ())
  4729. (2188 wake-some-threads 2187 () ())
  4730. (2189 loop 2188 () ())
  4731. (2190 threads #f () ())
  4732. (2191 threads #f () ())
  4733. (2192 threads #f () ())
  4734. (2193 enum-case #f () ())
  4735. (2194 text-codecs #f () ())
  4736. (2195 text-codecs #f () ())
  4737. (2196 text-codecs #f () ())
  4738. (2197 text-codecs #f () ())
  4739. (2198 text-codecs #f () ())
  4740. (2199 text-codecs #f () ())
  4741. (2200 text-codecs #f () ())
  4742. (2201 text-codecs #f () ())
  4743. (2202 text-codecs #f () ())
  4744. (2203 text-codecs #f () ())
  4745. (2204 text-codecs #f () ())
  4746. (2205 text-codecs #f () ())
  4747. (2206 text-codecs #f () ())
  4748. (2207 text-codecs #f () ())
  4749. (2208 text-codecs #f () ())
  4750. (2209 text-codecs #f () ())
  4751. (2210 text-codecs #f () ())
  4752. (2211 text-codecs #f () ())
  4753. (2212 text-codecs #f () ())
  4754. (2213 text-codecs #f () ())
  4755. (2214 text-codecs #f () ())
  4756. (2215 text-codecs #f () ())
  4757. (2216 text-codecs #f () ())
  4758. (2217 #f 2216 () ())
  4759. (2218 #f 2216 () ())
  4760. (2219 text-codecs #f () ())
  4761. (2220 text-codecs #f () ())
  4762. (2221 #f 2220 () ())
  4763. (2222 text-codecs #f () ())
  4764. (2223 text-codec-names 2222 () ())
  4765. (2224 text-codecs #f () ())
  4766. (2225 text-codec-builtin-code 2224 () ())
  4767. (2226 text-codecs #f () ())
  4768. (2227 text-codec-encode-char-proc 2226 () ())
  4769. (2228 text-codecs #f () ())
  4770. (2229 text-codec-decode-char-proc 2228 () ())
  4771. (2230 text-codecs #f () ())
  4772. (2231 really-make-text-codec 2230 () ())
  4773. (2232 text-codecs #f () ())
  4774. (2233 text-codecs #f () ())
  4775. (2234 text-codec? 2233 () ())
  4776. (2235 text-codecs #f () ())
  4777. (2236 make-builtin-text-codec 2235 () ())
  4778. (2237 #f 2236 () ())
  4779. (2238 #f 2236 () ())
  4780. (2239 text-codecs #f () ())
  4781. (2240 make-text-codec 2239 () ())
  4782. (2241 text-codecs #f () ())
  4783. (2242 spec->text-codec 2241 () ())
  4784. (2243 text-codecs #f () ())
  4785. (2244 text-codec->spec 2243 () ())
  4786. (2245 text-codecs #f () ())
  4787. (2246 register-text-codec! 2245 () ())
  4788. (2247 text-codecs #f () ())
  4789. (2248 find-text-codec 2247 () ())
  4790. (2249 loop 2248 () ())
  4791. (2250 text-codecs #f () ())
  4792. (2251 i/o #f () ())
  4793. (2252 i/o #f () ())
  4794. (2253 i/o #f () ())
  4795. (2254 i/o #f () ())
  4796. (2255 i/o #f () ())
  4797. (2256 i/o #f () ())
  4798. (2257 i/o #f () ())
  4799. (2258 i/o #f () ())
  4800. (2259 #f 2258 () ())
  4801. (2260 #f 2258 () ())
  4802. (2261 #f 2258 () ())
  4803. (2262 #f 2258 () ())
  4804. (2263 #f 2258 () ())
  4805. (2264 #f 2258 () ())
  4806. (2265 i/o #f () ())
  4807. (2266 i/o #f () ())
  4808. (2267 i/o #f () ())
  4809. (2268 i/o #f () ())
  4810. (2269 i/o #f () ())
  4811. (2270 i/o #f () ())
  4812. (2271 i/o #f () ())
  4813. (2272 i/o #f () ())
  4814. (2273 i/o #f () ())
  4815. (2274 &disclose 2273 () ())
  4816. (2275 i/o #f () ())
  4817. (2276 &disclose 2275 () ())
  4818. (2277 i/o #f () ())
  4819. (2278 port-handler-discloser 2277 () ())
  4820. (2279 i/o #f () ())
  4821. (2280 port-handler-close 2279 () ())
  4822. (2281 i/o #f () ())
  4823. (2282 port-handler-byte 2281 () ())
  4824. (2283 i/o #f () ())
  4825. (2284 port-handler-char 2283 () ())
  4826. (2285 i/o #f () ())
  4827. (2286 port-handler-block 2285 () ())
  4828. (2287 i/o #f () ())
  4829. (2288 port-handler-ready? 2287 () ())
  4830. (2289 i/o #f () ())
  4831. (2290 port-handler-force 2289 () ())
  4832. (2291 i/o #f () ())
  4833. (2292 make-port-handler 2291 () ())
  4834. (2293 i/o #f () ())
  4835. (2294 i/o #f () ())
  4836. (2295 port-handler? 2294 () ())
  4837. (2296 i/o #f () ())
  4838. (2297 disclose-port 2296 () ())
  4839. (2298 i/o #f () ())
  4840. (2299 one-arg-proc->handler 2298 () ())
  4841. (2300 #f 2299 () ())
  4842. (2301 i/o #f () ())
  4843. (2302 two-arg-proc->handler 2301 () ())
  4844. (2303 #f 2302 () ())
  4845. (2304 i/o #f () ())
  4846. (2305 initialize-i/o-handlers! 2304 () ())
  4847. (2306 #f 2305 () ())
  4848. (2307 #f 2305 () ())
  4849. (2308 #f 2305 () ())
  4850. (2309 #f 2305 () ())
  4851. (2310 #f 2305 () ())
  4852. (2311 #f 2305 () ())
  4853. (2312 i/o #f () ())
  4854. (2313 open-input-port? 2312 () ())
  4855. (2314 i/o #f () ())
  4856. (2315 current-input-port 2314 () ())
  4857. (2316 i/o #f () ())
  4858. (2317 input-port-option 2316 () ())
  4859. (2318 i/o #f () ())
  4860. (2319 char-ready? 2318 () ())
  4861. (2320 i/o #f () ())
  4862. (2321 real-char-ready? 2320 () ())
  4863. (2322 i/o #f () ())
  4864. (2323 real-byte-ready? 2322 () ())
  4865. (2324 i/o #f () ())
  4866. (2325 okay-limits? 2324 () ())
  4867. (2326 i/o #f () ())
  4868. (2327 read-block 2326 () ())
  4869. (2328 i/o #f () ())
  4870. (2329 open-output-port? 2328 () ())
  4871. (2330 i/o #f () ())
  4872. (2331 write-block 2330 () ())
  4873. (2332 i/o #f () ())
  4874. (2333 write-string 2332 () ())
  4875. (2334 loop##189 2333 () ())
  4876. (2335 i/o #f () ())
  4877. (2336 output-port-ready? 2335 () ())
  4878. (2337 i/o #f () ())
  4879. (2338 force-output 2337 () ())
  4880. (2339 i/o #f () ())
  4881. (2340 force-output-if-open 2339 () ())
  4882. (2341 i/o #f () ())
  4883. (2342 close-input-port 2341 () ())
  4884. (2343 i/o #f () ())
  4885. (2344 close-output-port 2343 () ())
  4886. (2345 i/o #f () ())
  4887. (2346 port-text-codec 2345 () ())
  4888. (2347 i/o #f () ())
  4889. (2348 set-port-text-codec! 2347 () ())
  4890. (2349 i/o #f () ())
  4891. (2350 open-port? 2349 () ())
  4892. (2351 i/o #f () ())
  4893. (2352 make-input-port-closed! 2351 () ())
  4894. (2353 i/o #f () ())
  4895. (2354 make-output-port-closed! 2353 () ())
  4896. (2355 i/o #f () ())
  4897. (2356 make-unbuffered-output-port 2355 () ())
  4898. (2357 i/o #f () ())
  4899. (2358 make-one-byte-handler 2357 () ())
  4900. (2359 #f 2358 () ())
  4901. (2360 loop 2359 () ())
  4902. (2361 i/o #f () ())
  4903. (2362 make-one-char-handler 2361 () ())
  4904. (2363 #f 2362 () ())
  4905. (2364 #f 2363 () ())
  4906. (2365 #f 2364 () ())
  4907. (2366 #f 2365 () ())
  4908. (2367 #f 2365 () ())
  4909. (2368 #f 2364 () ())
  4910. (2369 #f 2363 () ())
  4911. (2370 #f 2369 () ())
  4912. (2371 #f 2370 () ())
  4913. (2372 #f 2370 () ())
  4914. (2373 #f 2369 () ())
  4915. (2374 loop 2363 () ())
  4916. (2375 i/o #f () ())
  4917. (2376 make-write-block-handler 2375 () ())
  4918. (2377 #f 2376 () ())
  4919. (2378 loop 2377 () ())
  4920. (2379 i/o #f () ())
  4921. (2380 make-unbuffered-output-port-handler 2379 () ())
  4922. (2381 #f 2380 () ())
  4923. (2382 i/o #f () ())
  4924. (2383 make-null-output-port 2382 () ())
  4925. (2384 i/o #f () ())
  4926. (2385 okay-buffer? 2384 () ())
  4927. (2386 i/o #f () ())
  4928. (2387 make-buffered-input-port 2386 () ())
  4929. (2388 i/o #f () ())
  4930. (2389 make-buffered-output-port 2388 () ())
  4931. (2390 i/o #f () ())
  4932. (2391 make-one-byte-input 2390 () ())
  4933. (2392 #f 2391 () ())
  4934. (2393 #f 2392 () ())
  4935. (2394 #f 2392 () ())
  4936. (2395 lose 2394 () ())
  4937. (2396 i/o #f () ())
  4938. (2397 make-one-char-input 2396 () ())
  4939. (2398 #f 2397 () ())
  4940. (2399 #f 2398 () ())
  4941. (2400 #f 2398 () ())
  4942. (2401 lose 2400 () ())
  4943. (2402 loop 2401 () ())
  4944. (2403 consume&deliver 2402 () ())
  4945. (2404 #f 2402 () ())
  4946. (2405 #f 2402 () ())
  4947. (2406 i/o #f () ())
  4948. (2407 get-available-bytes! 2406 () ())
  4949. (2408 i/o #f () ())
  4950. (2409 make-read-block 2408 () ())
  4951. (2410 #f 2409 () ())
  4952. (2411 loop 2410 () ())
  4953. (2412 #f 2411 () ())
  4954. (2413 #f 2411 () ())
  4955. (2414 lose 2413 () ())
  4956. (2415 i/o #f () ())
  4957. (2416 byte-ready? 2415 () ())
  4958. (2417 i/o #f () ())
  4959. (2418 make-byte-ready? 2417 () ())
  4960. (2419 #f 2418 () ())
  4961. (2420 #f 2419 () ())
  4962. (2421 #f 2419 () ())
  4963. (2422 lose 2421 () ())
  4964. (2423 #f 2422 () ())
  4965. (2424 #f 2422 () ())
  4966. (2425 i/o #f () ())
  4967. (2426 make-buffered-input-port-handler 2425 () ())
  4968. (2427 #f 2426 () ())
  4969. (2428 #f 2426 () ())
  4970. (2429 #f 2428 () ())
  4971. (2430 #f 2428 () ())
  4972. (2431 lose 2430 () ())
  4973. (2432 i/o #f () ())
  4974. (2433 note-buffer-reuse! 2432 () ())
  4975. (2434 i/o #f () ())
  4976. (2435 make-closer 2434 () ())
  4977. (2436 #f 2435 () ())
  4978. (2437 #f 2436 () ())
  4979. (2438 #f 2436 () ())
  4980. (2439 lose 2438 () ())
  4981. (2440 i/o #f () ())
  4982. (2441 call-to-flush! 2440 () ())
  4983. (2442 i/o #f () ())
  4984. (2443 make-one-byte-output 2442 () ())
  4985. (2444 #f 2443 () ())
  4986. (2445 #f 2444 () ())
  4987. (2446 #f 2444 () ())
  4988. (2447 lose 2446 () ())
  4989. (2448 #f 2447 () ())
  4990. (2449 i/o #f () ())
  4991. (2450 make-one-char-output 2449 () ())
  4992. (2451 #f 2450 () ())
  4993. (2452 #f 2451 () ())
  4994. (2453 #f 2451 () ())
  4995. (2454 lose 2453 () ())
  4996. (2455 #f 2454 () ())
  4997. (2456 #f 2455 () ())
  4998. (2457 #f 2456 () ())
  4999. (2458 #f 2456 () ())
  5000. (2459 #f 2455 () ())
  5001. (2460 #f 2455 () ())
  5002. (2461 #f 2455 () ())
  5003. (2462 #f 2454 () ())
  5004. (2463 #f 2454 () ())
  5005. (2464 _ 2463 () ())
  5006. (2465 #f 2464 () ())
  5007. (2466 #f 2454 () ())
  5008. (2467 i/o #f () ())
  5009. (2468 copy-bytes-out! 2467 () ())
  5010. (2469 i/o #f () ())
  5011. (2470 make-write-block 2469 () ())
  5012. (2471 #f 2470 () ())
  5013. (2472 loop 2471 () ())
  5014. (2473 #f 2472 () ())
  5015. (2474 #f 2472 () ())
  5016. (2475 lose 2474 () ())
  5017. (2476 #f 2475 () ())
  5018. (2477 i/o #f () ())
  5019. (2478 call-to-flush 2477 () ())
  5020. (2479 i/o #f () ())
  5021. (2480 make-forcer 2479 () ())
  5022. (2481 #f 2480 () ())
  5023. (2482 #f 2481 () ())
  5024. (2483 #f 2481 () ())
  5025. (2484 lose 2483 () ())
  5026. (2485 #f 2484 () ())
  5027. (2486 i/o #f () ())
  5028. (2487 make-buffered-output-port-handler 2486 () ())
  5029. (2488 #f 2487 () ())
  5030. (2489 i/o #f () ())
  5031. (2490 default-buffer-size 2489 () ())
  5032. (2491 i/o #f () ())
  5033. (2492 periodically-force-output! 2491 () ())
  5034. (2493 i/o #f () ())
  5035. (2494 make-forcing-thunk 2493 () ())
  5036. (2495 #f 2494 () ())
  5037. (2496 #f 2495 () ())
  5038. (2497 #f 2495 () ())
  5039. (2498 #f 2497 () ())
  5040. (2499 i/o #f () ())
  5041. (2500 output-port-forcers 2499 () ())
  5042. (2501 loop 2500 () ())
  5043. (2502 i/o #f () ())
  5044. (2503 periodically-flushed-ports 2502 () ())
  5045. (2504 loop 2503 () ())
  5046. (2505 i/o #f () ())
  5047. (2506 current-output-port 2505 () ())
  5048. (2507 i/o #f () ())
  5049. (2508 current-error-port 2507 () ())
  5050. (2509 i/o #f () ())
  5051. (2510 current-noise-port 2509 () ())
  5052. (2511 i/o #f () ())
  5053. (2512 with-current-ports 2511 () ())
  5054. (2513 i/o #f () ())
  5055. (2514 initialize-i/o 2513 () ())
  5056. (2515 i/o #f () ())
  5057. (2516 call-with-current-input-port 2515 () ())
  5058. (2517 i/o #f () ())
  5059. (2518 call-with-current-output-port 2517 () ())
  5060. (2519 i/o #f () ())
  5061. (2520 call-with-current-noise-port 2519 () ())
  5062. (2521 i/o #f () ())
  5063. (2522 silently 2521 () ())
  5064. (2523 i/o #f () ())
  5065. (2524 output-port-option 2523 () ())
  5066. (2525 i/o #f () ())
  5067. (2526 newline 2525 () ())
  5068. (2527 i/o #f () ())
  5069. (2528 i/o #f () ())
  5070. (2529 writing #f () ())
  5071. (2530 display 2529 () ())
  5072. (2531 recur 2530 () ())
  5073. (2532 writing #f () ())
  5074. (2533 display-type-name 2532 () ())
  5075. (2534 loop##215 2533 () ())
  5076. (2535 writing #f () ())
  5077. (2536 write-other 2535 () ())
  5078. (2537 #f 2536 () ())
  5079. (2538 writing #f () ())
  5080. (2539 write-vector 2538 () ())
  5081. (2540 loop 2539 () ())
  5082. (2541 writing #f () ())
  5083. (2542 quotation? 2541 () ())
  5084. (2543 writing #f () ())
  5085. (2544 write-list 2543 () ())
  5086. (2545 loop 2544 () ())
  5087. (2546 writing #f () ())
  5088. (2547 write-string-literal 2546 () ())
  5089. (2548 loop##219 2547 () ())
  5090. (2549 writing #f () ())
  5091. (2550 character-name 2549 () ())
  5092. (2551 writing #f () ())
  5093. (2552 writing #f () ())
  5094. (2553 writing #f () ())
  5095. (2554 writing #f () ())
  5096. (2555 writing #f () ())
  5097. (2556 writing #f () ())
  5098. (2557 writing #f () ())
  5099. (2558 writing #f () ())
  5100. (2559 writing #f () ())
  5101. (2560 writing #f () ())
  5102. (2561 writing #f () ())
  5103. (2562 writing #f () ())
  5104. (2563 write-char-literal 2562 () ())
  5105. (2564 writing #f () ())
  5106. (2565 write-number 2564 () ())
  5107. (2566 writing #f () ())
  5108. (2567 write-boolean 2566 () ())
  5109. (2568 writing #f () ())
  5110. (2569 recurring-write 2568 () ())
  5111. (2570 writing #f () ())
  5112. (2571 write 2570 () ())
  5113. (2572 recur 2571 () ())
  5114. (2573 reading #f () ())
  5115. (2574 reading #f () ())
  5116. (2575 number-sharp-macro 2574 () ())
  5117. (2576 #f 2574 () ())
  5118. (2577 reading #f () ())
  5119. (2578 #f 2577 () ())
  5120. (2579 reading #f () ())
  5121. (2580 #f 2579 () ())
  5122. (2581 reading #f () ())
  5123. (2582 reading #f () ())
  5124. (2583 #f 2582 () ())
  5125. (2584 reading #f () ())
  5126. (2585 #f 2584 () ())
  5127. (2586 reading #f () ())
  5128. (2587 #f 2586 () ())
  5129. (2588 reading #f () ())
  5130. (2589 #f 2588 () ())
  5131. (2590 reading #f () ())
  5132. (2591 #f 2590 () ())
  5133. (2592 loop 2591 () ())
  5134. (2593 reading #f () ())
  5135. (2594 reading #f () ())
  5136. (2595 reading #f () ())
  5137. (2596 reading #f () ())
  5138. (2597 reading #f () ())
  5139. (2598 reading #f () ())
  5140. (2599 reading #f () ())
  5141. (2600 reading #f () ())
  5142. (2601 reading #f () ())
  5143. (2602 reading #f () ())
  5144. (2603 reading #f () ())
  5145. (2604 #f 2603 () ())
  5146. (2605 reading #f () ())
  5147. (2606 #f 2605 () ())
  5148. (2607 reading #f () ())
  5149. (2608 #f 2607 () ())
  5150. (2609 reading #f () ())
  5151. (2610 #f 2609 () ())
  5152. (2611 reading #f () ())
  5153. (2612 reading #f () ())
  5154. (2613 #f 2612 () ())
  5155. (2614 reading #f () ())
  5156. (2615 sub-read-whitespace 2614 () ())
  5157. (2616 #f 2614 () ())
  5158. (2617 reading #f () ())
  5159. (2618 reading #f () ())
  5160. (2619 #f 2618 () ())
  5161. (2620 reading #f () ())
  5162. (2621 reading #f () ())
  5163. (2622 reading #f () ())
  5164. (2623 reading #f () ())
  5165. (2624 reader-token? 2623 () ())
  5166. (2625 reading #f () ())
  5167. (2626 reading-error 2625 () ())
  5168. (2627 reading #f () ())
  5169. (2628 parse-token 2627 () ())
  5170. (2629 reading #f () ())
  5171. (2630 binary-search 2629 () ())
  5172. (2631 loop 2630 () ())
  5173. (2632 reading #f () ())
  5174. (2633 char-unicode-whitespace? 2632 () ())
  5175. (2634 reading #f () ())
  5176. (2635 delimiter? 2634 () ())
  5177. (2636 reading #f () ())
  5178. (2637 char-hex-digit? 2636 () ())
  5179. (2638 reading #f () ())
  5180. (2639 decode-hex-digits 2638 () ())
  5181. (2640 loop 2639 () ())
  5182. (2641 reading #f () ())
  5183. (2642 char-semicolon? 2641 () ())
  5184. (2643 reading #f () ())
  5185. (2644 sub-read-token 2643 () ())
  5186. (2645 loop 2644 () ())
  5187. (2646 reading #f () ())
  5188. (2647 sub-read-constituent 2646 () ())
  5189. (2648 reading #f () ())
  5190. (2649 sub-read 2648 () ())
  5191. (2650 reading #f () ())
  5192. (2651 read 2650 () ())
  5193. (2652 loop 2651 () ())
  5194. (2653 reading #f () ())
  5195. (2654 sub-read-carefully 2653 () ())
  5196. (2655 reading #f () ())
  5197. (2656 make-reader-token 2655 () ())
  5198. (2657 reading #f () ())
  5199. (2658 set-standard-syntax! 2657 () ())
  5200. (2659 reading #f () ())
  5201. (2660 set-standard-read-macro! 2659 () ())
  5202. (2661 reading #f () ())
  5203. (2662 sub-read-list 2661 () ())
  5204. (2663 recur 2662 () ())
  5205. (2664 reading #f () ())
  5206. (2665 decode-escape 2664 () ())
  5207. (2666 loop 2665 () ())
  5208. (2667 reading #f () ())
  5209. (2668 gobble-line 2667 () ())
  5210. (2669 loop 2668 () ())
  5211. (2670 reading #f () ())
  5212. (2671 define-sharp-macro 2670 () ())
  5213. (2672 reading #f () ())
  5214. (2673 char-scalar-value-literal-delimiter? 2672 () ())
  5215. (2674 reading #f () ())
  5216. (2675 proper-list? 2674 () ())
  5217. (2676 reading #f () ())
  5218. (2677 reading #f () ())
  5219. (2678 reading #f () ())
  5220. (2679 reading #f () ())
  5221. (2680 reading #f () ())
  5222. (2681 condvars #f () ())
  5223. (2682 #f 2681 () ())
  5224. (2683 condvars #f () ())
  5225. (2684 condvar-queue 2683 () ())
  5226. (2685 condvars #f () ())
  5227. (2686 set-condvar-has-value?! 2685 () ())
  5228. (2687 condvars #f () ())
  5229. (2688 condvar-has-value? 2687 () ())
  5230. (2689 condvars #f () ())
  5231. (2690 set-condvar-value! 2689 () ())
  5232. (2691 condvars #f () ())
  5233. (2692 condvar-value 2691 () ())
  5234. (2693 condvars #f () ())
  5235. (2694 condvar-id 2693 () ())
  5236. (2695 condvars #f () ())
  5237. (2696 really-make-condvar 2695 () ())
  5238. (2697 condvars #f () ())
  5239. (2698 condvars #f () ())
  5240. (2699 condvar? 2698 () ())
  5241. (2700 condvars #f () ())
  5242. (2701 make-condvar 2700 () ())
  5243. (2702 condvars #f () ())
  5244. (2703 maybe-commit-and-wait-for-condvar 2702 () ())
  5245. (2704 condvars #f () ())
  5246. (2705 maybe-commit-and-set-condvar! 2704 () ())
  5247. (2706 condvars #f () ())
  5248. (2707 condvar-has-waiters? 2706 () ())
  5249. (2708 channel-i/o #f () ())
  5250. (2709 abort-unwanted-reads! 2708 () ())
  5251. (2710 loop 2709 () ())
  5252. (2711 channel-i/o #f () ())
  5253. (2712 fetch-channel-condvar! 2711 () ())
  5254. (2713 loop 2712 () ())
  5255. (2714 channel-i/o #f () ())
  5256. (2715 channel-i/o #f () ())
  5257. (2716 add-channel-condvar! 2715 () ())
  5258. (2717 channel-i/o #f () ())
  5259. (2718 set-channel-condvars! 2717 () ())
  5260. (2719 channel-i/o #f () ())
  5261. (2720 channel-condvars 2719 () ())
  5262. (2721 channel-i/o #f () ())
  5263. (2722 channel-i/o #f () ())
  5264. (2723 waiting-for-i/o? 2722 () ())
  5265. (2724 channel-i/o #f () ())
  5266. (2725 i/o-completion-handler 2724 () ())
  5267. (2726 channel-i/o #f () ())
  5268. (2727 initialize-channel-i/o! 2726 () ())
  5269. (2728 channel-i/o #f () ())
  5270. (2729 input-channel? 2728 () ())
  5271. (2730 channel-i/o #f () ())
  5272. (2731 channel-maybe-commit-and-close 2730 () ())
  5273. (2732 #f 2731 () ())
  5274. (2733 channel-i/o #f () ())
  5275. (2734 channel-write 2733 () ())
  5276. (2735 #f 2734 () ())
  5277. (2736 #f 2734 () ())
  5278. (2737 lose 2736 () ())
  5279. (2738 channel-i/o #f () ())
  5280. (2739 note-channel-result! 2738 () ())
  5281. (2740 #f 2739 () ())
  5282. (2741 #f 2739 () ())
  5283. (2742 lose 2741 () ())
  5284. (2743 channel-i/o #f () ())
  5285. (2744 channel-maybe-commit-and-write 2743 () ())
  5286. (2745 #f 2744 () ())
  5287. (2746 #f 2745 () ())
  5288. (2747 #f 2745 () ())
  5289. (2748 lose 2747 () ())
  5290. (2749 channel-i/o #f () ())
  5291. (2750 channel-maybe-commit-and-read 2749 () ())
  5292. (2751 #f 2750 () ())
  5293. (2752 encodings #f () ())
  5294. (2753 encodings #f () ())
  5295. (2754 char-encoding-length/encoding 2753 () ())
  5296. (2755 #f 2754 () ())
  5297. (2756 #f 2754 () ())
  5298. (2757 encodings #f () ())
  5299. (2758 string-encoding-length/encoding 2757 () ())
  5300. (2759 loop##261 2758 () ())
  5301. (2760 encodings #f () ())
  5302. (2761 encode-char/encoding 2760 () ())
  5303. (2762 #f 2761 () ())
  5304. (2763 #f 2761 () ())
  5305. (2764 encodings #f () ())
  5306. (2765 encode-string/encoding 2764 () ())
  5307. (2766 loop##261 2765 () ())
  5308. (2767 #f 2766 () ())
  5309. (2768 #f 2766 () ())
  5310. (2769 encodings #f () ())
  5311. (2770 string->bytes-n/encoding 2769 () ())
  5312. (2771 encodings #f () ())
  5313. (2772 string->bytes/encoding 2771 () ())
  5314. (2773 encodings #f () ())
  5315. (2774 decode-char/encoding 2773 () ())
  5316. (2775 #f 2774 () ())
  5317. (2776 #f 2774 () ())
  5318. (2777 encodings #f () ())
  5319. (2778 bytes-string-size/encoding 2777 () ())
  5320. (2779 loop##261 2778 () ())
  5321. (2780 #f 2779 () ())
  5322. (2781 #f 2779 () ())
  5323. (2782 encodings #f () ())
  5324. (2783 decode-string/encoding 2782 () ())
  5325. (2784 loop##261 2783 () ())
  5326. (2785 #f 2784 () ())
  5327. (2786 #f 2784 () ())
  5328. (2787 encodings #f () ())
  5329. (2788 bytes->string-n/encoding 2787 () ())
  5330. (2789 loop##261 2788 () ())
  5331. (2790 #f 2789 () ())
  5332. (2791 loop##261 2790 () ())
  5333. (2792 #f 2789 () ())
  5334. (2793 encodings #f () ())
  5335. (2794 bytes->string/encoding 2793 () ())
  5336. (2795 encodings #f () ())
  5337. (2796 char-encoding-length/text-codec 2795 () ())
  5338. (2797 #f 2796 () ())
  5339. (2798 #f 2796 () ())
  5340. (2799 #f 2798 () ())
  5341. (2800 encodings #f () ())
  5342. (2801 string-encoding-length/text-codec 2800 () ())
  5343. (2802 loop##262 2801 () ())
  5344. (2803 encodings #f () ())
  5345. (2804 encode-char/text-codec 2803 () ())
  5346. (2805 #f 2804 () ())
  5347. (2806 #f 2804 () ())
  5348. (2807 #f 2806 () ())
  5349. (2808 encodings #f () ())
  5350. (2809 encode-string/text-codec 2808 () ())
  5351. (2810 loop##262 2809 () ())
  5352. (2811 #f 2810 () ())
  5353. (2812 #f 2810 () ())
  5354. (2813 #f 2812 () ())
  5355. (2814 encodings #f () ())
  5356. (2815 string->bytes-n/text-codec 2814 () ())
  5357. (2816 encodings #f () ())
  5358. (2817 string->bytes/text-codec 2816 () ())
  5359. (2818 encodings #f () ())
  5360. (2819 decode-char/text-codec 2818 () ())
  5361. (2820 #f 2819 () ())
  5362. (2821 #f 2819 () ())
  5363. (2822 #f 2821 () ())
  5364. (2823 encodings #f () ())
  5365. (2824 bytes-string-size/text-codec 2823 () ())
  5366. (2825 loop##262 2824 () ())
  5367. (2826 #f 2825 () ())
  5368. (2827 #f 2825 () ())
  5369. (2828 #f 2827 () ())
  5370. (2829 encodings #f () ())
  5371. (2830 decode-string/text-codec 2829 () ())
  5372. (2831 loop##262 2830 () ())
  5373. (2832 #f 2831 () ())
  5374. (2833 #f 2831 () ())
  5375. (2834 #f 2833 () ())
  5376. (2835 encodings #f () ())
  5377. (2836 bytes->string-n/text-codec 2835 () ())
  5378. (2837 loop##262 2836 () ())
  5379. (2838 #f 2837 () ())
  5380. (2839 loop##262 2838 () ())
  5381. (2840 #f 2837 () ())
  5382. (2841 #f 2840 () ())
  5383. (2842 encodings #f () ())
  5384. (2843 bytes->string/text-codec 2842 () ())
  5385. (2844 encodings #f () ())
  5386. (2845 char-encoding-length 2844 () ())
  5387. (2846 encodings #f () ())
  5388. (2847 string-encoding-length 2846 () ())
  5389. (2848 encodings #f () ())
  5390. (2849 encode-char 2848 () ())
  5391. (2850 encodings #f () ())
  5392. (2851 encode-string 2850 () ())
  5393. (2852 encodings #f () ())
  5394. (2853 string->bytes-n 2852 () ())
  5395. (2854 encodings #f () ())
  5396. (2855 string->bytes 2854 () ())
  5397. (2856 encodings #f () ())
  5398. (2857 decode-char 2856 () ())
  5399. (2858 encodings #f () ())
  5400. (2859 bytes-string-size 2858 () ())
  5401. (2860 encodings #f () ())
  5402. (2861 decode-string 2860 () ())
  5403. (2862 encodings #f () ())
  5404. (2863 bytes->string 2862 () ())
  5405. (2864 encodings #f () ())
  5406. (2865 bytes->string-n 2864 () ())
  5407. (2866 encodings #f () ())
  5408. (2867 decoding-error 2866 () ())
  5409. (2868 encodings #f () ())
  5410. (2869 char-encoding-length/utf-8 2868 () ())
  5411. (2870 encodings #f () ())
  5412. (2871 string-encoding-length/utf-8 2870 () ())
  5413. (2872 encodings #f () ())
  5414. (2873 encode-char/utf-8 2872 () ())
  5415. (2874 encodings #f () ())
  5416. (2875 encode-string/utf-8 2874 () ())
  5417. (2876 encodings #f () ())
  5418. (2877 string->utf-8-n 2876 () ())
  5419. (2878 encodings #f () ())
  5420. (2879 string->utf-8 2878 () ())
  5421. (2880 encodings #f () ())
  5422. (2881 decode-char/utf-8 2880 () ())
  5423. (2882 encodings #f () ())
  5424. (2883 bytes-string-size/utf-8 2882 () ())
  5425. (2884 encodings #f () ())
  5426. (2885 decode-string/utf-8 2884 () ())
  5427. (2886 encodings #f () ())
  5428. (2887 utf-8->string 2886 () ())
  5429. (2888 encodings #f () ())
  5430. (2889 utf-8->string-n 2888 () ())
  5431. (2890 encodings #f () ())
  5432. (2891 encodings #f () ())
  5433. (2892 encodings #f () ())
  5434. (2893 encodings #f () ())
  5435. (2894 os-strings #f () ())
  5436. (2895 os-strings #f () ())
  5437. (2896 byte-vector-copy 2895 () ())
  5438. (2897 os-strings #f () ())
  5439. (2898 x->os-string 2897 () ())
  5440. (2899 os-strings #f () ())
  5441. (2900 os-string->string 2899 () ())
  5442. (2901 #f 2900 () ())
  5443. (2902 #f 2900 () ())
  5444. (2903 os-strings #f () ())
  5445. (2904 os-string->byte-vector 2903 () ())
  5446. (2905 os-strings #f () ())
  5447. (2906 byte-vector->os-string 2905 () ())
  5448. (2907 os-strings #f () ())
  5449. (2908 string->os-string 2907 () ())
  5450. (2909 os-strings #f () ())
  5451. (2910 call-with-os-string-text-codec 2909 () ())
  5452. (2911 #f 2910 () ())
  5453. (2912 os-strings #f () ())
  5454. (2913 current-os-string-text-codec 2912 () ())
  5455. (2914 os-strings #f () ())
  5456. (2915 #f 2914 () ())
  5457. (2916 os-strings #f () ())
  5458. (2917 initialize-os-string-text-codec! 2916 () ())
  5459. (2918 os-strings #f () ())
  5460. (2919 os-strings #f () ())
  5461. (2920 #f 2919 () ())
  5462. (2921 os-strings #f () ())
  5463. (2922 os-string? 2921 () ())
  5464. (2923 os-strings #f () ())
  5465. (2924 os-string-text-codec 2923 () ())
  5466. (2925 os-strings #f () ())
  5467. (2926 set-os-string-string! 2925 () ())
  5468. (2927 os-strings #f () ())
  5469. (2928 os-string-string 2927 () ())
  5470. (2929 os-strings #f () ())
  5471. (2930 set-os-string-byte-vector! 2929 () ())
  5472. (2931 os-strings #f () ())
  5473. (2932 os-string-byte-vector 2931 () ())
  5474. (2933 os-strings #f () ())
  5475. (2934 make-os-string 2933 () ())
  5476. (2935 os-strings #f () ())
  5477. (2936 channel-ports #f () ())
  5478. (2937 channel-crlf? 2936 () ())
  5479. (2938 channel-ports #f () ())
  5480. (2939 channel-buffer-size 2938 () ())
  5481. (2940 channel-ports #f () ())
  5482. (2941 #f 2940 () ())
  5483. (2942 #f 2940 () ())
  5484. (2943 #f 2940 () ())
  5485. (2944 #f 2940 () ())
  5486. (2945 channel-ports #f () ())
  5487. (2946 force-channel-output-ports! 2945 () ())
  5488. (2947 #f 2946 () ())
  5489. (2948 channel-ports #f () ())
  5490. (2949 with-output-to-file 2948 () ())
  5491. (2950 #f 2949 () ())
  5492. (2951 channel-ports #f () ())
  5493. (2952 with-input-from-file 2951 () ())
  5494. (2953 #f 2952 () ())
  5495. (2954 channel-ports #f () ())
  5496. (2955 call-with-output-file 2954 () ())
  5497. (2956 #f 2955 () ())
  5498. (2957 channel-ports #f () ())
  5499. (2958 call-with-input-file 2957 () ())
  5500. (2959 #f 2958 () ())
  5501. (2960 channel-ports #f () ())
  5502. (2961 open-output-file 2960 () ())
  5503. (2962 channel-ports #f () ())
  5504. (2963 really-open-output-file 2962 () ())
  5505. (2964 channel-ports #f () ())
  5506. (2965 open-input-file 2964 () ())
  5507. (2966 channel-ports #f () ())
  5508. (2967 really-open-input-file 2966 () ())
  5509. (2968 channel-ports #f () ())
  5510. (2969 maybe-open-file 2968 () ())
  5511. (2970 #f 2969 () ())
  5512. (2971 #f 2969 () ())
  5513. (2972 channel-ports #f () ())
  5514. (2973 real-output-channel->port 2972 () ())
  5515. (2974 channel-ports #f () ())
  5516. (2975 output-channel+closer->port 2974 () ())
  5517. (2976 channel-ports #f () ())
  5518. (2977 output-channel->port 2976 () ())
  5519. (2978 channel-ports #f () ())
  5520. (2979 #f 2978 () ())
  5521. (2980 channel-ports #f () ())
  5522. (2981 send-some 2980 () ())
  5523. (2982 channel-ports #f () ())
  5524. (2983 empty-buffer! 2982 () ())
  5525. (2984 channel-ports #f () ())
  5526. (2985 real-input-channel->port 2984 () ())
  5527. (2986 channel-ports #f () ())
  5528. (2987 input-channel+closer->port 2986 () ())
  5529. (2988 channel-ports #f () ())
  5530. (2989 input-channel->port 2988 () ())
  5531. (2990 channel-ports #f () ())
  5532. (2991 #f 2990 () ())
  5533. (2992 channel-ports #f () ())
  5534. (2993 channel-port-ready? 2992 () ())
  5535. (2994 channel-ports #f () ())
  5536. (2995 fill-buffer! 2994 () ())
  5537. (2996 channel-ports #f () ())
  5538. (2997 port-channel-closer 2996 () ())
  5539. (2998 channel-ports #f () ())
  5540. (2999 port->channel 2998 () ())
  5541. (3000 channel-ports #f () ())
  5542. (3001 make-channel-cell 3000 () ())
  5543. (3002 channel-ports #f () ())
  5544. (3003 channel-cell-ref 3002 () ())
  5545. (3004 channel-ports #f () ())
  5546. (3005 channel-cell-closer 3004 () ())
  5547. (3006 channel-ports #f () ())
  5548. (3007 channel-cell-condvar 3006 () ())
  5549. (3008 channel-ports #f () ())
  5550. (3009 set-channel-cell-in-use?! 3008 () ())
  5551. (3010 channel-ports #f () ())
  5552. (3011 channel-cell-in-use? 3010 () ())
  5553. (3012 channel-ports #f () ())
  5554. (3013 set-channel-cell-sent! 3012 () ())
  5555. (3014 channel-ports #f () ())
  5556. (3015 channel-cell-sent 3014 () ())
  5557. (3016 channel-ports #f () ())
  5558. (3017 channel-cell? 3016 () ())
  5559. (3018 channel-ports #f () ())
  5560. (3019 really-make-channel-cell 3018 () ())
  5561. (3020 channel-ports #f () ())
  5562. (3021 scheme-level-2 #f () ())
  5563. (3022 features #f () ())
  5564. (3023 tables #f () ())
  5565. (3024 tables #f () ())
  5566. (3025 tables #f () ())
  5567. (3026 tables #f () ())
  5568. (3027 make-table 3026 () ())
  5569. (3028 tables #f () ())
  5570. (3029 tables #f () ())
  5571. (3030 set-table-size! 3029 () ())
  5572. (3031 tables #f () ())
  5573. (3032 table-size 3031 () ())
  5574. (3033 tables #f () ())
  5575. (3034 set-table-data! 3033 () ())
  5576. (3035 tables #f () ())
  5577. (3036 table-data 3035 () ())
  5578. (3037 tables #f () ())
  5579. (3038 set-table-ref-procedure! 3037 () ())
  5580. (3039 tables #f () ())
  5581. (3040 table-ref-procedure 3039 () ())
  5582. (3041 tables #f () ())
  5583. (3042 set-table-set!-procedure! 3041 () ())
  5584. (3043 tables #f () ())
  5585. (3044 table-set!-procedure 3043 () ())
  5586. (3045 tables #f () ())
  5587. (3046 really-make-table 3045 () ())
  5588. (3047 tables #f () ())
  5589. (3048 tables #f () ())
  5590. (3049 table? 3048 () ())
  5591. (3050 tables #f () ())
  5592. (3051 table-ref 3050 () ())
  5593. (3052 tables #f () ())
  5594. (3053 table-set! 3052 () ())
  5595. (3054 tables #f () ())
  5596. (3055 next-table-size 3054 () ())
  5597. (3056 tables #f () ())
  5598. (3057 set-entry-value! 3056 () ())
  5599. (3058 tables #f () ())
  5600. (3059 delete-entry! 3058 () ())
  5601. (3060 loop 3059 () ())
  5602. (3061 tables #f () ())
  5603. (3062 new-entry 3061 () ())
  5604. (3063 tables #f () ())
  5605. (3064 make-linear-table-set! 3063 () ())
  5606. (3065 #f 3064 () ())
  5607. (3066 tables #f () ())
  5608. (3067 table-expand-table! 3066 () ())
  5609. (3068 tables #f () ())
  5610. (3069 table-enter-alist! 3068 () ())
  5611. (3070 loop##315 3069 () ())
  5612. (3071 tables #f () ())
  5613. (3072 entry-value 3071 () ())
  5614. (3073 tables #f () ())
  5615. (3074 make-hash-table-ref 3073 () ())
  5616. (3075 #f 3074 () ())
  5617. (3076 tables #f () ())
  5618. (3077 expand-hash-table! 3076 () ())
  5619. (3078 loop##317 3077 () ())
  5620. (3079 tables #f () ())
  5621. (3080 make-hash-table-set! 3079 () ())
  5622. (3081 #f 3080 () ())
  5623. (3082 tables #f () ())
  5624. (3083 make->hash-table 3082 () ())
  5625. (3084 #f 3083 () ())
  5626. (3085 tables #f () ())
  5627. (3086 make-linear-table-ref 3085 () ())
  5628. (3087 #f 3086 () ())
  5629. (3088 tables #f () ())
  5630. (3089 assoc->table-maker 3088 () ())
  5631. (3090 #f 3089 () ())
  5632. (3091 tables #f () ())
  5633. (3092 make-assoc 3091 () ())
  5634. (3093 #f 3092 () ())
  5635. (3094 loop 3093 () ())
  5636. (3095 tables #f () ())
  5637. (3096 make-table-maker 3095 () ())
  5638. (3097 tables #f () ())
  5639. (3098 entry-key 3097 () ())
  5640. (3099 tables #f () ())
  5641. (3100 alist-walk 3099 () ())
  5642. (3101 loop##319 3100 () ())
  5643. (3102 tables #f () ())
  5644. (3103 really-table-walk 3102 () ())
  5645. (3104 loop##322 3103 () ())
  5646. (3105 tables #f () ())
  5647. (3106 table-walk 3105 () ())
  5648. (3107 #f 3106 () ())
  5649. (3108 tables #f () ())
  5650. (3109 make-table-immutable! 3108 () ())
  5651. (3110 tables #f () ())
  5652. (3111 table->entry-list 3110 () ())
  5653. (3112 #f 3111 () ())
  5654. (3113 tables #f () ())
  5655. (3114 default-hash-function 3113 () ())
  5656. (3115 tables #f () ())
  5657. (3116 default-table-assoc 3115 () ())
  5658. (3117 tables #f () ())
  5659. (3118 symbol-hash 3117 () ())
  5660. (3119 tables #f () ())
  5661. (3120 tables #f () ())
  5662. (3121 weak #f () ())
  5663. (3122 walk-population 3121 () ())
  5664. (3123 #f 3122 () ())
  5665. (3124 weak #f () ())
  5666. (3125 population->list 3124 () ())
  5667. (3126 weak #f () ())
  5668. (3127 population-reduce 3126 () ())
  5669. (3128 loop##324 3127 () ())
  5670. (3129 weak #f () ())
  5671. (3130 weak-memq 3129 () ())
  5672. (3131 weak #f () ())
  5673. (3132 add-to-population! 3131 () ())
  5674. (3133 weak #f () ())
  5675. (3134 make-population 3133 () ())
  5676. (3135 meta-types #f () ())
  5677. (3136 meta-types #f () ())
  5678. (3137 meta-types #f () ())
  5679. (3138 meta-types #f () ())
  5680. (3139 meta-types #f () ())
  5681. (3140 meta-types #f () ())
  5682. (3141 meta-types #f () ())
  5683. (3142 meta-types #f () ())
  5684. (3143 meta-types #f () ())
  5685. (3144 meta-types #f () ())
  5686. (3145 meta-types #f () ())
  5687. (3146 meta-types #f () ())
  5688. (3147 meta-types #f () ())
  5689. (3148 meta-types #f () ())
  5690. (3149 meta-types #f () ())
  5691. (3150 meta-types #f () ())
  5692. (3151 meta-types #f () ())
  5693. (3152 meta-types #f () ())
  5694. (3153 meta-types #f () ())
  5695. (3154 meta-types #f () ())
  5696. (3155 meta-types #f () ())
  5697. (3156 meta-types #f () ())
  5698. (3157 meta-types #f () ())
  5699. (3158 meta-types #f () ())
  5700. (3159 meta-types #f () ())
  5701. (3160 meta-types #f () ())
  5702. (3161 meta-types #f () ())
  5703. (3162 meta-types #f () ())
  5704. (3163 meta-types #f () ())
  5705. (3164 meta-types #f () ())
  5706. (3165 loop 3164 () ())
  5707. (3166 meta-types #f () ())
  5708. (3167 meta-types #f () ())
  5709. (3168 meta-types #f () ())
  5710. (3169 meta-types #f () ())
  5711. (3170 meta-types #f () ())
  5712. (3171 meta-types #f () ())
  5713. (3172 meta-types #f () ())
  5714. (3173 meta-types #f () ())
  5715. (3174 meta-types #f () ())
  5716. (3175 meta-types #f () ())
  5717. (3176 meta-types #f () ())
  5718. (3177 meta-types #f () ())
  5719. (3178 meta-types #f () ())
  5720. (3179 meta-types #f () ())
  5721. (3180 meta-types #f () ())
  5722. (3181 meta-types #f () ())
  5723. (3182 meta-types #f () ())
  5724. (3183 meta-types #f () ())
  5725. (3184 meta-types #f () ())
  5726. (3185 meta-types #f () ())
  5727. (3186 #f 3185 () ())
  5728. (3187 meta-types #f () ())
  5729. (3188 type-mask 3187 () ())
  5730. (3189 meta-types #f () ())
  5731. (3190 type-more 3189 () ())
  5732. (3191 meta-types #f () ())
  5733. (3192 type-info 3191 () ())
  5734. (3193 meta-types #f () ())
  5735. (3194 really-make-type 3193 () ())
  5736. (3195 meta-types #f () ())
  5737. (3196 meta-types #f () ())
  5738. (3197 meta-type? 3196 () ())
  5739. (3198 meta-types #f () ())
  5740. (3199 make-type 3198 () ())
  5741. (3200 meta-types #f () ())
  5742. (3201 set-type-name! 3200 () ())
  5743. (3202 meta-types #f () ())
  5744. (3203 make-other-type 3202 () ())
  5745. (3204 meta-types #f () ())
  5746. (3205 name->type 3204 () ())
  5747. (3206 meta-types #f () ())
  5748. (3207 new-type-bit 3206 () ())
  5749. (3208 meta-types #f () ())
  5750. (3209 mask->type 3208 () ())
  5751. (3210 meta-types #f () ())
  5752. (3211 bottom-type? 3210 () ())
  5753. (3212 meta-types #f () ())
  5754. (3213 new-atomic-type 3212 () ())
  5755. (3214 meta-types #f () ())
  5756. (3215 named-atomic-type 3214 () ())
  5757. (3216 meta-types #f () ())
  5758. (3217 empty-rail-type? 3216 () ())
  5759. (3218 meta-types #f () ())
  5760. (3219 rest-type? 3218 () ())
  5761. (3220 meta-types #f () ())
  5762. (3221 same-type? 3220 () ())
  5763. (3222 meta-types #f () ())
  5764. (3223 head-type 3222 () ())
  5765. (3224 meta-types #f () ())
  5766. (3225 optional-type? 3224 () ())
  5767. (3226 meta-types #f () ())
  5768. (3227 rail-type 3226 () ())
  5769. (3228 meta-types #f () ())
  5770. (3229 make-optional-type 3228 () ())
  5771. (3230 meta-types #f () ())
  5772. (3231 make-rest-type 3230 () ())
  5773. (3232 meta-types #f () ())
  5774. (3233 head-type-really 3232 () ())
  5775. (3234 meta-types #f () ())
  5776. (3235 tail-type 3234 () ())
  5777. (3236 meta-types #f () ())
  5778. (3237 value-type? 3236 () ())
  5779. (3238 meta-types #f () ())
  5780. (3239 other-type-info 3238 () ())
  5781. (3240 meta-types #f () ())
  5782. (3241 restrictive? 3240 () ())
  5783. (3242 meta-types #f () ())
  5784. (3243 make-procedure-type 3242 () ())
  5785. (3244 meta-types #f () ())
  5786. (3245 procedure-type-domain 3244 () ())
  5787. (3246 meta-types #f () ())
  5788. (3247 procedure-type-codomain 3246 () ())
  5789. (3248 meta-types #f () ())
  5790. (3249 meet-procedure 3248 () ())
  5791. (3250 meta-types #f () ())
  5792. (3251 meet-rail 3250 () ())
  5793. (3252 meta-types #f () ())
  5794. (3253 meet-type 3252 () ())
  5795. (3254 meta-types #f () ())
  5796. (3255 subtype? 3254 () ())
  5797. (3256 meta-types #f () ())
  5798. (3257 meet-procedure? 3256 () ())
  5799. (3258 meta-types #f () ())
  5800. (3259 meet? 3258 () ())
  5801. (3260 meta-types #f () ())
  5802. (3261 procedure-type? 3260 () ())
  5803. (3262 meta-types #f () ())
  5804. (3263 join-procedure 3262 () ())
  5805. (3264 meta-types #f () ())
  5806. (3265 join-rail 3264 () ())
  5807. (3266 meta-types #f () ())
  5808. (3267 join-type 3266 () ())
  5809. (3268 meta-types #f () ())
  5810. (3269 procedure-type 3268 () ())
  5811. (3270 meta-types #f () ())
  5812. (3271 variable-type 3270 () ())
  5813. (3272 meta-types #f () ())
  5814. (3273 sexp->values-type 3272 () ())
  5815. (3274 meta-types #f () ())
  5816. (3275 sexp->type 3274 () ())
  5817. (3276 #f 3275 () ())
  5818. (3277 #f 3275 () ())
  5819. (3278 meta-types #f () ())
  5820. (3279 variable-type? 3278 () ())
  5821. (3280 meta-types #f () ())
  5822. (3281 disjoin-rest 3280 () ())
  5823. (3282 meta-types #f () ())
  5824. (3283 disjoin-type 3282 () ())
  5825. (3284 loop##348 3283 () ())
  5826. (3285 meta-types #f () ())
  5827. (3286 atomic-type->sexp 3285 () ())
  5828. (3287 meta-types #f () ())
  5829. (3288 rail-type->sexp 3287 () ())
  5830. (3289 recur 3288 () ())
  5831. (3290 meta-types #f () ())
  5832. (3291 type->sexp 3290 () ())
  5833. (3292 #f 3291 () ())
  5834. (3293 meta-types #f () ())
  5835. (3294 make-some-values-type 3293 () ())
  5836. (3295 meta-types #f () ())
  5837. (3296 fixed-arity-procedure-type? 3295 () ())
  5838. (3297 loop 3296 () ())
  5839. (3298 meta-types #f () ())
  5840. (3299 procedure-type-arity 3298 () ())
  5841. (3300 loop##351 3299 () ())
  5842. (3301 meta-types #f () ())
  5843. (3302 procedure-type-argument-types 3301 () ())
  5844. (3303 recur 3302 () ())
  5845. (3304 meta-types #f () ())
  5846. (3305 compatible-types? 3304 () ())
  5847. (3306 meta-types #f () ())
  5848. (3307 meta-types #f () ())
  5849. (3308 meta-types #f () ())
  5850. (3309 interfaces #f () ())
  5851. (3310 #f 3309 () ())
  5852. (3311 interfaces #f () ())
  5853. (3312 ref-method 3311 () ())
  5854. (3313 interfaces #f () ())
  5855. (3314 walk-method 3313 () ())
  5856. (3315 interfaces #f () ())
  5857. (3316 interface-clients 3315 () ())
  5858. (3317 interfaces #f () ())
  5859. (3318 set-interface-name! 3317 () ())
  5860. (3319 interfaces #f () ())
  5861. (3320 interface-name 3319 () ())
  5862. (3321 interfaces #f () ())
  5863. (3322 really-make-interface 3321 () ())
  5864. (3323 interfaces #f () ())
  5865. (3324 interfaces #f () ())
  5866. (3325 interface? 3324 () ())
  5867. (3326 interfaces #f () ())
  5868. (3327 make-interface 3326 () ())
  5869. (3328 interfaces #f () ())
  5870. (3329 interface-ref 3328 () ())
  5871. (3330 interfaces #f () ())
  5872. (3331 interface-member? 3330 () ())
  5873. (3332 #f 3331 () ())
  5874. (3333 #f 3331 () ())
  5875. (3334 interfaces #f () ())
  5876. (3335 for-each-declaration 3334 () ())
  5877. (3336 interfaces #f () ())
  5878. (3337 note-reference-to-interface! 3336 () ())
  5879. (3338 interfaces #f () ())
  5880. (3339 note-interface-name! 3338 () ())
  5881. (3340 interfaces #f () ())
  5882. (3341 make-simple-interface-table 3340 () ())
  5883. (3342 #f 3341 () ())
  5884. (3343 #f 3342 () ())
  5885. (3344 interfaces #f () ())
  5886. (3345 make-simple-interface 3344 () ())
  5887. (3346 #f 3345 () ())
  5888. (3347 #f 3345 () ())
  5889. (3348 #f 3347 () ())
  5890. (3349 interfaces #f () ())
  5891. (3350 make-compound-interface 3349 () ())
  5892. (3351 #f 3350 () ())
  5893. (3352 loop 3351 () ())
  5894. (3353 #f 3352 () ())
  5895. (3354 #f 3352 () ())
  5896. (3355 #f 3350 () ())
  5897. (3356 #f 3355 () ())
  5898. (3357 #f 3350 () ())
  5899. (3358 interfaces #f () ())
  5900. (3359 proper-list? 3358 () ())
  5901. (3360 interfaces #f () ())
  5902. (3361 okay-command? 3360 () ())
  5903. (3362 #f 3361 () ())
  5904. (3363 interfaces #f () ())
  5905. (3364 process-prefix 3363 () ())
  5906. (3365 #f 3364 () ())
  5907. (3366 #f 3364 () ())
  5908. (3367 interfaces #f () ())
  5909. (3368 prefix-match? 3367 () ())
  5910. (3369 loop 3368 () ())
  5911. (3370 interfaces #f () ())
  5912. (3371 remove-prefix 3370 () ())
  5913. (3372 interfaces #f () ())
  5914. (3373 interface-lookup 3372 () ())
  5915. (3374 interfaces #f () ())
  5916. (3375 process-expose 3374 () ())
  5917. (3376 loop 3375 () ())
  5918. (3377 interfaces #f () ())
  5919. (3378 process-hide 3377 () ())
  5920. (3379 interfaces #f () ())
  5921. (3380 process-alias 3379 () ())
  5922. (3381 #f 3380 () ())
  5923. (3382 interfaces #f () ())
  5924. (3383 process-rename 3382 () ())
  5925. (3384 #f 3383 () ())
  5926. (3385 interfaces #f () ())
  5927. (3386 process-commands 3385 () ())
  5928. (3387 loop 3386 () ())
  5929. (3388 #f 3387 () ())
  5930. (3389 #f 3387 () ())
  5931. (3390 #f 3387 () ())
  5932. (3391 interfaces #f () ())
  5933. (3392 make-lookup 3391 () ())
  5934. (3393 #f 3392 () ())
  5935. (3394 interfaces #f () ())
  5936. (3395 walk-default 3394 () ())
  5937. (3396 #f 3395 () ())
  5938. (3397 interfaces #f () ())
  5939. (3398 walk-alist 3397 () ())
  5940. (3399 #f 3398 () ())
  5941. (3400 #f 3399 () ())
  5942. (3401 #f 3399 () ())
  5943. (3402 interfaces #f () ())
  5944. (3403 make-interface-walker 3402 () ())
  5945. (3404 #f 3403 () ())
  5946. (3405 interfaces #f () ())
  5947. (3406 make-modified-interface-maker 3405 () ())
  5948. (3407 #f 3406 () ())
  5949. (3408 #f 3407 () ())
  5950. (3409 #f 3406 () ())
  5951. (3410 bindings #f () ())
  5952. (3411 set-binding-type! 3410 () ())
  5953. (3412 bindings #f () ())
  5954. (3413 binding-type 3412 () ())
  5955. (3414 bindings #f () ())
  5956. (3415 set-binding-place! 3414 () ())
  5957. (3416 bindings #f () ())
  5958. (3417 binding-place 3416 () ())
  5959. (3418 bindings #f () ())
  5960. (3419 set-binding-static! 3418 () ())
  5961. (3420 bindings #f () ())
  5962. (3421 binding-static 3420 () ())
  5963. (3422 bindings #f () ())
  5964. (3423 binding-path 3422 () ())
  5965. (3424 bindings #f () ())
  5966. (3425 really-make-binding 3424 () ())
  5967. (3426 bindings #f () ())
  5968. (3427 bindings #f () ())
  5969. (3428 binding? 3427 () ())
  5970. (3429 bindings #f () ())
  5971. (3430 make-binding 3429 () ())
  5972. (3431 bindings #f () ())
  5973. (3432 add-path 3431 () ())
  5974. (3433 bindings #f () ())
  5975. (3434 clobber-binding! 3433 () ())
  5976. (3435 bindings #f () ())
  5977. (3436 impose-type 3435 () ())
  5978. (3437 bindings #f () ())
  5979. (3438 forget-integration 3437 () ())
  5980. (3439 bindings #f () ())
  5981. (3440 same-denotation? 3439 () ())
  5982. (3441 bindings #f () ())
  5983. (3442 follow-forwarding-pointers 3441 () ())
  5984. (3443 bindings #f () ())
  5985. (3444 maybe-fix-place! 3443 () ())
  5986. (3445 names #f () ())
  5987. (3446 #f 3445 () ())
  5988. (3447 names #f () ())
  5989. (3448 transform-procedure 3447 () ())
  5990. (3449 names #f () ())
  5991. (3450 transform-env 3449 () ())
  5992. (3451 names #f () ())
  5993. (3452 transform-type 3451 () ())
  5994. (3453 names #f () ())
  5995. (3454 transform-aux-names 3453 () ())
  5996. (3455 names #f () ())
  5997. (3456 transform-source 3455 () ())
  5998. (3457 names #f () ())
  5999. (3458 transform-id 3457 () ())
  6000. (3459 names #f () ())
  6001. (3460 really-make-transform 3459 () ())
  6002. (3461 names #f () ())
  6003. (3462 names #f () ())
  6004. (3463 names #f () ())
  6005. (3464 #f 3463 () ())
  6006. (3465 names #f () ())
  6007. (3466 generated-name 3465 () ())
  6008. (3467 names #f () ())
  6009. (3468 generated-token 3467 () ())
  6010. (3469 names #f () ())
  6011. (3470 generated-env 3469 () ())
  6012. (3471 names #f () ())
  6013. (3472 generated-parent-name 3471 () ())
  6014. (3473 names #f () ())
  6015. (3474 make-generated 3473 () ())
  6016. (3475 names #f () ())
  6017. (3476 names #f () ())
  6018. (3477 generated? 3476 () ())
  6019. (3478 names #f () ())
  6020. (3479 name? 3478 () ())
  6021. (3480 names #f () ())
  6022. (3481 generate-name 3480 () ())
  6023. (3482 names #f () ())
  6024. (3483 generated-uid 3482 () ())
  6025. (3484 names #f () ())
  6026. (3485 name->symbol 3484 () ())
  6027. (3486 names #f () ())
  6028. (3487 name-hash 3486 () ())
  6029. (3488 names #f () ())
  6030. (3489 desyntaxify 3488 () ())
  6031. (3490 loop 3489 () ())
  6032. (3491 names #f () ())
  6033. (3492 make-qualified 3491 () ())
  6034. (3493 names #f () ())
  6035. (3494 qualified? 3493 () ())
  6036. (3495 names #f () ())
  6037. (3496 qualified-parent-name 3495 () ())
  6038. (3497 names #f () ())
  6039. (3498 qualified-symbol 3497 () ())
  6040. (3499 names #f () ())
  6041. (3500 qualified-uid 3499 () ())
  6042. (3501 names #f () ())
  6043. (3502 cenv-lookup 3501 () ())
  6044. (3503 names #f () ())
  6045. (3504 qualify-parent 3503 () ())
  6046. (3505 recur 3504 () ())
  6047. (3506 names #f () ())
  6048. (3507 name->qualified 3506 () ())
  6049. (3508 names #f () ())
  6050. (3509 transform? 3508 () ())
  6051. (3510 names #f () ())
  6052. (3511 make-transform 3510 () ())
  6053. (3512 names #f () ())
  6054. (3513 name->source-name 3512 () ())
  6055. (3514 names #f () ())
  6056. (3515 make-keyword-comparator 3514 () ())
  6057. (3516 #f 3515 () ())
  6058. (3517 names #f () ())
  6059. (3518 make-name-generator 3517 () ())
  6060. (3519 #f 3518 () ())
  6061. (3520 names #f () ())
  6062. (3521 bind-aliases 3520 () ())
  6063. (3522 #f 3521 () ())
  6064. (3523 names #f () ())
  6065. (3524 maybe-apply-macro-transform 3523 () ())
  6066. (3525 names #f () ())
  6067. (3526 apply-inline-transform 3525 () ())
  6068. (3527 names #f () ())
  6069. (3528 compiler-envs #f () ())
  6070. (3529 compiler-envs #f () ())
  6071. (3530 compiler-envs #f () ())
  6072. (3531 compiler-envs #f () ())
  6073. (3532 compiler-envs #f () ())
  6074. (3533 lookup 3532 () ())
  6075. (3534 compiler-envs #f () ())
  6076. (3535 bind1 3534 () ())
  6077. (3536 #f 3535 () ())
  6078. (3537 compiler-envs #f () ())
  6079. (3538 bind 3537 () ())
  6080. (3539 compiler-envs #f () ())
  6081. (3540 bindrec 3539 () ())
  6082. (3541 #f 3540 () ())
  6083. (3542 compiler-envs #f () ())
  6084. (3543 make-compiler-env 3542 () ())
  6085. (3544 #f 3543 () ())
  6086. (3545 compiler-envs #f () ())
  6087. (3546 environment-macro-eval 3545 () ())
  6088. (3547 compiler-envs #f () ())
  6089. (3548 environment-define! 3547 () ())
  6090. (3549 compiler-envs #f () ())
  6091. (3550 extract-package-from-environment 3549 () ())
  6092. (3551 compiler-envs #f () ())
  6093. (3552 bind-source-file-name 3551 () ())
  6094. (3553 compiler-envs #f () ())
  6095. (3554 source-file-name 3553 () ())
  6096. (3555 thingies #f () ())
  6097. (3556 thingie-binding 3555 () ())
  6098. (3557 thingies #f () ())
  6099. (3558 thingie-name 3557 () ())
  6100. (3559 thingies #f () ())
  6101. (3560 thingie-want-type 3559 () ())
  6102. (3561 thingies #f () ())
  6103. (3562 make-thingie 3561 () ())
  6104. (3563 thingies #f () ())
  6105. (3564 thingies #f () ())
  6106. (3565 thingie? 3564 () ())
  6107. (3566 packages #f () ())
  6108. (3567 #f 3566 () ())
  6109. (3568 packages #f () ())
  6110. (3569 packages #f () ())
  6111. (3570 packages #f () ())
  6112. (3571 packages #f () ())
  6113. (3572 packages #f () ())
  6114. (3573 packages #f () ())
  6115. (3574 packages #f () ())
  6116. (3575 packages #f () ())
  6117. (3576 #f 3575 () ())
  6118. (3577 packages #f () ())
  6119. (3578 package-uid 3577 () ())
  6120. (3579 packages #f () ())
  6121. (3580 set-package-opens! 3579 () ())
  6122. (3581 packages #f () ())
  6123. (3582 package-opens-really 3581 () ())
  6124. (3583 packages #f () ())
  6125. (3584 package-definitions 3583 () ())
  6126. (3585 packages #f () ())
  6127. (3586 package-unstable? 3585 () ())
  6128. (3587 packages #f () ())
  6129. (3588 set-package-integrate?! 3587 () ())
  6130. (3589 packages #f () ())
  6131. (3590 package-integrate? 3589 () ())
  6132. (3591 packages #f () ())
  6133. (3592 set-package-get-location! 3591 () ())
  6134. (3593 packages #f () ())
  6135. (3594 package-get-location 3593 () ())
  6136. (3595 packages #f () ())
  6137. (3596 package-file-name 3595 () ())
  6138. (3597 packages #f () ())
  6139. (3598 package-clauses 3597 () ())
  6140. (3599 packages #f () ())
  6141. (3600 set-package-loaded?! 3599 () ())
  6142. (3601 packages #f () ())
  6143. (3602 package-loaded? 3601 () ())
  6144. (3603 packages #f () ())
  6145. (3604 set-package->environment! 3603 () ())
  6146. (3605 packages #f () ())
  6147. (3606 package->environment 3605 () ())
  6148. (3607 packages #f () ())
  6149. (3608 set-package-opens-thunk! 3607 () ())
  6150. (3609 packages #f () ())
  6151. (3610 package-opens-thunk 3609 () ())
  6152. (3611 packages #f () ())
  6153. (3612 package-accesses-thunk 3611 () ())
  6154. (3613 packages #f () ())
  6155. (3614 set-package-undefineds! 3613 () ())
  6156. (3615 packages #f () ())
  6157. (3616 package-real-undefineds 3615 () ())
  6158. (3617 packages #f () ())
  6159. (3618 set-package-undefined-but-assigneds! 3617 () ())
  6160. (3619 packages #f () ())
  6161. (3620 package-real-undefined-but-assigneds 3619 () ())
  6162. (3621 packages #f () ())
  6163. (3622 package-clients 3621 () ())
  6164. (3623 packages #f () ())
  6165. (3624 package-cached 3623 () ())
  6166. (3625 packages #f () ())
  6167. (3626 really-make-package 3625 () ())
  6168. (3627 packages #f () ())
  6169. (3628 packages #f () ())
  6170. (3629 #f 3628 () ())
  6171. (3630 packages #f () ())
  6172. (3631 structure-interface-thunk 3630 () ())
  6173. (3632 packages #f () ())
  6174. (3633 set-structure-interface! 3632 () ())
  6175. (3634 packages #f () ())
  6176. (3635 structure-interface-really 3634 () ())
  6177. (3636 packages #f () ())
  6178. (3637 structure-package 3636 () ())
  6179. (3638 packages #f () ())
  6180. (3639 structure-clients 3638 () ())
  6181. (3640 packages #f () ())
  6182. (3641 set-structure-name! 3640 () ())
  6183. (3642 packages #f () ())
  6184. (3643 structure-name 3642 () ())
  6185. (3644 packages #f () ())
  6186. (3645 really-make-structure 3644 () ())
  6187. (3646 packages #f () ())
  6188. (3647 packages #f () ())
  6189. (3648 structure? 3647 () ())
  6190. (3649 packages #f () ())
  6191. (3650 initialize-structure! 3649 () ())
  6192. (3651 packages #f () ())
  6193. (3652 structure-interface 3651 () ())
  6194. (3653 packages #f () ())
  6195. (3654 package? 3653 () ())
  6196. (3655 packages #f () ())
  6197. (3656 note-package-name! 3655 () ())
  6198. (3657 packages #f () ())
  6199. (3658 note-structure-name! 3657 () ())
  6200. (3659 packages #f () ())
  6201. (3660 make-structure 3659 () ())
  6202. (3661 #f 3660 () ())
  6203. (3662 packages #f () ())
  6204. (3663 structure-unstable? 3662 () ())
  6205. (3664 packages #f () ())
  6206. (3665 make-modified-structure 3664 () ())
  6207. (3666 #f 3665 () ())
  6208. (3667 packages #f () ())
  6209. (3668 get-new-location 3667 () ())
  6210. (3669 packages #f () ())
  6211. (3670 package-define! 3669 () ())
  6212. (3671 packages #f () ())
  6213. (3672 package-accesses 3671 () ())
  6214. (3673 packages #f () ())
  6215. (3674 initialize-package! 3673 () ())
  6216. (3675 #f 3674 () ())
  6217. (3676 #f 3674 () ())
  6218. (3677 packages #f () ())
  6219. (3678 initialize-package-if-necessary! 3677 () ())
  6220. (3679 packages #f () ())
  6221. (3680 package-definition 3679 () ())
  6222. (3681 packages #f () ())
  6223. (3682 search-opens 3681 () ())
  6224. (3683 loop 3682 () ())
  6225. (3684 packages #f () ())
  6226. (3685 structure-lookup 3684 () ())
  6227. (3686 #f 3685 () ())
  6228. (3687 #f 3685 () ())
  6229. (3688 packages #f () ())
  6230. (3689 package-lookup 3688 () ())
  6231. (3690 packages #f () ())
  6232. (3691 generic-lookup 3690 () ())
  6233. (3692 packages #f () ())
  6234. (3693 really-package-lookup 3692 () ())
  6235. (3694 packages #f () ())
  6236. (3695 real-structure-lookup 3694 () ())
  6237. (3696 packages #f () ())
  6238. (3697 for-each-export 3696 () ())
  6239. (3698 #f 3697 () ())
  6240. (3699 packages #f () ())
  6241. (3700 really-package->environment 3699 () ())
  6242. (3701 #f 3700 () ())
  6243. (3702 #f 3700 () ())
  6244. (3703 packages #f () ())
  6245. (3704 new-package-uid 3703 () ())
  6246. (3705 packages #f () ())
  6247. (3706 make-package 3705 () ())
  6248. (3707 packages #f () ())
  6249. (3708 lazy-table-accessor 3707 () ())
  6250. (3709 #f 3708 () ())
  6251. (3710 packages #f () ())
  6252. (3711 package-name 3710 () ())
  6253. (3712 packages #f () ())
  6254. (3713 package-opens 3712 () ())
  6255. (3714 packages #f () ())
  6256. (3715 make-simple-package 3714 () ())
  6257. (3716 #f 3715 () ())
  6258. (3717 #f 3715 () ())
  6259. (3718 packages #f () ())
  6260. (3719 package-add-static! 3718 () ())
  6261. (3720 packages #f () ())
  6262. (3721 package-refine-type! 3720 () ())
  6263. (3722 packages #f () ())
  6264. (3723 for-each-definition 3722 () ())
  6265. (3724 #f 3723 () ())
  6266. (3725 packages #f () ())
  6267. (3726 make-new-location 3725 () ())
  6268. (3727 packages #f () ())
  6269. (3728 flush-location-names 3727 () ())
  6270. (3729 packages #f () ())
  6271. (3730 print-undefined-names 3729 () ())
  6272. (3731 #f 3730 () ())
  6273. (3732 #f 3730 () ())
  6274. (3733 packages #f () ())
  6275. (3734 noting-undefined-variables 3733 () ())
  6276. (3735 add-name 3734 () ())
  6277. (3736 #f 3734 () ())
  6278. (3737 #f 3734 () ())
  6279. (3738 #f 3737 () ())
  6280. (3739 #f 3737 () ())
  6281. (3740 #f 3739 () ())
  6282. (3741 packages #f () ())
  6283. (3742 cenv->package 3741 () ())
  6284. (3743 packages #f () ())
  6285. (3744 get-location-for-unassignable 3743 () ())
  6286. (3745 #f 3744 () ())
  6287. (3746 #f 3744 () ())
  6288. (3747 packages #f () ())
  6289. (3748 package-note-caching! 3747 () ())
  6290. (3749 loop 3748 () ())
  6291. (3750 #f 3749 () ())
  6292. (3751 #f 3749 () ())
  6293. (3752 packages #f () ())
  6294. (3753 note-caching! 3752 () ())
  6295. (3754 packages #f () ())
  6296. (3755 location-for-reference 3754 () ())
  6297. (3756 loop 3755 () ())
  6298. (3757 #f 3756 () ())
  6299. (3758 #f 3756 () ())
  6300. (3759 packages #f () ())
  6301. (3760 get-location-for-undefined 3759 () ())
  6302. (3761 #f 3760 () ())
  6303. (3762 packages #f () ())
  6304. (3763 get-location 3762 () ())
  6305. (3764 packages #f () ())
  6306. (3765 really-link! 3764 () ())
  6307. (3766 loop##524 3765 () ())
  6308. (3767 packages #f () ())
  6309. (3768 link! 3767 () ())
  6310. (3769 #f 3768 () ())
  6311. (3770 packages #f () ())
  6312. (3771 location-on-demand 3770 () ())
  6313. (3772 #f 3771 () ())
  6314. (3773 packages #f () ())
  6315. (3774 packages #f () ())
  6316. (3775 environments #f () ())
  6317. (3776 set-reflective-tower-maker! 3775 () ())
  6318. (3777 environments #f () ())
  6319. (3778 make-reflective-tower 3777 () ())
  6320. (3779 recur 3778 () ())
  6321. (3780 #f 3779 () ())
  6322. (3781 environments #f () ())
  6323. (3782 null-environment 3781 () ())
  6324. (3783 environments #f () ())
  6325. (3784 set-scheme-report-environment! 3783 () ())
  6326. (3785 environments #f () ())
  6327. (3786 environments #f () ())
  6328. (3787 environments #f () ())
  6329. (3788 environments #f () ())
  6330. (3789 scheme-report-environment 3788 () ())
  6331. (3790 environments #f () ())
  6332. (3791 with-interaction-environment 3790 () ())
  6333. (3792 environments #f () ())
  6334. (3793 set-interaction-environment! 3792 () ())
  6335. (3794 environments #f () ())
  6336. (3795 interaction-environment 3794 () ())
  6337. (3796 environments #f () ())
  6338. (3797 environments #f () ())
  6339. (3798 carefully 3797 () ())
  6340. (3799 environments #f () ())
  6341. (3800 *structure-ref 3799 () ())
  6342. (3801 environments #f () ())
  6343. (3802 environment-define! 3801 () ())
  6344. (3803 environments #f () ())
  6345. (3804 environment-set! 3803 () ())
  6346. (3805 #f 3804 () ())
  6347. (3806 environments #f () ())
  6348. (3807 environment-ref 3806 () ())
  6349. (3808 #f 3807 () ())
  6350. (3809 filenames #f () ())
  6351. (3810 translate 3809 () ())
  6352. (3811 loop 3810 () ())
  6353. (3812 filenames #f () ())
  6354. (3813 set-translation! 3812 () ())
  6355. (3814 filenames #f () ())
  6356. (3815 translations 3814 () ())
  6357. (3816 filenames #f () ())
  6358. (3817 filenames #f () ())
  6359. (3818 string-posq 3817 () ())
  6360. (3819 loop 3818 () ())
  6361. (3820 filenames #f () ())
  6362. (3821 file-nondirectory-position 3820 () ())
  6363. (3822 loop 3821 () ())
  6364. (3823 filenames #f () ())
  6365. (3824 file-name-nondirectory 3823 () ())
  6366. (3825 filenames #f () ())
  6367. (3826 file-name-directory 3825 () ())
  6368. (3827 filenames #f () ())
  6369. (3828 filenames #f () ())
  6370. (3829 filenames #f () ())
  6371. (3830 filenames #f () ())
  6372. (3831 namestring-component 3830 () ())
  6373. (3832 filenames #f () ())
  6374. (3833 filenames #f () ())
  6375. (3834 filenames #f () ())
  6376. (3835 namestring 3834 () ())
  6377. (3836 #f 3835 () ())
  6378. (3837 reading-forms #f () ())
  6379. (3838 skip-line 3837 () ())
  6380. (3839 loop 3838 () ())
  6381. (3840 reading-forms #f () ())
  6382. (3841 really-read-forms 3840 () ())
  6383. (3842 loop 3841 () ())
  6384. (3843 reading-forms #f () ())
  6385. (3844 read-forms 3843 () ())
  6386. (3845 #f 3844 () ())
  6387. (3846 #f 3844 () ())
  6388. (3847 #f 3844 () ())
  6389. (3848 reading-forms #f () ())
  6390. (3849 #f 3848 () ())
  6391. (3850 nodes #f () ())
  6392. (3851 #f 3850 () ())
  6393. (3852 nodes #f () ())
  6394. (3853 #f 3852 () ())
  6395. (3854 nodes #f () ())
  6396. (3855 #f 3854 () ())
  6397. (3856 nodes #f () ())
  6398. (3857 #f 3856 () ())
  6399. (3858 nodes #f () ())
  6400. (3859 nodes #f () ())
  6401. (3860 nodes #f () ())
  6402. (3861 #f 3860 () ())
  6403. (3862 #f 3861 () ())
  6404. (3863 nodes #f () ())
  6405. (3864 #f 3863 () ())
  6406. (3865 nodes #f () ())
  6407. (3866 #f 3865 () ())
  6408. (3867 nodes #f () ())
  6409. (3868 #f 3867 () ())
  6410. (3869 nodes #f () ())
  6411. (3870 nodes #f () ())
  6412. (3871 nodes #f () ())
  6413. (3872 nodes #f () ())
  6414. (3873 nodes #f () ())
  6415. (3874 nodes #f () ())
  6416. (3875 nodes #f () ())
  6417. (3876 nodes #f () ())
  6418. (3877 nodes #f () ())
  6419. (3878 nodes #f () ())
  6420. (3879 nodes #f () ())
  6421. (3880 nodes #f () ())
  6422. (3881 nodes #f () ())
  6423. (3882 nodes #f () ())
  6424. (3883 nodes #f () ())
  6425. (3884 nodes #f () ())
  6426. (3885 nodes #f () ())
  6427. (3886 nodes #f () ())
  6428. (3887 nodes #f () ())
  6429. (3888 nodes #f () ())
  6430. (3889 nodes #f () ())
  6431. (3890 nodes #f () ())
  6432. (3891 nodes #f () ())
  6433. (3892 nodes #f () ())
  6434. (3893 nodes #f () ())
  6435. (3894 #f 3893 () ())
  6436. (3895 nodes #f () ())
  6437. (3896 node-operator-id 3895 () ())
  6438. (3897 nodes #f () ())
  6439. (3898 node-form 3897 () ())
  6440. (3899 nodes #f () ())
  6441. (3900 set-node-plist! 3899 () ())
  6442. (3901 nodes #f () ())
  6443. (3902 node-plist 3901 () ())
  6444. (3903 nodes #f () ())
  6445. (3904 really-make-node 3903 () ())
  6446. (3905 nodes #f () ())
  6447. (3906 nodes #f () ())
  6448. (3907 nodes #f () ())
  6449. (3908 nodes #f () ())
  6450. (3909 nodes #f () ())
  6451. (3910 nodes #f () ())
  6452. (3911 #f 3910 () ())
  6453. (3912 nodes #f () ())
  6454. (3913 set-operator-type! 3912 () ())
  6455. (3914 nodes #f () ())
  6456. (3915 operator-type 3914 () ())
  6457. (3916 nodes #f () ())
  6458. (3917 operator-nargs 3916 () ())
  6459. (3918 nodes #f () ())
  6460. (3919 operator-uid 3918 () ())
  6461. (3920 nodes #f () ())
  6462. (3921 operator-name 3920 () ())
  6463. (3922 nodes #f () ())
  6464. (3923 make-operator 3922 () ())
  6465. (3924 nodes #f () ())
  6466. (3925 nodes #f () ())
  6467. (3926 operator? 3925 () ())
  6468. (3927 nodes #f () ())
  6469. (3928 get-operator 3927 () ())
  6470. (3929 nodes #f () ())
  6471. (3930 make-operator-table 3929 () ())
  6472. (3931 nodes #f () ())
  6473. (3932 operator-lookup 3931 () ())
  6474. (3933 nodes #f () ())
  6475. (3934 operator-define! 3933 () ())
  6476. (3935 nodes #f () ())
  6477. (3936 node? 3935 () ())
  6478. (3937 nodes #f () ())
  6479. (3938 make-node 3937 () ())
  6480. (3939 nodes #f () ())
  6481. (3940 node-ref 3939 () ())
  6482. (3941 nodes #f () ())
  6483. (3942 node-set! 3941 () ())
  6484. (3943 loop 3942 () ())
  6485. (3944 nodes #f () ())
  6486. (3945 node-operator 3944 () ())
  6487. (3946 nodes #f () ())
  6488. (3947 node-predicate 3946 () ())
  6489. (3948 #f 3947 () ())
  6490. (3949 nodes #f () ())
  6491. (3950 make-similar-node 3949 () ())
  6492. (3951 nodes #f () ())
  6493. (3952 force-node 3951 () ())
  6494. (3953 nodes #f () ())
  6495. (3954 schemify-node 3953 () ())
  6496. (3955 nodes #f () ())
  6497. (3956 schemify-sexp 3955 () ())
  6498. (3957 loop 3956 () ())
  6499. (3958 nodes #f () ())
  6500. (3959 schemify 3958 () ())
  6501. (3960 nodes #f () ())
  6502. (3961 schemify-nodes 3960 () ())
  6503. (3962 #f 3961 () ())
  6504. (3963 nodes #f () ())
  6505. (3964 define-schemifier 3963 () ())
  6506. (3965 nodes #f () ())
  6507. (3966 schemify-formals 3965 () ())
  6508. (3967 nodes #f () ())
  6509. (3968 schemify-lambda 3967 () ())
  6510. (3969 nodes #f () ())
  6511. (3970 schemify-letrec 3969 () ())
  6512. (3971 #f 3970 () ())
  6513. (3972 nodes #f () ())
  6514. (3973 nodes #f () ())
  6515. (3974 var-utilities #f () ())
  6516. (3975 normalize-formals 3974 () ())
  6517. (3976 var-utilities #f () ())
  6518. (3977 n-ary? 3976 () ())
  6519. (3978 var-utilities #f () ())
  6520. (3979 number-of-required-args 3978 () ())
  6521. (3980 loop##557 3979 () ())
  6522. (3981 syntactic #f () ())
  6523. (3982 #f 3981 () ())
  6524. (3983 #f 3982 () ())
  6525. (3984 syntactic #f () ())
  6526. (3985 #f 3984 () ())
  6527. (3986 #f 3985 () ())
  6528. (3987 #f 3986 () ())
  6529. (3988 syntactic #f () ())
  6530. (3989 #f 3988 () ())
  6531. (3990 #f 3989 () ())
  6532. (3991 syntactic #f () ())
  6533. (3992 #f 3991 () ())
  6534. (3993 syntactic #f () ())
  6535. (3994 #f 3993 () ())
  6536. (3995 #f 3994 () ())
  6537. (3996 syntactic #f () ())
  6538. (3997 #f 3996 () ())
  6539. (3998 syntactic #f () ())
  6540. (3999 #f 3998 () ())
  6541. (4000 syntactic #f () ())
  6542. (4001 #f 4000 () ())
  6543. (4002 syntactic #f () ())
  6544. (4003 #f 4002 () ())
  6545. (4004 syntactic #f () ())
  6546. (4005 #f 4004 () ())
  6547. (4006 syntactic #f () ())
  6548. (4007 #f 4006 () ())
  6549. (4008 syntactic #f () ())
  6550. (4009 #f 4008 () ())
  6551. (4010 syntactic #f () ())
  6552. (4011 #f 4010 () ())
  6553. (4012 syntactic #f () ())
  6554. (4013 #f 4012 () ())
  6555. (4014 syntactic #f () ())
  6556. (4015 syntactic #f () ())
  6557. (4016 syntactic #f () ())
  6558. (4017 syntactic #f () ())
  6559. (4018 at-least-this-long? 4017 () ())
  6560. (4019 syntactic #f () ())
  6561. (4020 names? 4019 () ())
  6562. (4021 syntactic #f () ())
  6563. (4022 destructure-define 4021 () ())
  6564. (4023 syntactic #f () ())
  6565. (4024 scan-define 4023 () ())
  6566. (4025 syntactic #f () ())
  6567. (4026 this-long? 4025 () ())
  6568. (4027 syntactic #f () ())
  6569. (4028 process-syntax 4027 () ())
  6570. (4029 syntactic #f () ())
  6571. (4030 scan-define-syntax 4029 () ())
  6572. (4031 syntactic #f () ())
  6573. (4032 expand-name 4031 () ())
  6574. (4033 syntactic #f () ())
  6575. (4034 expand-operator-form 4033 () ())
  6576. (4035 syntactic #f () ())
  6577. (4036 literal? 4035 () ())
  6578. (4037 syntactic #f () ())
  6579. (4038 expand-literal 4037 () ())
  6580. (4039 syntactic #f () ())
  6581. (4040 expand-list 4039 () ())
  6582. (4041 #f 4040 () ())
  6583. (4042 syntactic #f () ())
  6584. (4043 expand-call 4042 () ())
  6585. (4044 syntactic #f () ())
  6586. (4045 expand 4044 () ())
  6587. (4046 syntactic #f () ())
  6588. (4047 expand-macro-application 4046 () ())
  6589. (4048 #f 4047 () ())
  6590. (4049 #f 4047 () ())
  6591. (4050 syntactic #f () ())
  6592. (4051 expand-structure-ref 4050 () ())
  6593. (4052 struct-node 4051 () ())
  6594. (4053 syntactic #f () ())
  6595. (4054 expand-head 4053 () ())
  6596. (4055 syntactic #f () ())
  6597. (4056 scan-forms 4055 () ())
  6598. (4057 loop 4056 () ())
  6599. (4058 syntactic #f () ())
  6600. (4059 expand-define 4058 () ())
  6601. (4060 syntactic #f () ())
  6602. (4061 expand-scanned-form 4060 () ())
  6603. (4062 syntactic #f () ())
  6604. (4063 expand-form 4062 () ())
  6605. (4064 loop 4063 () ())
  6606. (4065 syntactic #f () ())
  6607. (4066 static-value 4065 () ())
  6608. (4067 syntactic #f () ())
  6609. (4068 make-operator-predicate 4067 () ())
  6610. (4069 #f 4068 () ())
  6611. (4070 syntactic #f () ())
  6612. (4071 body-lossage 4070 () ())
  6613. (4072 syntactic #f () ())
  6614. (4073 scan-body-forms 4072 () ())
  6615. (4074 #f 4073 () ())
  6616. (4075 #f 4073 () ())
  6617. (4076 syntactic #f () ())
  6618. (4077 expand-letrec 4076 () ())
  6619. (4078 #f 4077 () ())
  6620. (4079 syntactic #f () ())
  6621. (4080 expand-body 4079 () ())
  6622. (4081 #f 4080 () ())
  6623. (4082 #f 4081 () ())
  6624. (4083 #f 4081 () ())
  6625. (4084 #f 4080 () ())
  6626. (4085 syntactic #f () ())
  6627. (4086 define-expander 4085 () ())
  6628. (4087 syntactic #f () ())
  6629. (4088 unspecific-node 4087 () ())
  6630. (4089 syntactic #f () ())
  6631. (4090 bind-names 4089 () ())
  6632. (4091 loop 4090 () ())
  6633. (4092 syntactic #f () ())
  6634. (4093 expand-lambda 4092 () ())
  6635. (4094 #f 4093 () ())
  6636. (4095 #f 4093 () ())
  6637. (4096 syntactic #f () ())
  6638. (4097 let-specs? 4096 () ())
  6639. (4098 syntactic #f () ())
  6640. (4099 syntax? 4098 () ())
  6641. (4100 primops #f () ())
  6642. (4101 primops #f () ())
  6643. (4102 #f 4101 () ())
  6644. (4103 primops #f () ())
  6645. (4104 primop-name 4103 () ())
  6646. (4105 primops #f () ())
  6647. (4106 primop-type 4105 () ())
  6648. (4107 primops #f () ())
  6649. (4108 primop-closed 4107 () ())
  6650. (4109 primops #f () ())
  6651. (4110 primop-compilator 4109 () ())
  6652. (4111 primops #f () ())
  6653. (4112 make-primop 4111 () ())
  6654. (4113 primops #f () ())
  6655. (4114 primops #f () ())
  6656. (4115 primop? 4114 () ())
  6657. (4116 primops #f () ())
  6658. (4117 walk-primops 4116 () ())
  6659. (4118 #f 4117 () ())
  6660. (4119 primops #f () ())
  6661. (4120 define-compiler-primitive 4119 () ())
  6662. (4121 primops #f () ())
  6663. (4122 get-primop 4121 () ())
  6664. (4123 vm-data #f () ())
  6665. (4124 remove-stob-tag 4123 () ())
  6666. (4125 vm-data #f () ())
  6667. (4126 add-stob-tag 4125 () ())
  6668. (4127 vm-data #f () ())
  6669. (4128 b-vector-header? 4127 () ())
  6670. (4129 vm-data #f () ())
  6671. (4130 d-vector-header? 4129 () ())
  6672. (4131 vm-data #f () ())
  6673. (4132 header-length-in-a-units 4131 () ())
  6674. (4133 vm-data #f () ())
  6675. (4134 header-length-in-cells 4133 () ())
  6676. (4135 vm-data #f () ())
  6677. (4136 header-length-in-bytes 4135 () ())
  6678. (4137 vm-data #f () ())
  6679. (4138 immutable-header? 4137 () ())
  6680. (4139 vm-data #f () ())
  6681. (4140 header-type 4139 () ())
  6682. (4141 vm-data #f () ())
  6683. (4142 make-header-immutable 4141 () ())
  6684. (4143 vm-data #f () ())
  6685. (4144 vm-data #f () ())
  6686. (4145 make-header 4144 () ())
  6687. (4146 vm-data #f () ())
  6688. (4147 vm-data #f () ())
  6689. (4148 vm-data #f () ())
  6690. (4149 vm-data #f () ())
  6691. (4150 vm-data #f () ())
  6692. (4151 vm-data #f () ())
  6693. (4152 char->scalar-value 4151 () ())
  6694. (4153 vm-data #f () ())
  6695. (4154 scalar-value->char 4153 () ())
  6696. (4155 vm-data #f () ())
  6697. (4156 extract-char 4155 () ())
  6698. (4157 vm-data #f () ())
  6699. (4158 enter-char 4157 () ())
  6700. (4159 vm-data #f () ())
  6701. (4160 vm-boolean? 4159 () ())
  6702. (4161 vm-data #f () ())
  6703. (4162 extract-boolean 4161 () ())
  6704. (4163 vm-data #f () ())
  6705. (4164 enter-boolean 4163 () ())
  6706. (4165 vm-data #f () ())
  6707. (4166 false? 4165 () ())
  6708. (4167 vm-data #f () ())
  6709. (4168 vm-data #f () ())
  6710. (4169 vm-data #f () ())
  6711. (4170 vm-data #f () ())
  6712. (4171 vm-data #f () ())
  6713. (4172 vm-data #f () ())
  6714. (4173 vm-data #f () ())
  6715. (4174 vm-data #f () ())
  6716. (4175 vm-data #f () ())
  6717. (4176 vm-data #f () ())
  6718. (4177 vm-data #f () ())
  6719. (4178 vm-data #f () ())
  6720. (4179 scalar-value-units->bytes 4178 () ())
  6721. (4180 vm-data #f () ())
  6722. (4181 bytes->scalar-value-units 4180 () ())
  6723. (4182 vm-data #f () ())
  6724. (4183 vm-data #f () ())
  6725. (4184 immediate-predicate 4183 () ())
  6726. (4185 #f 4184 () ())
  6727. (4186 vm-data #f () ())
  6728. (4187 vm-data #f () ())
  6729. (4188 vm-data #f () ())
  6730. (4189 make-tag&immediate-type 4188 () ())
  6731. (4190 vm-data #f () ())
  6732. (4191 tag&immediate-type 4190 () ())
  6733. (4192 vm-data #f () ())
  6734. (4193 immediate-info 4192 () ())
  6735. (4194 vm-data #f () ())
  6736. (4195 immediate-type 4194 () ())
  6737. (4196 vm-data #f () ())
  6738. (4197 make-immediate 4196 () ())
  6739. (4198 vm-data #f () ())
  6740. (4199 vm-data #f () ())
  6741. (4200 vm-data #f () ())
  6742. (4201 vm-data #f () ())
  6743. (4202 vm-data #f () ())
  6744. (4203 fixnum-bitwise-not 4202 () ())
  6745. (4204 vm-data #f () ())
  6746. (4205 vm-data #f () ())
  6747. (4206 vm-data #f () ())
  6748. (4207 vm-data #f () ())
  6749. (4208 vm-data #f () ())
  6750. (4209 vm-data #f () ())
  6751. (4210 fixnum->stob 4209 () ())
  6752. (4211 vm-data #f () ())
  6753. (4212 descriptor->fixnum 4211 () ())
  6754. (4213 vm-data #f () ())
  6755. (4214 extract-fixnum 4213 () ())
  6756. (4215 vm-data #f () ())
  6757. (4216 enter-fixnum 4215 () ())
  6758. (4217 vm-data #f () ())
  6759. (4218 too-small-for-fixnum? 4217 () ())
  6760. (4219 vm-data #f () ())
  6761. (4220 too-big-for-fixnum? 4219 () ())
  6762. (4221 vm-data #f () ())
  6763. (4222 vm-data #f () ())
  6764. (4223 vm-data #f () ())
  6765. (4224 vm-data #f () ())
  6766. (4225 stob? 4224 () ())
  6767. (4226 vm-data #f () ())
  6768. (4227 header? 4226 () ())
  6769. (4228 vm-data #f () ())
  6770. (4229 immediate? 4228 () ())
  6771. (4230 vm-data #f () ())
  6772. (4231 fixnum? 4230 () ())
  6773. (4232 vm-data #f () ())
  6774. (4233 vm-data #f () ())
  6775. (4234 vm-data #f () ())
  6776. (4235 vm-data #f () ())
  6777. (4236 set-descriptor-tag 4235 () ())
  6778. (4237 vm-data #f () ())
  6779. (4238 unsigned-descriptor-data 4237 () ())
  6780. (4239 vm-data #f () ())
  6781. (4240 descriptor-data 4239 () ())
  6782. (4241 vm-data #f () ())
  6783. (4242 descriptor-tag 4241 () ())
  6784. (4243 vm-data #f () ())
  6785. (4244 make-descriptor 4243 () ())
  6786. (4245 vm-data #f () ())
  6787. (4246 vm-data #f () ())
  6788. (4247 vm-data #f () ())
  6789. (4248 bytes->a-units 4247 () ())
  6790. (4249 vm-data #f () ())
  6791. (4250 a-units->cells 4249 () ())
  6792. (4251 vm-data #f () ())
  6793. (4252 cells->a-units 4251 () ())
  6794. (4253 vm-data #f () ())
  6795. (4254 vm-data #f () ())
  6796. (4255 vm-data #f () ())
  6797. (4256 cells->bytes 4255 () ())
  6798. (4257 vm-data #f () ())
  6799. (4258 bytes->cells 4257 () ())
  6800. (4259 vm-data #f () ())
  6801. (4260 vm-data #f () ())
  6802. (4261 vm-data #f () ())
  6803. (4262 vm-data #f () ())
  6804. (4263 vm-data #f () ())
  6805. (4264 vm-data #f () ())
  6806. (4265 vm-data #f () ())
  6807. (4266 low-bits 4265 () ())
  6808. (4267 vm-data #f () ())
  6809. (4268 adjoin-bits 4267 () ())
  6810. (4269 vm-data #f () ())
  6811. (4270 vm-data #f () ())
  6812. (4271 arithmetic-shift-right 4270 () ())
  6813. (4272 debug-data #f () ())
  6814. (4273 debug-data #f () ())
  6815. (4274 debug-data #f () ())
  6816. (4275 debug-data #f () ())
  6817. (4276 debug-data #f () ())
  6818. (4277 debug-data #f () ())
  6819. (4278 debug-data #f () ())
  6820. (4279 debug-data #f () ())
  6821. (4280 debug-data #f () ())
  6822. (4281 debug-data #f () ())
  6823. (4282 #f 4281 () ())
  6824. (4283 debug-data #f () ())
  6825. (4284 debug-data-uid 4283 () ())
  6826. (4285 debug-data #f () ())
  6827. (4286 debug-data-name 4285 () ())
  6828. (4287 debug-data #f () ())
  6829. (4288 debug-data-parent 4287 () ())
  6830. (4289 debug-data #f () ())
  6831. (4290 set-debug-data-env-maps! 4289 () ())
  6832. (4291 debug-data #f () ())
  6833. (4292 debug-data-env-maps 4291 () ())
  6834. (4293 debug-data #f () ())
  6835. (4294 set-debug-data-jump-back-dests! 4293 () ())
  6836. (4295 debug-data #f () ())
  6837. (4296 debug-data-jump-back-dests 4295 () ())
  6838. (4297 debug-data #f () ())
  6839. (4298 set-debug-data-source! 4297 () ())
  6840. (4299 debug-data #f () ())
  6841. (4300 debug-data-source 4299 () ())
  6842. (4301 debug-data #f () ())
  6843. (4302 make-debug-data 4301 () ())
  6844. (4303 debug-data #f () ())
  6845. (4304 debug-data #f () ())
  6846. (4305 debug-data? 4304 () ())
  6847. (4306 debug-data #f () ())
  6848. (4307 debug-data-env-shape 4306 () ())
  6849. (4308 loop 4307 () ())
  6850. (4309 debug-data #f () ())
  6851. (4310 new-template-uid 4309 () ())
  6852. (4311 debug-data #f () ())
  6853. (4312 template-uid 4311 () ())
  6854. (4313 debug-data #f () ())
  6855. (4314 set-template-uid! 4313 () ())
  6856. (4315 debug-data #f () ())
  6857. (4316 debug-flag-accessor 4315 () ())
  6858. (4317 #f 4316 () ())
  6859. (4318 debug-data #f () ())
  6860. (4319 debug-flag-modifier 4318 () ())
  6861. (4320 #f 4319 () ())
  6862. (4321 debug-data #f () ())
  6863. (4322 saving-and-restoring 4321 () ())
  6864. (4323 swap 4322 () ())
  6865. (4324 debug-data #f () ())
  6866. (4325 with-fresh-compiler-state 4324 () ())
  6867. (4326 #f 4325 () ())
  6868. (4327 #f 4326 () ())
  6869. (4328 #f 4326 () ())
  6870. (4329 debug-data #f () ())
  6871. (4330 note-debug-data! 4329 () ())
  6872. (4331 debug-data #f () ())
  6873. (4332 debug-data->info 4331 () ())
  6874. (4333 debug-data #f () ())
  6875. (4334 get-debug-data 4333 () ())
  6876. (4335 debug-data #f () ())
  6877. (4336 new-debug-data 4335 () ())
  6878. (4337 debug-data #f () ())
  6879. (4338 debug-data #f () ())
  6880. (4339 frames #f () ())
  6881. (4340 frame-template-index 4339 () ())
  6882. (4341 frames #f () ())
  6883. (4342 frame-env-index 4341 () ())
  6884. (4343 frames #f () ())
  6885. (4344 frame-closure-index 4343 () ())
  6886. (4345 frames #f () ())
  6887. (4346 set-frame-size! 4345 () ())
  6888. (4347 frames #f () ())
  6889. (4348 frame-size 4347 () ())
  6890. (4349 frames #f () ())
  6891. (4350 set-frame-literals! 4349 () ())
  6892. (4351 frames #f () ())
  6893. (4352 frame-literals 4351 () ())
  6894. (4353 frames #f () ())
  6895. (4354 set-frame-count! 4353 () ())
  6896. (4355 frames #f () ())
  6897. (4356 frame-count 4355 () ())
  6898. (4357 frames #f () ())
  6899. (4358 frame-debug-data 4357 () ())
  6900. (4359 frames #f () ())
  6901. (4360 really-make-frame 4359 () ())
  6902. (4361 frames #f () ())
  6903. (4362 frames #f () ())
  6904. (4363 frame? 4362 () ())
  6905. (4364 frames #f () ())
  6906. (4365 adjust-procedure-name 4364 () ())
  6907. (4366 frames #f () ())
  6908. (4367 make-frame 4366 () ())
  6909. (4368 allocate-index 4367 () ())
  6910. (4369 frames #f () ())
  6911. (4370 index->offset 4369 () ())
  6912. (4371 frames #f () ())
  6913. (4372 template-offset 4371 () ())
  6914. (4373 frames #f () ())
  6915. (4374 environment-offset 4373 () ())
  6916. (4375 frames #f () ())
  6917. (4376 depth-check! 4375 () ())
  6918. (4377 frames #f () ())
  6919. (4378 position 4377 () ())
  6920. (4379 loop 4378 () ())
  6921. (4380 frames #f () ())
  6922. (4381 literal-position 4380 () ())
  6923. (4382 #f 4381 () ())
  6924. (4383 frames #f () ())
  6925. (4384 literal->index 4383 () ())
  6926. (4385 frames #f () ())
  6927. (4386 binding->index 4385 () ())
  6928. (4387 segments #f () ())
  6929. (4388 segments #f () ())
  6930. (4389 #f 4388 () ())
  6931. (4390 segments #f () ())
  6932. (4391 astate-code-vector 4390 () ())
  6933. (4392 segments #f () ())
  6934. (4393 set-astate-pc! 4392 () ())
  6935. (4394 segments #f () ())
  6936. (4395 astate-pc 4394 () ())
  6937. (4396 segments #f () ())
  6938. (4397 set-astate-env-maps! 4396 () ())
  6939. (4398 segments #f () ())
  6940. (4399 astate-env-maps 4398 () ())
  6941. (4400 segments #f () ())
  6942. (4401 set-astate-jump-back-dests! 4400 () ())
  6943. (4402 segments #f () ())
  6944. (4403 astate-jump-back-dests 4402 () ())
  6945. (4404 segments #f () ())
  6946. (4405 make-assembly-state 4404 () ())
  6947. (4406 segments #f () ())
  6948. (4407 segments #f () ())
  6949. (4408 segments #f () ())
  6950. (4409 segments #f () ())
  6951. (4410 segments #f () ())
  6952. (4411 segments #f () ())
  6953. (4412 emit-segment! 4411 () ())
  6954. (4413 segments #f () ())
  6955. (4414 high-byte 4413 () ())
  6956. (4415 segments #f () ())
  6957. (4416 low-byte 4415 () ())
  6958. (4417 segments #f () ())
  6959. (4418 add-big-stack-protocol! 4417 () ())
  6960. (4419 segments #f () ())
  6961. (4420 make-astate 4419 () ())
  6962. (4421 segments #f () ())
  6963. (4422 check-stack-use 4421 () ())
  6964. (4423 segments #f () ())
  6965. (4424 segment->cv 4423 () ())
  6966. (4425 segments #f () ())
  6967. (4426 segment-data->template 4425 () ())
  6968. (4427 loop##645 4426 () ())
  6969. (4428 segments #f () ())
  6970. (4429 segment->template 4428 () ())
  6971. (4430 #f 4429 () ())
  6972. (4431 segments #f () ())
  6973. (4432 with-package-key 4431 () ())
  6974. (4433 segments #f () ())
  6975. (4434 emit-byte! 4433 () ())
  6976. (4435 segments #f () ())
  6977. (4436 instruction 4435 () ())
  6978. (4437 #f 4436 () ())
  6979. (4438 #f 4437 () ())
  6980. (4439 segments #f () ())
  6981. (4440 sequentially-2 4439 () ())
  6982. (4441 #f 4440 () ())
  6983. (4442 segments #f () ())
  6984. (4443 sequentially 4442 () ())
  6985. (4444 loop 4443 () ())
  6986. (4445 #f 4443 () ())
  6987. (4446 loop 4445 () ())
  6988. (4447 segments #f () ())
  6989. (4448 bits->bytes 4447 () ())
  6990. (4449 loop##646 4448 () ())
  6991. (4450 segments #f () ())
  6992. (4451 live-mask 4450 () ())
  6993. (4452 loop##647 4451 () ())
  6994. (4453 segments #f () ())
  6995. (4454 continuation-data 4453 () ())
  6996. (4455 #f 4454 () ())
  6997. (4456 #f 4455 () ())
  6998. (4457 segments #f () ())
  6999. (4458 make-push-byte 4457 () ())
  7000. (4459 segments #f () ())
  7001. (4460 lambda-protocol 4459 () ())
  7002. (4461 segments #f () ())
  7003. (4462 nary-lambda-protocol 4461 () ())
  7004. (4463 segments #f () ())
  7005. (4464 nary-primitive-protocol 4463 () ())
  7006. (4465 segments #f () ())
  7007. (4466 empty-segment? 4465 () ())
  7008. (4467 segments #f () ())
  7009. (4468 make-dispatch-protocol 4467 () ())
  7010. (4469 loop 4468 () ())
  7011. (4470 segments #f () ())
  7012. (4471 continuation-protocol 4470 () ())
  7013. (4472 segments #f () ())
  7014. (4473 code-vector-set2! 4472 () ())
  7015. (4474 segments #f () ())
  7016. (4475 insert-label! 4474 () ())
  7017. (4476 segments #f () ())
  7018. (4477 insert-backward-label! 4476 () ())
  7019. (4478 segments #f () ())
  7020. (4479 label-reference 4478 () ())
  7021. (4480 #f 4479 () ())
  7022. (4481 segments #f () ())
  7023. (4482 optional-label-reference 4481 () ())
  7024. (4483 segments #f () ())
  7025. (4484 cwv-continuation-protocol 4483 () ())
  7026. (4485 segments #f () ())
  7027. (4486 make-label 4485 () ())
  7028. (4487 segments #f () ())
  7029. (4488 jump-instruction 4487 () ())
  7030. (4489 #f 4488 () ())
  7031. (4490 segments #f () ())
  7032. (4491 bytes->segment 4490 () ())
  7033. (4492 #f 4491 () ())
  7034. (4493 #f 4492 () ())
  7035. (4494 segments #f () ())
  7036. (4495 instruction-using-label 4494 () ())
  7037. (4496 segments #f () ())
  7038. (4497 using-optional-label 4496 () ())
  7039. (4498 segments #f () ())
  7040. (4499 computed-goto-instruction 4498 () ())
  7041. (4500 #f 4499 () ())
  7042. (4501 loop##651 4500 () ())
  7043. (4502 segments #f () ())
  7044. (4503 attach-label 4502 () ())
  7045. (4504 #f 4503 () ())
  7046. (4505 #f 4504 () ())
  7047. (4506 segments #f () ())
  7048. (4507 note-source-code 4506 () ())
  7049. (4508 #f 4507 () ())
  7050. (4509 segments #f () ())
  7051. (4510 note-environment 4509 () ())
  7052. (4511 #f 4510 () ())
  7053. (4512 segments #f () ())
  7054. (4513 optimizer #f () ())
  7055. (4514 apply-optimizers 4513 () ())
  7056. (4515 #f 4514 () ())
  7057. (4516 optimizer #f () ())
  7058. (4517 get-optimizer 4516 () ())
  7059. (4518 #f 4517 () ())
  7060. (4519 #f 4518 () ())
  7061. (4520 #f 4519 () ())
  7062. (4521 optimizer #f () ())
  7063. (4522 set-optimizer! 4521 () ())
  7064. (4523 optimizer #f () ())
  7065. (4524 flat-environments #f () ())
  7066. (4525 clear-var-set! 4524 () ())
  7067. (4526 flat-environments #f () ())
  7068. (4527 clean-var-list 4526 () ())
  7069. (4528 flat-environments #f () ())
  7070. (4529 set-difference! 4528 () ())
  7071. (4530 flat-environments #f () ())
  7072. (4531 set-union! 4530 () ())
  7073. (4532 #f 4531 () ())
  7074. (4533 flat-environments #f () ())
  7075. (4534 set-add-element! 4533 () ())
  7076. (4535 flat-environments #f () ())
  7077. (4536 flat-environments #f () ())
  7078. (4537 install-set! 4536 () ())
  7079. (4538 #f 4537 () ())
  7080. (4539 flat-environments #f () ())
  7081. (4540 install-new-set! 4539 () ())
  7082. (4541 flat-environments #f () ())
  7083. (4542 unassigned-check-primop 4541 () ())
  7084. (4543 flat-environments #f () ())
  7085. (4544 flat-environments #f () ())
  7086. (4545 cell-set!-primop 4544 () ())
  7087. (4546 flat-environments #f () ())
  7088. (4547 flat-environments #f () ())
  7089. (4548 cell-ref-primop 4547 () ())
  7090. (4549 flat-environments #f () ())
  7091. (4550 flat-environments #f () ())
  7092. (4551 make-cell-primop 4550 () ())
  7093. (4552 flat-environments #f () ())
  7094. (4553 flat-environments #f () ())
  7095. (4554 make-primop-call 4553 () ())
  7096. (4555 flat-environments #f () ())
  7097. (4556 make-cell-set! 4555 () ())
  7098. (4557 flat-environments #f () ())
  7099. (4558 really-make-cell-ref 4557 () ())
  7100. (4559 flat-environments #f () ())
  7101. (4560 make-cell-ref 4559 () ())
  7102. (4561 flat-environments #f () ())
  7103. (4562 make-unassigned-cell 4561 () ())
  7104. (4563 flat-environments #f () ())
  7105. (4564 make-make-cell 4563 () ())
  7106. (4565 flat-environments #f () ())
  7107. (4566 mark-letrec-sets 4565 () ())
  7108. (4567 #f 4566 () ())
  7109. (4568 flat-environments #f () ())
  7110. (4569 #f 4568 () ())
  7111. (4570 flat-environments #f () ())
  7112. (4571 #f 4570 () ())
  7113. (4572 flat-environments #f () ())
  7114. (4573 #f 4572 () ())
  7115. (4574 flat-environments #f () ())
  7116. (4575 #f 4574 () ())
  7117. (4576 flat-environments #f () ())
  7118. (4577 #f 4576 () ())
  7119. (4578 flat-environments #f () ())
  7120. (4579 #f 4578 () ())
  7121. (4580 flat-environments #f () ())
  7122. (4581 #f 4580 () ())
  7123. (4582 flat-environments #f () ())
  7124. (4583 flat-environments #f () ())
  7125. (4584 flat-environments #f () ())
  7126. (4585 flat-environments #f () ())
  7127. (4586 flat-environments #f () ())
  7128. (4587 flat-environments #f () ())
  7129. (4588 no-sets 4587 () ())
  7130. (4589 flat-environments #f () ())
  7131. (4590 define-set-marker 4589 () ())
  7132. (4591 flat-environments #f () ())
  7133. (4592 #f 4591 () ())
  7134. (4593 flat-environments #f () ())
  7135. (4594 mark-set-variables! 4593 () ())
  7136. (4595 flat-environments #f () ())
  7137. (4596 assigned? 4595 () ())
  7138. (4597 flat-environments #f () ())
  7139. (4598 #f 4597 () ())
  7140. (4599 #f 4598 () ())
  7141. (4600 flat-environments #f () ())
  7142. (4601 flatten-impure-letrec 4600 () ())
  7143. (4602 #f 4601 () ())
  7144. (4603 #f 4601 () ())
  7145. (4604 #f 4601 () ())
  7146. (4605 flat-environments #f () ())
  7147. (4606 flatten-pure-letrec 4605 () ())
  7148. (4607 flat-environments #f () ())
  7149. (4608 flatten-letrec 4607 () ())
  7150. (4609 #f 4608 () ())
  7151. (4610 flat-environments #f () ())
  7152. (4611 #f 4610 () ())
  7153. (4612 flat-environments #f () ())
  7154. (4613 #f 4612 () ())
  7155. (4614 flat-environments #f () ())
  7156. (4615 #f 4614 () ())
  7157. (4616 flat-environments #f () ())
  7158. (4617 #f 4616 () ())
  7159. (4618 flat-environments #f () ())
  7160. (4619 #f 4618 () ())
  7161. (4620 flat-environments #f () ())
  7162. (4621 #f 4620 () ())
  7163. (4622 flat-environments #f () ())
  7164. (4623 add-cells 4622 () ())
  7165. (4624 loop##659 4623 () ())
  7166. (4625 flat-environments #f () ())
  7167. (4626 convert-lambda-body 4625 () ())
  7168. (4627 flat-environments #f () ())
  7169. (4628 flatten-lambda 4627 () ())
  7170. (4629 flat-environments #f () ())
  7171. (4630 #f 4629 () ())
  7172. (4631 flat-environments #f () ())
  7173. (4632 #f 4631 () ())
  7174. (4633 flat-environments #f () ())
  7175. (4634 flat-environments #f () ())
  7176. (4635 flat-environments #f () ())
  7177. (4636 flat-environments #f () ())
  7178. (4637 no-free-vars 4636 () ())
  7179. (4638 flat-environments #f () ())
  7180. (4639 flatten-list 4638 () ())
  7181. (4640 #f 4639 () ())
  7182. (4641 flat-environments #f () ())
  7183. (4642 define-flattener 4641 () ())
  7184. (4643 flat-environments #f () ())
  7185. (4644 #f 4643 () ())
  7186. (4645 flat-environments #f () ())
  7187. (4646 flatten-node 4645 () ())
  7188. (4647 flat-environments #f () ())
  7189. (4648 flatten-form 4647 () ())
  7190. (4649 flat-environments #f () ())
  7191. (4650 #f 4649 () ())
  7192. (4651 #f 4650 () ())
  7193. (4652 reconstruction #f () ())
  7194. (4653 constant-type 4652 () ())
  7195. (4654 reconstruction #f () ())
  7196. (4655 reconstruction #f () ())
  7197. (4656 reconstruction #f () ())
  7198. (4657 reconstruct-apply 4656 () ())
  7199. (4658 #f 4657 () ())
  7200. (4659 reconstruction #f () ())
  7201. (4660 #f 4659 () ())
  7202. (4661 reconstruction #f () ())
  7203. (4662 #f 4661 () ())
  7204. (4663 #f 4662 () ())
  7205. (4664 reconstruction #f () ())
  7206. (4665 #f 4664 () ())
  7207. (4666 reconstruction #f () ())
  7208. (4667 define-primop-reconstructor 4666 () ())
  7209. (4668 reconstruction #f () ())
  7210. (4669 reconstruction #f () ())
  7211. (4670 #f 4669 () ())
  7212. (4671 reconstruction #f () ())
  7213. (4672 #f 4671 () ())
  7214. (4673 reconstruction #f () ())
  7215. (4674 node->type 4673 () ())
  7216. (4675 reconstruction #f () ())
  7217. (4676 #f 4675 () ())
  7218. (4677 reconstruction #f () ())
  7219. (4678 reconstruct-letrec 4677 () ())
  7220. (4679 #f 4678 () ())
  7221. (4680 reconstruction #f () ())
  7222. (4681 #f 4680 () ())
  7223. (4682 reconstruction #f () ())
  7224. (4683 #f 4682 () ())
  7225. (4684 reconstruction #f () ())
  7226. (4685 #f 4684 () ())
  7227. (4686 reconstruction #f () ())
  7228. (4687 #f 4686 () ())
  7229. (4688 loop##660 4687 () ())
  7230. (4689 reconstruction #f () ())
  7231. (4690 reconstruction #f () ())
  7232. (4691 fork-constraints 4690 () ())
  7233. (4692 #f 4691 () ())
  7234. (4693 reconstruction #f () ())
  7235. (4694 #f 4693 () ())
  7236. (4695 #f 4694 () ())
  7237. (4696 reconstruction #f () ())
  7238. (4697 #f 4696 () ())
  7239. (4698 reconstruction #f () ())
  7240. (4699 #f 4698 () ())
  7241. (4700 reconstruction #f () ())
  7242. (4701 #f 4700 () ())
  7243. (4702 reconstruction #f () ())
  7244. (4703 #f 4702 () ())
  7245. (4704 reconstruction #f () ())
  7246. (4705 reconstruct-call 4704 () ())
  7247. (4706 lose 4705 () ())
  7248. (4707 #f 4706 () ())
  7249. (4708 loop 4705 () ())
  7250. (4709 reconstruction #f () ())
  7251. (4710 proc->reconstructor 4709 () ())
  7252. (4711 reconstruction #f () ())
  7253. (4712 #f 4711 () ())
  7254. (4713 reconstruction #f () ())
  7255. (4714 reconstruct-name 4713 () ())
  7256. (4715 reconstruction #f () ())
  7257. (4716 #f 4715 () ())
  7258. (4717 reconstruction #f () ())
  7259. (4718 careful-codomain 4717 () ())
  7260. (4719 reconstruction #f () ())
  7261. (4720 reconstruct-lambda 4719 () ())
  7262. (4721 #f 4720 () ())
  7263. (4722 reconstruction #f () ())
  7264. (4723 #f 4722 () ())
  7265. (4724 reconstruction #f () ())
  7266. (4725 #f 4724 () ())
  7267. (4726 reconstruction #f () ())
  7268. (4727 define-reconstructor 4726 () ())
  7269. (4728 reconstruction #f () ())
  7270. (4729 #f 4728 () ())
  7271. (4730 reconstruction #f () ())
  7272. (4731 examine 4730 () ())
  7273. (4732 reconstruction #f () ())
  7274. (4733 reconstruct 4732 () ())
  7275. (4734 reconstruction #f () ())
  7276. (4735 reconstruct-type 4734 () ())
  7277. (4736 reconstruction #f () ())
  7278. (4737 node-type 4736 () ())
  7279. (4738 compiler #f () ())
  7280. (4739 compiler #f () ())
  7281. (4740 loop 4739 () ())
  7282. (4741 compiler #f () ())
  7283. (4742 define-encode/decode 4741 () ())
  7284. (4743 #f 4742 () ())
  7285. (4744 compiler #f () ())
  7286. (4745 define-one-or-two 4744 () ())
  7287. (4746 #f 4745 () ())
  7288. (4747 #f 4745 () ())
  7289. (4748 compiler #f () ())
  7290. (4749 #f 4748 () ())
  7291. (4750 #f 4748 () ())
  7292. (4751 compiler #f () ())
  7293. (4752 define-one-or-two 4751 () ())
  7294. (4753 #f 4752 () ())
  7295. (4754 #f 4752 () ())
  7296. (4755 compiler #f () ())
  7297. (4756 compiler #f () ())
  7298. (4757 compiler #f () ())
  7299. (4758 define=< 4757 () ())
  7300. (4759 #f 4758 () ())
  7301. (4760 #f 4758 () ())
  7302. (4761 compiler #f () ())
  7303. (4762 define+* 4761 () ())
  7304. (4763 #f 4762 () ())
  7305. (4764 #f 4762 () ())
  7306. (4765 compiler #f () ())
  7307. (4766 define-byte/char-io 4765 () ())
  7308. (4767 #f 4766 () ())
  7309. (4768 #f 4766 () ())
  7310. (4769 compiler #f () ())
  7311. (4770 define-byte/char-io 4769 () ())
  7312. (4771 #f 4770 () ())
  7313. (4772 #f 4770 () ())
  7314. (4773 compiler #f () ())
  7315. (4774 n-ary-constructor 4773 () ())
  7316. (4775 #f 4774 () ())
  7317. (4776 #f 4774 () ())
  7318. (4777 compiler #f () ())
  7319. (4778 #f 4777 () ())
  7320. (4779 compiler #f () ())
  7321. (4780 #f 4779 () ())
  7322. (4781 #f 4779 () ())
  7323. (4782 compiler #f () ())
  7324. (4783 #f 4782 () ())
  7325. (4784 #f 4783 () ())
  7326. (4785 #f 4783 () ())
  7327. (4786 #f 4782 () ())
  7328. (4787 compiler #f () ())
  7329. (4788 #f 4787 () ())
  7330. (4789 #f 4788 () ())
  7331. (4790 #f 4789 () ())
  7332. (4791 #f 4789 () ())
  7333. (4792 #f 4788 () ())
  7334. (4793 #f 4787 () ())
  7335. (4794 #f 4793 () ())
  7336. (4795 #f 4793 () ())
  7337. (4796 compiler #f () ())
  7338. (4797 #f 4796 () ())
  7339. (4798 #f 4797 () ())
  7340. (4799 #f 4797 () ())
  7341. (4800 #f 4796 () ())
  7342. (4801 compiler #f () ())
  7343. (4802 compiler #f () ())
  7344. (4803 compiler #f () ())
  7345. (4804 compiler #f () ())
  7346. (4805 compiler #f () ())
  7347. (4806 compiler #f () ())
  7348. (4807 compiler #f () ())
  7349. (4808 compiler #f () ())
  7350. (4809 #f 4808 () ())
  7351. (4810 compiler #f () ())
  7352. (4811 #f 4810 () ())
  7353. (4812 compiler #f () ())
  7354. (4813 #f 4812 () ())
  7355. (4814 compiler #f () ())
  7356. (4815 #f 4814 () ())
  7357. (4816 #f 4814 () ())
  7358. (4817 compiler #f () ())
  7359. (4818 compiler #f () ())
  7360. (4819 compiler #f () ())
  7361. (4820 compiler #f () ())
  7362. (4821 loop##664 4820 () ())
  7363. (4822 compiler #f () ())
  7364. (4823 compiler #f () ())
  7365. (4824 #f 4823 () ())
  7366. (4825 compiler #f () ())
  7367. (4826 #f 4825 () ())
  7368. (4827 compiler #f () ())
  7369. (4828 #f 4827 () ())
  7370. (4829 compiler #f () ())
  7371. (4830 #f 4829 () ())
  7372. (4831 compiler #f () ())
  7373. (4832 compiler #f () ())
  7374. (4833 compiler #f () ())
  7375. (4834 compiler #f () ())
  7376. (4835 compiler #f () ())
  7377. (4836 #f 4835 () ())
  7378. (4837 #f 4836 () ())
  7379. (4838 #f 4837 () ())
  7380. (4839 #f 4836 () ())
  7381. (4840 compiler #f () ())
  7382. (4841 compiler #f () ())
  7383. (4842 #f 4841 () ())
  7384. (4843 loop 4842 () ())
  7385. (4844 compiler #f () ())
  7386. (4845 #f 4844 () ())
  7387. (4846 compiler #f () ())
  7388. (4847 #f 4846 () ())
  7389. (4848 compiler #f () ())
  7390. (4849 #f 4848 () ())
  7391. (4850 compiler #f () ())
  7392. (4851 #f 4850 () ())
  7393. (4852 compiler #f () ())
  7394. (4853 #f 4852 () ())
  7395. (4854 compiler #f () ())
  7396. (4855 #f 4854 () ())
  7397. (4856 compiler #f () ())
  7398. (4857 #f 4856 () ())
  7399. (4858 compiler #f () ())
  7400. (4859 #f 4858 () ())
  7401. (4860 compiler #f () ())
  7402. (4861 diagnose-call-error 4860 () ())
  7403. (4862 #f 4861 () ())
  7404. (4863 compiler #f () ())
  7405. (4864 type-check 4863 () ())
  7406. (4865 #f 4864 () ())
  7407. (4866 compiler #f () ())
  7408. (4867 compile 4866 () ())
  7409. (4868 compiler #f () ())
  7410. (4869 compile-expression 4868 () ())
  7411. (4870 compiler #f () ())
  7412. (4871 define-compilator 4870 () ())
  7413. (4872 compiler #f () ())
  7414. (4873 return-cont? 4872 () ())
  7415. (4874 compiler #f () ())
  7416. (4875 deliver-value 4874 () ())
  7417. (4876 compiler #f () ())
  7418. (4877 ignore-values-cont? 4876 () ())
  7419. (4878 compiler #f () ())
  7420. (4879 deliver-constant-value 4878 () ())
  7421. (4880 compiler #f () ())
  7422. (4881 small-integer? 4880 () ())
  7423. (4882 compiler #f () ())
  7424. (4883 integer-literal-instruction 4882 () ())
  7425. (4884 compiler #f () ())
  7426. (4885 stack-indirect-instruction 4884 () ())
  7427. (4886 compiler #f () ())
  7428. (4887 compile-constant 4886 () ())
  7429. (4888 compiler #f () ())
  7430. (4889 stack-ref-instruction 4888 () ())
  7431. (4890 compiler #f () ())
  7432. (4891 compile-local-name 4890 () ())
  7433. (4892 compiler #f () ())
  7434. (4893 push+stack-indirect-instruction 4892 () ())
  7435. (4894 compiler #f () ())
  7436. (4895 constant-with-push 4894 () ())
  7437. (4896 compiler #f () ())
  7438. (4897 push+stack-ref-instruction 4896 () ())
  7439. (4898 compiler #f () ())
  7440. (4899 lexical-ref-with-push 4898 () ())
  7441. (4900 compiler #f () ())
  7442. (4901 name-node-binding 4900 () ())
  7443. (4902 compiler #f () ())
  7444. (4903 maybe-compile-with-push 4902 () ())
  7445. (4904 compiler #f () ())
  7446. (4905 fixup-source 4904 () ())
  7447. (4906 compiler #f () ())
  7448. (4907 really-push-continuation 4906 () ())
  7449. (4908 compiler #f () ())
  7450. (4909 push-continuation 4908 () ())
  7451. (4910 compiler #f () ())
  7452. (4911 maybe-push-continuation 4910 () ())
  7453. (4912 compiler #f () ())
  7454. (4913 pre-push 4912 () ())
  7455. (4914 compiler #f () ())
  7456. (4915 make-cont 4914 () ())
  7457. (4916 compiler #f () ())
  7458. (4917 named-cont 4916 () ())
  7459. (4918 compiler #f () ())
  7460. (4919 fall-through-cont 4918 () ())
  7461. (4920 compiler #f () ())
  7462. (4921 compile-argument 4920 () ())
  7463. (4922 compiler #f () ())
  7464. (4923 really-push-arguments 4922 () ())
  7465. (4924 recur 4923 () ())
  7466. (4925 #f 4924 () ())
  7467. (4926 #f 4924 () ())
  7468. (4927 compiler #f () ())
  7469. (4928 push-arguments 4927 () ())
  7470. (4929 compiler #f () ())
  7471. (4930 call-instruction 4929 () ())
  7472. (4931 compiler #f () ())
  7473. (4932 compile-unknown-call 4931 () ())
  7474. (4933 #f 4932 () ())
  7475. (4934 #f 4932 () ())
  7476. (4935 compiler #f () ())
  7477. (4936 compile-name-call 4935 () ())
  7478. (4937 compiler #f () ())
  7479. (4938 generate-trap 4937 () ())
  7480. (4939 compiler #f () ())
  7481. (4940 set-frame-locations! 4939 () ())
  7482. (4941 loop 4940 () ())
  7483. (4942 compiler #f () ())
  7484. (4943 push-all-with-names 4942 () ())
  7485. (4944 compiler #f () ())
  7486. (4945 compile-inline-body 4944 () ())
  7487. (4946 compiler #f () ())
  7488. (4947 name-node->symbol 4946 () ())
  7489. (4948 compiler #f () ())
  7490. (4949 compile-redex 4948 () ())
  7491. (4950 compiler #f () ())
  7492. (4951 compile-call 4950 () ())
  7493. (4952 compiler #f () ())
  7494. (4953 set-lexical-offsets! 4952 () ())
  7495. (4954 loop 4953 () ())
  7496. (4955 compiler #f () ())
  7497. (4956 return-cont 4955 () ())
  7498. (4957 compiler #f () ())
  7499. (4958 compile-lambda-code 4957 () ())
  7500. (4959 compiler #f () ())
  7501. (4960 compile-lambda 4959 () ())
  7502. (4961 compiler #f () ())
  7503. (4962 unflatten-form 4961 () ())
  7504. (4963 compiler #f () ())
  7505. (4964 letrec-template-maker 4963 () ())
  7506. (4965 #f 4964 () ())
  7507. (4966 #f 4965 () ())
  7508. (4967 #f 4966 () ())
  7509. (4968 #f 4966 () ())
  7510. (4969 compiler #f () ())
  7511. (4970 push-continuation-no-protocol 4969 () ())
  7512. (4971 compiler #f () ())
  7513. (4972 push-all-but-last 4971 () ())
  7514. (4973 compiler #f () ())
  7515. (4974 push-argument 4973 () ())
  7516. (4975 #f 4974 () ())
  7517. (4976 #f 4974 () ())
  7518. (4977 compiler #f () ())
  7519. (4978 stack-set!-instruction 4977 () ())
  7520. (4979 compiler #f () ())
  7521. (4980 plain-fall-through-cont 4979 () ())
  7522. (4981 compiler #f () ())
  7523. (4982 fall-through-cont? 4981 () ())
  7524. (4983 compiler #f () ())
  7525. (4984 ignore-values-cont 4983 () ())
  7526. (4985 compiler #f () ())
  7527. (4986 accept-values-cont 4985 () ())
  7528. (4987 compiler #f () ())
  7529. (4988 accept-values-cont? 4987 () ())
  7530. (4989 compiler #f () ())
  7531. (4990 cont-name 4989 () ())
  7532. (4991 compiler #f () ())
  7533. (4992 set-type-check?! 4991 () ())
  7534. (4993 compiler #f () ())
  7535. (4994 add-variable 4993 () ())
  7536. (4995 compiler #f () ())
  7537. (4996 get-variables-locations 4995 () ())
  7538. (4997 loop 4996 () ())
  7539. (4998 compiler #f () ())
  7540. (4999 figure-env-data 4998 () ())
  7541. (5000 loop 4999 () ())
  7542. (5001 compiler #f () ())
  7543. (5002 flat-environment-code 5001 () ())
  7544. (5003 #f 5002 () ())
  7545. (5004 #f 5003 () ())
  7546. (5005 #f 5002 () ())
  7547. (5006 compiler #f () ())
  7548. (5007 one-byte->two-byte 5006 () ())
  7549. (5008 loop 5007 () ())
  7550. (5009 compiler #f () ())
  7551. (5010 finish-flat-env 5009 () ())
  7552. (5011 #f 5010 () ())
  7553. (5012 compiler #f () ())
  7554. (5013 compile-recursive-environment 5012 () ())
  7555. (5014 #f 5013 () ())
  7556. (5015 #f 5013 () ())
  7557. (5016 compiler #f () ())
  7558. (5017 compile-environment 5016 () ())
  7559. (5018 #f 5017 () ())
  7560. (5019 compiler #f () ())
  7561. (5020 really-compile-flat-lambda 5019 () ())
  7562. (5021 #f 5020 () ())
  7563. (5022 #f 5021 () ())
  7564. (5023 #f 5020 () ())
  7565. (5024 compiler #f () ())
  7566. (5025 compile-flat-lambda 5024 () ())
  7567. (5026 #f 5025 () ())
  7568. (5027 #f 5025 () ())
  7569. (5028 compiler #f () ())
  7570. (5029 primop-closed-template 5028 () ())
  7571. (5030 #f 5029 () ())
  7572. (5031 #f 5029 () ())
  7573. (5032 compiler #f () ())
  7574. (5033 direct-compilator 5032 () ())
  7575. (5034 #f 5033 () ())
  7576. (5035 compiler #f () ())
  7577. (5036 direct-closed-compilator 5035 () ())
  7578. (5037 #f 5036 () ())
  7579. (5038 compiler #f () ())
  7580. (5039 nargs->domain 5038 () ())
  7581. (5040 loop##673 5039 () ())
  7582. (5041 compiler #f () ())
  7583. (5042 get-primop-type 5041 () ())
  7584. (5043 #f 5042 () ())
  7585. (5044 compiler #f () ())
  7586. (5045 simple-compilator 5044 () ())
  7587. (5046 #f 5045 () ())
  7588. (5047 compiler #f () ())
  7589. (5048 simple-closed-compilator 5047 () ())
  7590. (5049 #f 5048 () ())
  7591. (5050 compiler #f () ())
  7592. (5051 define-simple-primitive 5050 () ())
  7593. (5052 compiler #f () ())
  7594. (5053 define-stob-predicate 5052 () ())
  7595. (5054 compiler #f () ())
  7596. (5055 define-data-struct-primitives 5054 () ())
  7597. (5056 def-prim 5055 () ())
  7598. (5057 loop##675 5055 () ())
  7599. (5058 compiler #f () ())
  7600. (5059 define-vector-primitives 5058 () ())
  7601. (5060 def-prim 5059 () ())
  7602. (5061 compiler #f () ())
  7603. (5062 thunk-node? 5061 () ())
  7604. (5063 compiler #f () ())
  7605. (5064 thunk-body 5063 () ())
  7606. (5065 compiler #f () ())
  7607. (5066 n-ary-primitive-compilator 5065 () ())
  7608. (5067 #f 5066 () ())
  7609. (5068 compiler #f () ())
  7610. (5069 define-n-ary-compiler-primitive 5068 () ())
  7611. (5070 compiler #f () ())
  7612. (5071 evaluate-arguments-for-effect 5070 () ())
  7613. (5072 loop##678 5071 () ())
  7614. (5073 compiler #f () ())
  7615. (5074 call-on-arg-and-id 5073 () ())
  7616. (5075 compiler #f () ())
  7617. (5076 push-and-compile 5075 () ())
  7618. (5077 compiler #f () ())
  7619. (5078 call-on-args 5077 () ())
  7620. (5079 loop 5078 () ())
  7621. (5080 compiler #f () ())
  7622. (5081 compile-definition 5080 () ())
  7623. (5082 compiler #f () ())
  7624. (5083 call-template-inst 5082 () ())
  7625. (5084 compiler #f () ())
  7626. (5085 compile-form 5084 () ())
  7627. (5086 compiler #f () ())
  7628. (5087 compile-forms-loop 5086 () ())
  7629. (5088 compiler #f () ())
  7630. (5089 compile-forms 5088 () ())
  7631. (5090 #f 5089 () ())
  7632. (5091 compiler #f () ())
  7633. (5092 template-call 5091 () ())
  7634. (5093 #f 5092 () ())
  7635. (5094 #f 5092 () ())
  7636. (5095 compiler #f () ())
  7637. (5096 append-templates 5095 () ())
  7638. (5097 #f 5096 () ())
  7639. (5098 compiler #f () ())
  7640. (5099 make-startup-procedure 5098 () ())
  7641. (5100 compiler #f () ())
  7642. (5101 evaluation #f () ())
  7643. (5102 compile-and-run 5101 () ())
  7644. (5103 #f 5102 () ())
  7645. (5104 #f 5103 () ())
  7646. (5105 evaluation #f () ())
  7647. (5106 really-load-into 5105 () ())
  7648. (5107 evaluation #f () ())
  7649. (5108 load 5107 () ())
  7650. (5109 evaluation #f () ())
  7651. (5110 eval-from-file 5109 () ())
  7652. (5111 evaluation #f () ())
  7653. (5112 load-script-into 5111 () ())
  7654. (5113 evaluation #f () ())
  7655. (5114 load-into 5113 () ())
  7656. (5115 evaluation #f () ())
  7657. (5116 eval 5115 () ())
  7658. (5117 scheme #f () ())
  7659. (5118 mini-command #f () ())
  7660. (5119 limited-write 5118 () ())
  7661. (5120 recur 5119 () ())
  7662. (5121 #f 5120 () ())
  7663. (5122 #f 5121 () ())
  7664. (5123 mini-command #f () ())
  7665. (5124 &disclose-condition 5123 () ())
  7666. (5125 mini-command #f () ())
  7667. (5126 mini-command #f () ())
  7668. (5127 mini-command #f () ())
  7669. (5128 set-condition-display-length! 5127 () ())
  7670. (5129 mini-command #f () ())
  7671. (5130 condition-display-length 5129 () ())
  7672. (5131 mini-command #f () ())
  7673. (5132 mini-command #f () ())
  7674. (5133 set-condition-display-depth! 5132 () ())
  7675. (5134 mini-command #f () ())
  7676. (5135 condition-display-depth 5134 () ())
  7677. (5136 mini-command #f () ())
  7678. (5137 mini-command #f () ())
  7679. (5138 really-display-condition 5137 () ())
  7680. (5139 #f 5138 () ())
  7681. (5140 mini-command #f () ())
  7682. (5141 display-condition 5140 () ())
  7683. (5142 #f 5141 () ())
  7684. (5143 mini-command #f () ())
  7685. (5144 byte-vector->string 5143 () ())
  7686. (5145 loop##686 5144 () ())
  7687. (5146 mini-command #f () ())
  7688. (5147 read-string 5146 () ())
  7689. (5148 loop 5147 () ())
  7690. (5149 mini-command #f () ())
  7691. (5150 mini-load 5149 () ())
  7692. (5151 mini-command #f () ())
  7693. (5152 command-processor 5151 () ())
  7694. (5153 loop 5152 () ())
  7695. (5154 #f 5153 () ())
  7696. (5155 #f 5154 () ())
  7697. (5156 #f 5155 () ())
  7698. (5157 #f 5154 () ())
  7699. (5158 #f 5157 () ())
  7700. (5159 #f 5157 () ())
  7701. (5160 #f 5157 () ())
  7702. (5161 #f 5160 () ())
  7703. (5162 #f 5157 () ())
  7704. (5163 scheduler #f () ())
  7705. (5164 decrement-counter! 5163 () ())
  7706. (5165 scheduler #f () ())
  7707. (5166 increment-counter! 5165 () ())
  7708. (5167 scheduler #f () ())
  7709. (5168 scheduler #f () ())
  7710. (5169 make-counter 5168 () ())
  7711. (5170 scheduler #f () ())
  7712. (5171 round-robin-event-handler 5170 () ())
  7713. (5172 thread-event-handler 5171 () ())
  7714. (5173 #f 5172 () ())
  7715. (5174 #f 5172 () ())
  7716. (5175 asynchronous-event-handler 5171 () ())
  7717. (5176 next-thread 5171 () ())
  7718. (5177 #f 5176 () ())
  7719. (5178 scheduler #f () ())
  7720. (5179 run-threads-with-housekeeper 5178 () ())
  7721. (5180 #f 5179 () ())
  7722. (5181 loop 5180 () ())
  7723. (5182 #f 5181 () ())
  7724. (5183 #f 5182 () ())
  7725. (5184 #f 5182 () ())
  7726. (5185 #f 5181 () ())
  7727. (5186 #f 5179 () ())
  7728. (5187 scheduler #f () ())
  7729. (5188 run-threads 5187 () ())
  7730. (5189 #f 5188 () ())
  7731. (5190 loop 5189 () ())
  7732. (5191 #f 5190 () ())
  7733. (5192 #f 5191 () ())
  7734. (5193 #f 5191 () ())
  7735. (5194 #f 5190 () ())
  7736. (5195 #f 5188 () ())
  7737. (5196 root-scheduler #f () ())
  7738. (5197 spawn-output-forcers 5196 () ())
  7739. (5198 root-scheduler #f () ())
  7740. (5199 call-when-deadlocked! 5198 () ())
  7741. (5200 root-scheduler #f () ())
  7742. (5201 root-scheduler #f () ())
  7743. (5202 root-scheduler #f () ())
  7744. (5203 root-scheduler #f () ())
  7745. (5204 root-scheduler #f () ())
  7746. (5205 do-some-waiting 5204 () ())
  7747. (5206 #f 5205 () ())
  7748. (5207 root-scheduler #f () ())
  7749. (5208 root-wait 5207 () ())
  7750. (5209 #f 5208 () ())
  7751. (5210 root-scheduler #f () ())
  7752. (5211 scheme-exit-now 5210 () ())
  7753. (5212 root-scheduler #f () ())
  7754. (5213 root-scheduler #f () ())
  7755. (5214 cheap-display-condition 5213 () ())
  7756. (5215 #f 5214 () ())
  7757. (5216 #f 5215 () ())
  7758. (5217 #f 5214 () ())
  7759. (5218 root-scheduler #f () ())
  7760. (5219 root-handler 5218 () ())
  7761. (5220 root-scheduler #f () ())
  7762. (5221 make-root-event-handler 5220 () ())
  7763. (5222 #f 5221 () ())
  7764. (5223 #f 5221 () ())
  7765. (5224 root-scheduler #f () ())
  7766. (5225 root-scheduler 5224 () ())
  7767. (5226 #f 5225 () ())
  7768. (5227 #f 5226 () ())
  7769. (5228 #f 5226 () ())
  7770. (5229 usual-resumer #f () ())
  7771. (5230 usual-resumer #f () ())
  7772. (5231 run-initialization-thunks 5230 () ())
  7773. (5232 #f 5231 () ())
  7774. (5233 usual-resumer #f () ())
  7775. (5234 add-initialization-thunk! 5233 () ())
  7776. (5235 usual-resumer #f () ())
  7777. (5236 usual-resumer #f () ())
  7778. (5237 set-encoding! 5236 () ())
  7779. (5238 usual-resumer #f () ())
  7780. (5239 initialize-rts 5238 () ())
  7781. (5240 #f 5239 () ())
  7782. (5241 #f 5240 () ())
  7783. (5242 #f 5241 () ())
  7784. (5243 #f 5242 () ())
  7785. (5244 usual-resumer #f () ())
  7786. (5245 warn-about-undefined-imported-bindings 5244 () ())
  7787. (5246 loop##698 5245 () ())
  7788. (5247 usual-resumer #f () ())
  7789. (5248 usual-resumer 5247 () ())
  7790. (5249 usual-resumer #f () ())
  7791. (5250 make-usual-resumer 5249 () ())
  7792. (5251 #f 5250 () ())
  7793. (5252 #f 5251 () ())
  7794. (5253 initial-system #f () ())
  7795. (5254 make-tower 5253 () ())
  7796. (5255 initial-system #f () ())
  7797. (5256 make-initial-package 5255 () ())
  7798. (5257 #f 5256 () ())
  7799. (5258 initial-system #f () ())
  7800. (5259 initialize-interaction-environment! 5258 () ())
  7801. (5260 initial-system #f () ())
  7802. (5261 make-built-in-structures 5260 () ())
  7803. (5262 #f 5261 () ())
  7804. (5263 #f 5261 () ())
  7805. (5264 initial-system #f () ())
  7806. (5265 start 5264 () ())
  7807. (5266 #f 5265 () ())
  7808. (5267 #f 5266 () ())
  7809. (5268 #f 5267 () ())
  7810. (5269 usual-macros #f () ())
  7811. (5270 find-free-names-in-syntax-rules 5269 () ())
  7812. (5271 meta-variables 5270 () ())
  7813. (5272 free-names 5270 () ())
  7814. (5273 loop##702 5270 () ())
  7815. (5274 usual-macros #f () ())
  7816. (5275 usual-macros #f () ())
  7817. (5276 segment-tail 5275 () ())
  7818. (5277 loop 5276 () ())
  7819. (5278 usual-macros #f () ())
  7820. (5279 segment-depth 5278 () ())
  7821. (5280 usual-macros #f () ())
  7822. (5281 segment-template? 5280 () ())
  7823. (5282 usual-macros #f () ())
  7824. (5283 segment-pattern? 5282 () ())
  7825. (5284 usual-macros #f () ())
  7826. (5285 process-rules 5284 () ())
  7827. (5286 #f 5285 () ())
  7828. (5287 #f 5285 () ())
  7829. (5288 #f 5287 () ())
  7830. (5289 #f 5285 () ())
  7831. (5290 #f 5285 () ())
  7832. (5291 #f 5285 () ())
  7833. (5292 #f 5291 () ())
  7834. (5293 #f 5285 () ())
  7835. (5294 loop##706 5293 () ())
  7836. (5295 #f 5285 () ())
  7837. (5296 #f 5285 () ())
  7838. (5297 usual-macros #f () ())
  7839. (5298 #f 5297 () ())
  7840. (5299 usual-macros #f () ())
  7841. (5300 #f 5299 () ())
  7842. (5301 #f 5300 () ())
  7843. (5302 #f 5300 () ())
  7844. (5303 #f 5300 () ())
  7845. (5304 #f 5300 () ())
  7846. (5305 #f 5304 () ())
  7847. (5306 #f 5305 () ())
  7848. (5307 #f 5300 () ())
  7849. (5308 #f 5307 () ())
  7850. (5309 #f 5300 () ())
  7851. (5310 usual-macros #f () ())
  7852. (5311 case-clause? 5310 () ())
  7853. (5312 usual-macros #f () ())
  7854. (5313 #f 5312 () ())
  7855. (5314 #f 5313 () ())
  7856. (5315 #f 5313 () ())
  7857. (5316 usual-macros #f () ())
  7858. (5317 #f 5316 () ())
  7859. (5318 usual-macros #f () ())
  7860. (5319 specs? 5318 () ())
  7861. (5320 usual-macros #f () ())
  7862. (5321 #f 5320 () ())
  7863. (5322 usual-macros #f () ())
  7864. (5323 #f 5322 () ())
  7865. (5324 usual-macros #f () ())
  7866. (5325 do-spec? 5324 () ())
  7867. (5326 usual-macros #f () ())
  7868. (5327 #f 5326 () ())
  7869. (5328 #f 5327 () ())
  7870. (5329 usual-macros #f () ())
  7871. (5330 #f 5329 () ())
  7872. (5331 recur 5330 () ())
  7873. (5332 usual-macros #f () ())
  7874. (5333 #f 5332 () ())
  7875. (5334 usual-macros #f () ())
  7876. (5335 usual-transform 5334 () ())
  7877. (5336 usual-macros #f () ())
  7878. (5337 define-usual-macro 5336 () ())
  7879. (5338 usual-macros #f () ())
  7880. (5339 strong #f () ())
  7881. (5340 pop-vertex-edge! 5339 () ())
  7882. (5341 strong #f () ())
  7883. (5342 follow-edge 5341 () ())
  7884. (5343 strong #f () ())
  7885. (5344 unwind-stack 5343 () ())
  7886. (5345 loop 5344 () ())
  7887. (5346 strong #f () ())
  7888. (5347 end-vertex 5346 () ())
  7889. (5348 #f 5347 () ())
  7890. (5349 #f 5347 () ())
  7891. (5350 strong #f () ())
  7892. (5351 get-strong 5350 () ())
  7893. (5352 strong #f () ())
  7894. (5353 do-vertex 5352 () ())
  7895. (5354 strong #f () ())
  7896. (5355 make-vertices 5354 () ())
  7897. (5356 maybe-slot 5355 () ())
  7898. (5357 #f 5355 () ())
  7899. (5358 #f 5355 () ())
  7900. (5359 strong #f () ())
  7901. (5360 make-vertex 5359 () ())
  7902. (5361 strong #f () ())
  7903. (5362 vertex? 5361 () ())
  7904. (5363 strong #f () ())
  7905. (5364 vertex-data 5363 () ())
  7906. (5365 strong #f () ())
  7907. (5366 set-vertex-edges! 5365 () ())
  7908. (5367 strong #f () ())
  7909. (5368 vertex-edges 5367 () ())
  7910. (5369 strong #f () ())
  7911. (5370 set-vertex-stack! 5369 () ())
  7912. (5371 strong #f () ())
  7913. (5372 vertex-stack 5371 () ())
  7914. (5373 strong #f () ())
  7915. (5374 set-vertex-index! 5373 () ())
  7916. (5375 strong #f () ())
  7917. (5376 vertex-index 5375 () ())
  7918. (5377 strong #f () ())
  7919. (5378 set-vertex-parent! 5377 () ())
  7920. (5379 strong #f () ())
  7921. (5380 vertex-parent 5379 () ())
  7922. (5381 strong #f () ())
  7923. (5382 set-vertex-lowpoint! 5381 () ())
  7924. (5383 strong #f () ())
  7925. (5384 vertex-lowpoint 5383 () ())
  7926. (5385 strong #f () ())
  7927. (5386 really-make-vertex 5385 () ())
  7928. (5387 strong #f () ())
  7929. (5388 strong #f () ())
  7930. (5389 find-next-vertex 5388 () ())
  7931. (5390 loop##729 5389 () ())
  7932. (5391 strong #f () ())
  7933. (5392 strongly-connected-components 5391 () ())
  7934. (5393 loop 5392 () ())
  7935. (5394 #f 5393 () ())
  7936. (5395 #f 5393 () ())
  7937. (5396 #f 5393 () ())
  7938. (5397 usages #f () ())
  7939. (5398 insert-aliases 5397 () ())
  7940. (5399 loop 5398 () ())
  7941. (5400 usages #f () ())
  7942. (5401 make-form 5400 () ())
  7943. (5402 usages #f () ())
  7944. (5403 #f 5402 () ())
  7945. (5404 usages #f () ())
  7946. (5405 form? 5404 () ())
  7947. (5406 usages #f () ())
  7948. (5407 form-node 5406 () ())
  7949. (5408 usages #f () ())
  7950. (5409 set-form-aliases! 5408 () ())
  7951. (5410 usages #f () ())
  7952. (5411 form-aliases 5410 () ())
  7953. (5412 usages #f () ())
  7954. (5413 set-form-unaliased?! 5412 () ())
  7955. (5414 usages #f () ())
  7956. (5415 form-unaliased? 5414 () ())
  7957. (5416 usages #f () ())
  7958. (5417 set-form-free! 5416 () ())
  7959. (5418 usages #f () ())
  7960. (5419 form-free 5418 () ())
  7961. (5420 usages #f () ())
  7962. (5421 set-form-temp! 5420 () ())
  7963. (5422 usages #f () ())
  7964. (5423 form-temp 5422 () ())
  7965. (5424 usages #f () ())
  7966. (5425 really-make-form 5424 () ())
  7967. (5426 usages #f () ())
  7968. (5427 usages #f () ())
  7969. (5428 topologically-sort 5427 () ())
  7970. (5429 #f 5428 () ())
  7971. (5430 #f 5429 () ())
  7972. (5431 #f 5429 () ())
  7973. (5432 usages #f () ())
  7974. (5433 maybe-make-aliased 5432 () ())
  7975. (5434 usages #f () ())
  7976. (5435 stuff-count 5434 () ())
  7977. (5436 #f 5435 () ())
  7978. (5437 usages #f () ())
  7979. (5438 sort-forms 5437 () ())
  7980. (5439 #f 5438 () ())
  7981. (5440 #f 5438 () ())
  7982. (5441 usages #f () ())
  7983. (5442 usages #f () ())
  7984. (5443 usages #f () ())
  7985. (5444 usages #f () ())
  7986. (5445 usage-incrementator 5444 () ())
  7987. (5446 #f 5445 () ())
  7988. (5447 usages #f () ())
  7989. (5448 package-usage? 5447 () ())
  7990. (5449 usages #f () ())
  7991. (5450 make-package-usage 5449 () ())
  7992. (5451 usages #f () ())
  7993. (5452 make-usage 5451 () ())
  7994. (5453 usages #f () ())
  7995. (5454 usage? 5453 () ())
  7996. (5455 usages #f () ())
  7997. (5456 usage-name-node 5455 () ())
  7998. (5457 usages #f () ())
  7999. (5458 set-reference! 5457 () ())
  8000. (5459 usages #f () ())
  8001. (5460 usage-reference-count 5459 () ())
  8002. (5461 usages #f () ())
  8003. (5462 set-operator! 5461 () ())
  8004. (5463 usages #f () ())
  8005. (5464 usage-operator-count 5463 () ())
  8006. (5465 usages #f () ())
  8007. (5466 set-assignment! 5465 () ())
  8008. (5467 usages #f () ())
  8009. (5468 usage-assignment-count 5467 () ())
  8010. (5469 usages #f () ())
  8011. (5470 really-make-usage 5469 () ())
  8012. (5471 usages #f () ())
  8013. (5472 usages #f () ())
  8014. (5473 #f 5472 () ())
  8015. (5474 usages #f () ())
  8016. (5475 #f 5474 () ())
  8017. (5476 usages #f () ())
  8018. (5477 #f 5476 () ())
  8019. (5478 usages #f () ())
  8020. (5479 #f 5478 () ())
  8021. (5480 usages #f () ())
  8022. (5481 #f 5480 () ())
  8023. (5482 usages #f () ())
  8024. (5483 #f 5482 () ())
  8025. (5484 usages #f () ())
  8026. (5485 analyze-letrec 5484 () ())
  8027. (5486 #f 5485 () ())
  8028. (5487 usages #f () ())
  8029. (5488 #f 5487 () ())
  8030. (5489 usages #f () ())
  8031. (5490 #f 5489 () ())
  8032. (5491 usages #f () ())
  8033. (5492 #f 5491 () ())
  8034. (5493 #f 5492 () ())
  8035. (5494 usages #f () ())
  8036. (5495 #f 5494 () ())
  8037. (5496 usages #f () ())
  8038. (5497 add-if-free 5496 () ())
  8039. (5498 usages #f () ())
  8040. (5499 #f 5498 () ())
  8041. (5500 usages #f () ())
  8042. (5501 usages #f () ())
  8043. (5502 usages #f () ())
  8044. (5503 usages #f () ())
  8045. (5504 usages #f () ())
  8046. (5505 usages #f () ())
  8047. (5506 nothing 5505 () ())
  8048. (5507 usages #f () ())
  8049. (5508 define-usage-analyzer 5507 () ())
  8050. (5509 usages #f () ())
  8051. (5510 #f 5509 () ())
  8052. (5511 usages #f () ())
  8053. (5512 analyze-nodes 5511 () ())
  8054. (5513 #f 5512 () ())
  8055. (5514 usages #f () ())
  8056. (5515 analyze 5514 () ())
  8057. (5516 usages #f () ())
  8058. (5517 find-node-usages 5516 () ())
  8059. (5518 #f 5517 () ())
  8060. (5519 #f 5517 () ())
  8061. (5520 usages #f () ())
  8062. (5521 maybe-update-known-type 5520 () ())
  8063. (5522 usages #f () ())
  8064. (5523 find-usages 5522 () ())
  8065. (5524 #f 5523 () ())
  8066. (5525 #f 5523 () ())
  8067. (5526 #f 5525 () ())
  8068. (5527 #f 5523 () ())
  8069. (5528 inline #f () ())
  8070. (5529 get-qualified-env 5528 () ())
  8071. (5530 inline #f () ())
  8072. (5531 qualified->name 5530 () ())
  8073. (5532 recur 5531 () ())
  8074. (5533 inline #f () ())
  8075. (5534 reconstitute-name 5533 () ())
  8076. (5535 inline #f () ())
  8077. (5536 reconstitute 5535 () ())
  8078. (5537 label 5536 () ())
  8079. (5538 inline #f () ())
  8080. (5539 make-substitution 5538 () ())
  8081. (5540 #f 5539 () ())
  8082. (5541 inline #f () ())
  8083. (5542 inline-transform 5541 () ())
  8084. (5543 #f 5542 () ())
  8085. (5544 #f 5542 () ())
  8086. (5545 inline #f () ())
  8087. (5546 remove-bindings 5545 () ())
  8088. (5547 label 5546 () ())
  8089. (5548 inline #f () ())
  8090. (5549 unused-name 5548 () ())
  8091. (5550 loop##756 5549 () ())
  8092. (5551 #f 5550 () ())
  8093. (5552 inline #f () ())
  8094. (5553 clean-lookup 5552 () ())
  8095. (5554 inline #f () ())
  8096. (5555 clean-lambda 5554 () ())
  8097. (5556 #f 5555 () ())
  8098. (5557 recur 5555 () ())
  8099. (5558 inline #f () ())
  8100. (5559 clean-node 5558 () ())
  8101. (5560 #f 5559 () ())
  8102. (5561 #f 5559 () ())
  8103. (5562 inline #f () ())
  8104. (5563 make-inline-transform 5562 () ())
  8105. (5564 #f 5563 () ())
  8106. (5565 #f 5563 () ())
  8107. (5566 loop##757 5565 () ())
  8108. (5567 for-reification #f () ())
  8109. (5568 package-define-static! 5567 () ())
  8110. (5569 for-reification #f () ())
  8111. (5570 transform 5569 () ())
  8112. (5571 for-reification #f () ())
  8113. (5572 package 5571 () ())
  8114. (5573 loop##758 5572 () ())
  8115. (5574 for-reification #f () ())
  8116. (5575 simple-interface 5574 () ())
  8117. (5576 #f 5575 () ())
  8118. (5577 for-reification #f () ())
  8119. (5578 primop 5577 () ())
  8120. (5579 for-reification #f () ())
  8121. (5580 operator 5579 () ())
  8122. (5581 types #f () ())
  8123. (5582 types #f () ())
  8124. (5583 types #f () ())
  8125. (5584 types #f () ())
  8126. (5585 types #f () ())
  8127. (5586 types #f () ())
  8128. (5587 types #f () ())
  8129. (5588 types #f () ())
  8130. (5589 types #f () ())
  8131. (5590 types #f () ())
  8132. (5591 types #f () ())
  8133. (5592 types #f () ())
  8134. (5593 types #f () ())
  8135. (5594 types #f () ())
  8136. (5595 types #f () ())
  8137. (5596 types #f () ())
  8138. (5597 types #f () ())
  8139. (5598 types #f () ())
  8140. (5599 types #f () ())
  8141. (5600 types #f () ())
  8142. (5601 types #f () ())
  8143. (5602 types #f () ())
  8144. (5603 procedure 5602 () ())
  8145. (5604 types #f () ())
  8146. (5605 types #f () ())
  8147. (5606 types #f () ())
  8148. (5607 types #f () ())
  8149. (5608 defpackage #f () ())
  8150. (5609 note-name! 5608 () ())
  8151. (5610 defpackage #f () ())
  8152. (5611 set-verify-later! 5610 () ())
  8153. (5612 defpackage #f () ())
  8154. (5613 verify-later! 5612 () ())
  8155. (5614 defpackage #f () ())
  8156. (5615 *verify-later!* 5614 () ())
  8157. (5616 defpackage #f () ())
  8158. (5617 defpackage #f () ())
  8159. (5618 loser 5617 () ())
  8160. (5619 defpackage #f () ())
  8161. (5620 make-a-package 5619 () ())
  8162. (5621 scan-package #f () ())
  8163. (5622 check-structure 5621 () ())
  8164. (5623 #f 5622 () ())
  8165. (5624 scan-package #f () ())
  8166. (5625 package-optimizer-names 5624 () ())
  8167. (5626 #f 5625 () ())
  8168. (5627 #f 5625 () ())
  8169. (5628 scan-package #f () ())
  8170. (5629 read-files 5628 () ())
  8171. (5630 #f 5629 () ())
  8172. (5631 scan-package #f () ())
  8173. (5632 package-source 5631 () ())
  8174. (5633 #f 5632 () ())
  8175. (5634 scan-package #f () ())
  8176. (5635 collect-packages 5634 () ())
  8177. (5636 recur 5635 () ())
  8178. (5637 #f 5636 () ())
  8179. (5638 compile-packages #f () ())
  8180. (5639 define-primitives 5638 () ())
  8181. (5640 #f 5639 () ())
  8182. (5641 #f 5639 () ())
  8183. (5642 make-define-primitive-node 5639 () ())
  8184. (5643 make-register-primitive 5639 () ())
  8185. (5644 #f 5639 () ())
  8186. (5645 compile-packages #f () ())
  8187. (5646 define-usual-transform 5645 () ())
  8188. (5647 compile-packages #f () ())
  8189. (5648 expand-package 5647 () ())
  8190. (5649 #f 5648 () ())
  8191. (5650 #f 5649 () ())
  8192. (5651 #f 5649 () ())
  8193. (5652 #f 5649 () ())
  8194. (5653 #f 5652 () ())
  8195. (5654 #f 5653 () ())
  8196. (5655 #f 5648 () ())
  8197. (5656 compile-packages #f () ())
  8198. (5657 compile-package 5656 () ())
  8199. (5658 module-system #f () ())
  8200. (5659 analysis #f () ())
  8201. (5660 package-lookup-type 5659 () ())
  8202. (5661 analysis #f () ())
  8203. (5662 analysis #f () ())
  8204. (5663 require 5662 () ())
  8205. (5664 analysis #f () ())
  8206. (5665 simple-literal? 5664 () ())
  8207. (5666 analysis #f () ())
  8208. (5667 analysis #f () ())
  8209. (5668 analysis #f () ())
  8210. (5669 primitive-proc? 5668 () ())
  8211. (5670 analysis #f () ())
  8212. (5671 really-simple-call? 5670 () ())
  8213. (5672 analysis #f () ())
  8214. (5673 #f 5672 () ())
  8215. (5674 analysis #f () ())
  8216. (5675 #f 5674 () ())
  8217. (5676 loop 5675 () ())
  8218. (5677 analysis #f () ())
  8219. (5678 #f 5677 () ())
  8220. (5679 analysis #f () ())
  8221. (5680 #f 5679 () ())
  8222. (5681 analysis #f () ())
  8223. (5682 #f 5681 () ())
  8224. (5683 analysis #f () ())
  8225. (5684 #f 5683 () ())
  8226. (5685 analysis #f () ())
  8227. (5686 #f 5685 () ())
  8228. (5687 analysis #f () ())
  8229. (5688 #f 5687 () ())
  8230. (5689 analysis #f () ())
  8231. (5690 #f 5689 () ())
  8232. (5691 analysis #f () ())
  8233. (5692 #f 5691 () ())
  8234. (5693 analysis #f () ())
  8235. (5694 #f 5693 () ())
  8236. (5695 analysis #f () ())
  8237. (5696 #f 5695 () ())
  8238. (5697 analysis #f () ())
  8239. (5698 #f 5697 () ())
  8240. (5699 analysis #f () ())
  8241. (5700 define-analyzer 5699 () ())
  8242. (5701 analysis #f () ())
  8243. (5702 #f 5701 () ())
  8244. (5703 analysis #f () ())
  8245. (5704 simple-list? 5703 () ())
  8246. (5705 analysis #f () ())
  8247. (5706 simple? 5705 () ())
  8248. (5707 analysis #f () ())
  8249. (5708 simple-lambda? 5707 () ())
  8250. (5709 #f 5708 () ())
  8251. (5710 analysis #f () ())
  8252. (5711 inlinable-rhs? 5710 () ())
  8253. (5712 analysis #f () ())
  8254. (5713 analyze-form 5712 () ())
  8255. (5714 analysis #f () ())
  8256. (5715 analyze-forms 5714 () ())
  8257. (5716 #f 5715 () ())
  8258. (5717 analysis #f () ())
  8259. (5718 #f 5717 () ())
  8260. (5719 ensures-loaded #f () ())
  8261. (5720 ensure-loaded 5719 () ())
  8262. (5721 #f 5720 () ())
  8263. (5722 #f 5721 () ())
  8264. (5723 #f 5720 () ())
  8265. (5724 #f #f () ())
  8266. (5725 #f 5724 () ())
  8267. (5726 get-location 5725 () ())
  8268. (5727 foo 5725 () ())
  8269. (5728 foo 5725 () ())
  8270. (5729 foo 5725 () ())
  8271. (5730 foo 5725 () ())
  8272. (5731 #f 5730 () ())
  8273. (5732 #f 5730 () ())
  8274. (5733 #f 5730 () ())
  8275. (5734 #f 5730 () ())
  8276. (5735 #f 5730 () ())
  8277. (5736 name 5735 () ())
  8278. (5737 #f 5736 () ())
  8279. (5738 #f 5730 () ())
  8280. (5739 loop 5738 () ())
  8281. (5740 #f 5738 () ())
  8282. (5741 #f 5738 () ())
  8283. (5742 #f 5738 () ())
  8284. (5743 #f 5738 () ())
  8285. (5744 foo 5725 () ())
  8286. (5745 #f 5744 () ())
  8287. (5746 mem? 5745 () ())
  8288. (5747 every? 5745 () ())
  8289. (5748 #f 5745 () ())
  8290. (5749 #f 5745 () ())
  8291. (5750 #f 5744 () ())
  8292. (5751 mem? 5750 () ())
  8293. (5752 loop##771 5750 () ())
  8294. (5753 #f 5744 () ())
  8295. (5754 #f 5744 () ())
  8296. (5755 #f 5744 () ())
  8297. (5756 foo 5725 () ())
  8298. (5757 #f 5756 () ())
  8299. (5758 foo 5725 () ())
  8300. (5759 foo 5725 () ())
  8301. (5760 #f 5759 () ())
  8302. (5761 #f 5759 () ())
  8303. (5762 #f 5761 () ())
  8304. (5763 foo 5725 () ())
  8305. (5764 #f 5763 () ())
  8306. (5765 #f 5763 () ())
  8307. (5766 #f 5763 () ())
  8308. (5767 #f 5763 () ())
  8309. (5768 #f 5763 () ())
  8310. (5769 loop 5768 () ())
  8311. (5770 #f 5768 () ())
  8312. (5771 #f 5768 () ())
  8313. (5772 #f 5768 () ())
  8314. (5773 loop 5768 () ())
  8315. (5774 #f 5768 () ())
  8316. (5775 #f 5768 () ())
  8317. (5776 #f 5768 () ())
  8318. (5777 #f 5768 () ())
  8319. (5778 #f 5763 () ())
  8320. (5779 #f 5763 () ())
  8321. (5780 #f 5763 () ())
  8322. (5781 #f 5763 () ())
  8323. (5782 #f 5763 () ())
  8324. (5783 loop 5782 () ())
  8325. (5784 #f 5763 () ())
  8326. (5785 loop 5784 () ())
  8327. (5786 #f 5763 () ())
  8328. (5787 loop 5786 () ())
  8329. (5788 #f 5763 () ())
  8330. (5789 loop 5788 () ())
  8331. (5790 foo 5725 () ())
  8332. (5791 #f 5790 () ())
  8333. (5792 loop 5791 () ())
  8334. (5793 #f 5790 () ())
  8335. (5794 loop 5793 () ())
  8336. (5795 #f 5790 () ())
  8337. (5796 loop 5795 () ())
  8338. (5797 #f 5790 () ())
  8339. (5798 loop 5797 () ())
  8340. (5799 #f 5790 () ())
  8341. (5800 loop 5799 () ())
  8342. (5801 #f 5790 () ())
  8343. (5802 loop 5801 () ())
  8344. (5803 #f 5790 () ())
  8345. (5804 loop 5803 () ())
  8346. (5805 #f 5790 () ())
  8347. (5806 loop 5805 () ())
  8348. (5807 #f 5790 () ())
  8349. (5808 loop 5807 () ())
  8350. (5809 #f 5790 () ())
  8351. (5810 loop 5809 () ())
  8352. (5811 #f 5790 () ())
  8353. (5812 loop 5811 () ())
  8354. (5813 #f 5790 () ())
  8355. (5814 loop 5813 () ())
  8356. (5815 foo 5725 () ())
  8357. (5816 #f 5815 () ())
  8358. (5817 #f 5815 () ())
  8359. (5818 #f 5815 () ())
  8360. (5819 #f 5815 () ())
  8361. (5820 #f 5815 () ())
  8362. (5821 #f 5815 () ())
  8363. (5822 #f 5815 () ())
  8364. (5823 #f 5815 () ())
  8365. (5824 foo 5725 () ())
  8366. (5825 #f 5824 () ())
  8367. (5826 loop 5825 () ())
  8368. (5827 #f 5824 () ())
  8369. (5828 #f 5824 () ())
  8370. (5829 #f 5824 () ())
  8371. (5830 #f 5824 () ())
  8372. (5831 #f 5824 () ())
  8373. (5832 #f 5831 () ())
  8374. (5833 #f 5824 () ())
  8375. (5834 #f 5833 () ())
  8376. (5835 #f 5833 () ())
  8377. (5836 #f 5824 () ())
  8378. (5837 #f 5824 () ())
  8379. (5838 #f 5837 () ())
  8380. (5839 parse-package-clauses 5824 () ())
  8381. (5840 loop 5839 () ())
  8382. (5841 #f 5824 () ())
  8383. (5842 #f 5841 () ())
  8384. (5843 #f 5842 () ())
  8385. (5844 #f 5841 () ())
  8386. (5845 #f 5824 () ())
  8387. (5846 #f 5824 () ())
  8388. (5847 #f 5824 () ())
  8389. (5848 loop 5847 () ())
  8390. (5849 #f 5824 () ())
  8391. (5850 #f 5824 () ())
  8392. (5851 #f 5824 () ())
  8393. (5852 #f 5824 () ())
  8394. (5853 loop 5852 () ())
  8395. (5854 #f 5852 () ())
  8396. (5855 #f 5852 () ())
  8397. (5856 #f 5824 () ())
  8398. (5857 foo 5725 () ())
  8399. (5858 #f 5857 () ())
  8400. (5859 #f 5857 () ())
  8401. (5860 foo 5725 () ())
  8402. (5861 foo 5725 () ())
  8403. (5862 foo 5725 () ())
  8404. (5863 foo 5725 () ())
  8405. (5864 #f #f () ())
  8406. -