123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885 |
- package goja
- import (
- "fmt"
- "math"
- "runtime"
- "strconv"
- "sync"
- "sync/atomic"
- "github.com/dop251/goja/unistring"
- )
- const (
- maxInt = 1 << 53
- )
- type valueStack []Value
- type stash struct {
- values []Value
- extraArgs []Value
- names map[unistring.String]uint32
- obj *Object
- outer *stash
- // true if this stash is a VariableEnvironment, i.e. dynamic var declarations created
- // by direct eval go here.
- variable bool
- }
- type context struct {
- prg *Program
- funcName unistring.String
- stash *stash
- newTarget Value
- result Value
- pc, sb int
- args int
- }
- type iterStackItem struct {
- val Value
- f iterNextFunc
- iter *Object
- }
- type ref interface {
- get() Value
- set(Value)
- refname() unistring.String
- }
- type stashRef struct {
- n unistring.String
- v *[]Value
- idx int
- }
- func (r *stashRef) get() Value {
- return nilSafe((*r.v)[r.idx])
- }
- func (r *stashRef) set(v Value) {
- (*r.v)[r.idx] = v
- }
- func (r *stashRef) refname() unistring.String {
- return r.n
- }
- type stashRefLex struct {
- stashRef
- }
- func (r *stashRefLex) get() Value {
- v := (*r.v)[r.idx]
- if v == nil {
- panic(errAccessBeforeInit)
- }
- return v
- }
- func (r *stashRefLex) set(v Value) {
- p := &(*r.v)[r.idx]
- if *p == nil {
- panic(errAccessBeforeInit)
- }
- *p = v
- }
- type stashRefConst struct {
- stashRefLex
- strictConst bool
- }
- func (r *stashRefConst) set(v Value) {
- if r.strictConst {
- panic(errAssignToConst)
- }
- }
- type objRef struct {
- base objectImpl
- name unistring.String
- strict bool
- }
- func (r *objRef) get() Value {
- return r.base.getStr(r.name, nil)
- }
- func (r *objRef) set(v Value) {
- r.base.setOwnStr(r.name, v, r.strict)
- }
- func (r *objRef) refname() unistring.String {
- return r.name
- }
- type unresolvedRef struct {
- runtime *Runtime
- name unistring.String
- }
- func (r *unresolvedRef) get() Value {
- r.runtime.throwReferenceError(r.name)
- panic("Unreachable")
- }
- func (r *unresolvedRef) set(Value) {
- r.get()
- }
- func (r *unresolvedRef) refname() unistring.String {
- return r.name
- }
- type vm struct {
- r *Runtime
- prg *Program
- funcName unistring.String
- pc int
- stack valueStack
- sp, sb, args int
- stash *stash
- callStack []context
- iterStack []iterStackItem
- refStack []ref
- newTarget Value
- result Value
- maxCallStackSize int
- stashAllocs int
- halt bool
- interrupted uint32
- interruptVal interface{}
- interruptLock sync.Mutex
- }
- type instruction interface {
- exec(*vm)
- }
- func intToValue(i int64) Value {
- if i >= -maxInt && i <= maxInt {
- if i >= -128 && i <= 127 {
- return intCache[i+128]
- }
- return valueInt(i)
- }
- return valueFloat(i)
- }
- func floatToInt(f float64) (result int64, ok bool) {
- if (f != 0 || !math.Signbit(f)) && !math.IsInf(f, 0) && f == math.Trunc(f) && f >= -maxInt && f <= maxInt {
- return int64(f), true
- }
- return 0, false
- }
- func floatToValue(f float64) (result Value) {
- if i, ok := floatToInt(f); ok {
- return intToValue(i)
- }
- switch {
- case f == 0:
- return _negativeZero
- case math.IsNaN(f):
- return _NaN
- case math.IsInf(f, 1):
- return _positiveInf
- case math.IsInf(f, -1):
- return _negativeInf
- }
- return valueFloat(f)
- }
- func assertInt64(v Value) (int64, bool) {
- num := v.ToNumber()
- if i, ok := num.(valueInt); ok {
- return int64(i), true
- }
- if f, ok := num.(valueFloat); ok {
- if i, ok := floatToInt(float64(f)); ok {
- return i, true
- }
- }
- return 0, false
- }
- func toIntIgnoreNegZero(v Value) (int64, bool) {
- num := v.ToNumber()
- if i, ok := num.(valueInt); ok {
- return int64(i), true
- }
- if f, ok := num.(valueFloat); ok {
- if v == _negativeZero {
- return 0, true
- }
- if i, ok := floatToInt(float64(f)); ok {
- return i, true
- }
- }
- return 0, false
- }
- func (s *valueStack) expand(idx int) {
- if idx < len(*s) {
- return
- }
- idx++
- if idx < cap(*s) {
- *s = (*s)[:idx]
- } else {
- var newCap int
- if idx < 1024 {
- newCap = idx * 2
- } else {
- newCap = (idx + 1025) &^ 1023
- }
- n := make([]Value, idx, newCap)
- copy(n, *s)
- *s = n
- }
- }
- func stashObjHas(obj *Object, name unistring.String) bool {
- if obj.self.hasPropertyStr(name) {
- if unscopables, ok := obj.self.getSym(SymUnscopables, nil).(*Object); ok {
- if b := unscopables.self.getStr(name, nil); b != nil {
- return !b.ToBoolean()
- }
- }
- return true
- }
- return false
- }
- func (s *stash) initByIdx(idx uint32, v Value) {
- if s.obj != nil {
- panic("Attempt to init by idx into an object scope")
- }
- s.values[idx] = v
- }
- func (s *stash) initByName(name unistring.String, v Value) {
- if idx, exists := s.names[name]; exists {
- s.values[idx&^maskTyp] = v
- } else {
- panic(referenceError(fmt.Sprintf("%s is not defined", name)))
- }
- }
- func (s *stash) getByIdx(idx uint32) Value {
- return s.values[idx]
- }
- func (s *stash) getByName(name unistring.String) (v Value, exists bool) {
- if s.obj != nil {
- if stashObjHas(s.obj, name) {
- return nilSafe(s.obj.self.getStr(name, nil)), true
- }
- return nil, false
- }
- if idx, exists := s.names[name]; exists {
- v := s.values[idx&^maskTyp]
- if v == nil {
- if idx&maskVar == 0 {
- panic(errAccessBeforeInit)
- } else {
- v = _undefined
- }
- }
- return v, true
- }
- return nil, false
- }
- func (s *stash) getRefByName(name unistring.String, strict bool) ref {
- if obj := s.obj; obj != nil {
- if stashObjHas(obj, name) {
- return &objRef{
- base: obj.self,
- name: name,
- strict: strict,
- }
- }
- } else {
- if idx, exists := s.names[name]; exists {
- if idx&maskVar == 0 {
- if idx&maskConst == 0 {
- return &stashRefLex{
- stashRef: stashRef{
- n: name,
- v: &s.values,
- idx: int(idx &^ maskTyp),
- },
- }
- } else {
- return &stashRefConst{
- stashRefLex: stashRefLex{
- stashRef: stashRef{
- n: name,
- v: &s.values,
- idx: int(idx &^ maskTyp),
- },
- },
- strictConst: strict || (idx&maskStrict != 0),
- }
- }
- } else {
- return &stashRef{
- n: name,
- v: &s.values,
- idx: int(idx &^ maskTyp),
- }
- }
- }
- }
- return nil
- }
- func (s *stash) createBinding(name unistring.String, deletable bool) {
- if s.names == nil {
- s.names = make(map[unistring.String]uint32)
- }
- if _, exists := s.names[name]; !exists {
- idx := uint32(len(s.names)) | maskVar
- if deletable {
- idx |= maskDeletable
- }
- s.names[name] = idx
- s.values = append(s.values, _undefined)
- }
- }
- func (s *stash) createLexBinding(name unistring.String, isConst bool) {
- if s.names == nil {
- s.names = make(map[unistring.String]uint32)
- }
- if _, exists := s.names[name]; !exists {
- idx := uint32(len(s.names))
- if isConst {
- idx |= maskConst | maskStrict
- }
- s.names[name] = idx
- s.values = append(s.values, nil)
- }
- }
- func (s *stash) deleteBinding(name unistring.String) {
- delete(s.names, name)
- }
- func (vm *vm) newStash() {
- vm.stash = &stash{
- outer: vm.stash,
- }
- vm.stashAllocs++
- }
- func (vm *vm) init() {
- vm.sb = -1
- vm.stash = &vm.r.global.stash
- vm.maxCallStackSize = math.MaxInt32
- }
- func (vm *vm) run() {
- vm.halt = false
- interrupted := false
- ticks := 0
- for !vm.halt {
- if interrupted = atomic.LoadUint32(&vm.interrupted) != 0; interrupted {
- break
- }
- vm.prg.code[vm.pc].exec(vm)
- ticks++
- if ticks > 10000 {
- runtime.Gosched()
- ticks = 0
- }
- }
- if interrupted {
- vm.interruptLock.Lock()
- v := &InterruptedError{
- iface: vm.interruptVal,
- }
- atomic.StoreUint32(&vm.interrupted, 0)
- vm.interruptVal = nil
- vm.interruptLock.Unlock()
- panic(&uncatchableException{
- stack: &v.stack,
- err: v,
- })
- }
- }
- func (vm *vm) Interrupt(v interface{}) {
- vm.interruptLock.Lock()
- vm.interruptVal = v
- atomic.StoreUint32(&vm.interrupted, 1)
- vm.interruptLock.Unlock()
- }
- func (vm *vm) ClearInterrupt() {
- atomic.StoreUint32(&vm.interrupted, 0)
- }
- func (vm *vm) captureStack(stack []StackFrame, ctxOffset int) []StackFrame {
- // Unroll the context stack
- if vm.pc != -1 {
- stack = append(stack, StackFrame{prg: vm.prg, pc: vm.pc, funcName: vm.funcName})
- }
- for i := len(vm.callStack) - 1; i > ctxOffset-1; i-- {
- if vm.callStack[i].pc != -1 {
- stack = append(stack, StackFrame{prg: vm.callStack[i].prg, pc: vm.callStack[i].pc - 1, funcName: vm.callStack[i].funcName})
- }
- }
- return stack
- }
- func (vm *vm) try(f func()) (ex *Exception) {
- var ctx context
- vm.saveCtx(&ctx)
- ctxOffset := len(vm.callStack)
- sp := vm.sp
- iterLen := len(vm.iterStack)
- refLen := len(vm.refStack)
- defer func() {
- if x := recover(); x != nil {
- defer func() {
- vm.callStack = vm.callStack[:ctxOffset]
- vm.restoreCtx(&ctx)
- vm.sp = sp
- // Restore other stacks
- iterTail := vm.iterStack[iterLen:]
- for i := range iterTail {
- if iter := iterTail[i].iter; iter != nil {
- vm.try(func() {
- returnIter(iter)
- })
- }
- iterTail[i] = iterStackItem{}
- }
- vm.iterStack = vm.iterStack[:iterLen]
- refTail := vm.refStack[refLen:]
- for i := range refTail {
- refTail[i] = nil
- }
- vm.refStack = vm.refStack[:refLen]
- }()
- switch x1 := x.(type) {
- case Value:
- ex = &Exception{
- val: x1,
- }
- case *Exception:
- ex = x1
- case *uncatchableException:
- *x1.stack = vm.captureStack(*x1.stack, ctxOffset)
- panic(x1)
- case typeError:
- ex = &Exception{
- val: vm.r.NewTypeError(string(x1)),
- }
- case referenceError:
- ex = &Exception{
- val: vm.r.newError(vm.r.global.ReferenceError, string(x1)),
- }
- case rangeError:
- ex = &Exception{
- val: vm.r.newError(vm.r.global.RangeError, string(x1)),
- }
- default:
- /*
- if vm.prg != nil {
- vm.prg.dumpCode(log.Printf)
- }
- log.Print("Stack: ", string(debug.Stack()))
- panic(fmt.Errorf("Panic at %d: %v", vm.pc, x))
- */
- panic(x)
- }
- ex.stack = vm.captureStack(ex.stack, ctxOffset)
- }
- }()
- f()
- return
- }
- func (vm *vm) runTry() (ex *Exception) {
- return vm.try(vm.run)
- }
- func (vm *vm) push(v Value) {
- vm.stack.expand(vm.sp)
- vm.stack[vm.sp] = v
- vm.sp++
- }
- func (vm *vm) pop() Value {
- vm.sp--
- return vm.stack[vm.sp]
- }
- func (vm *vm) peek() Value {
- return vm.stack[vm.sp-1]
- }
- func (vm *vm) saveCtx(ctx *context) {
- ctx.prg, ctx.stash, ctx.newTarget, ctx.result, ctx.pc, ctx.sb, ctx.args =
- vm.prg, vm.stash, vm.newTarget, vm.result, vm.pc, vm.sb, vm.args
- if vm.funcName != "" {
- ctx.funcName = vm.funcName
- } else if ctx.prg != nil && ctx.prg.funcName != "" {
- ctx.funcName = ctx.prg.funcName
- }
- }
- func (vm *vm) pushCtx() {
- if len(vm.callStack) > vm.maxCallStackSize {
- ex := &StackOverflowError{}
- panic(&uncatchableException{
- stack: &ex.stack,
- err: ex,
- })
- }
- vm.callStack = append(vm.callStack, context{})
- ctx := &vm.callStack[len(vm.callStack)-1]
- vm.saveCtx(ctx)
- }
- func (vm *vm) restoreCtx(ctx *context) {
- vm.prg, vm.funcName, vm.stash, vm.newTarget, vm.result, vm.pc, vm.sb, vm.args =
- ctx.prg, ctx.funcName, ctx.stash, ctx.newTarget, ctx.result, ctx.pc, ctx.sb, ctx.args
- }
- func (vm *vm) popCtx() {
- l := len(vm.callStack) - 1
- ctx := &vm.callStack[l]
- vm.restoreCtx(ctx)
- ctx.prg = nil
- ctx.stash = nil
- ctx.result = nil
- ctx.newTarget = nil
- vm.callStack = vm.callStack[:l]
- }
- func (vm *vm) toCallee(v Value) *Object {
- if obj, ok := v.(*Object); ok {
- return obj
- }
- switch unresolved := v.(type) {
- case valueUnresolved:
- unresolved.throw()
- panic("Unreachable")
- case memberUnresolved:
- panic(vm.r.NewTypeError("Object has no member '%s'", unresolved.ref))
- }
- panic(vm.r.NewTypeError("Value is not an object: %s", v.toString()))
- }
- type loadVal uint32
- func (l loadVal) exec(vm *vm) {
- vm.push(vm.prg.values[l])
- vm.pc++
- }
- type _loadUndef struct{}
- var loadUndef _loadUndef
- func (_loadUndef) exec(vm *vm) {
- vm.push(_undefined)
- vm.pc++
- }
- type _loadNil struct{}
- var loadNil _loadNil
- func (_loadNil) exec(vm *vm) {
- vm.push(nil)
- vm.pc++
- }
- type _saveResult struct{}
- var saveResult _saveResult
- func (_saveResult) exec(vm *vm) {
- vm.sp--
- vm.result = vm.stack[vm.sp]
- vm.pc++
- }
- type _clearResult struct{}
- var clearResult _clearResult
- func (_clearResult) exec(vm *vm) {
- vm.result = _undefined
- vm.pc++
- }
- type _loadGlobalObject struct{}
- var loadGlobalObject _loadGlobalObject
- func (_loadGlobalObject) exec(vm *vm) {
- vm.push(vm.r.globalObject)
- vm.pc++
- }
- type loadStack int
- func (l loadStack) exec(vm *vm) {
- // l > 0 -- var<l-1>
- // l == 0 -- this
- if l > 0 {
- vm.push(nilSafe(vm.stack[vm.sb+vm.args+int(l)]))
- } else {
- vm.push(vm.stack[vm.sb])
- }
- vm.pc++
- }
- type loadStack1 int
- func (l loadStack1) exec(vm *vm) {
- // args are in stash
- // l > 0 -- var<l-1>
- // l == 0 -- this
- if l > 0 {
- vm.push(nilSafe(vm.stack[vm.sb+int(l)]))
- } else {
- vm.push(vm.stack[vm.sb])
- }
- vm.pc++
- }
- type loadStackLex int
- func (l loadStackLex) exec(vm *vm) {
- // l < 0 -- arg<-l-1>
- // l > 0 -- var<l-1>
- var p *Value
- if l < 0 {
- arg := int(-l)
- if arg > vm.args {
- vm.push(_undefined)
- vm.pc++
- return
- } else {
- p = &vm.stack[vm.sb+arg]
- }
- } else {
- p = &vm.stack[vm.sb+vm.args+int(l)]
- }
- if *p == nil {
- panic(errAccessBeforeInit)
- }
- vm.push(*p)
- vm.pc++
- }
- type loadStack1Lex int
- func (l loadStack1Lex) exec(vm *vm) {
- p := &vm.stack[vm.sb+int(l)]
- if *p == nil {
- panic(errAccessBeforeInit)
- }
- vm.push(*p)
- vm.pc++
- }
- type _loadCallee struct{}
- var loadCallee _loadCallee
- func (_loadCallee) exec(vm *vm) {
- vm.push(vm.stack[vm.sb-1])
- vm.pc++
- }
- func (vm *vm) storeStack(s int) {
- // l > 0 -- var<l-1>
- if s > 0 {
- vm.stack[vm.sb+vm.args+s] = vm.stack[vm.sp-1]
- } else {
- panic("Illegal stack var index")
- }
- vm.pc++
- }
- func (vm *vm) storeStack1(s int) {
- // args are in stash
- // l > 0 -- var<l-1>
- if s > 0 {
- vm.stack[vm.sb+s] = vm.stack[vm.sp-1]
- } else {
- panic("Illegal stack var index")
- }
- vm.pc++
- }
- func (vm *vm) storeStackLex(s int) {
- // l < 0 -- arg<-l-1>
- // l > 0 -- var<l-1>
- var p *Value
- if s < 0 {
- p = &vm.stack[vm.sb-s]
- } else {
- p = &vm.stack[vm.sb+vm.args+s]
- }
- if *p != nil {
- *p = vm.stack[vm.sp-1]
- } else {
- panic(errAccessBeforeInit)
- }
- vm.pc++
- }
- func (vm *vm) storeStack1Lex(s int) {
- // args are in stash
- // s > 0 -- var<l-1>
- if s <= 0 {
- panic("Illegal stack var index")
- }
- p := &vm.stack[vm.sb+s]
- if *p != nil {
- *p = vm.stack[vm.sp-1]
- } else {
- panic(errAccessBeforeInit)
- }
- vm.pc++
- }
- func (vm *vm) initStack(s int) {
- if s <= 0 {
- vm.stack[vm.sb-s] = vm.stack[vm.sp-1]
- } else {
- vm.stack[vm.sb+vm.args+s] = vm.stack[vm.sp-1]
- }
- vm.pc++
- }
- func (vm *vm) initStack1(s int) {
- if s <= 0 {
- panic("Illegal stack var index")
- }
- vm.stack[vm.sb+s] = vm.stack[vm.sp-1]
- vm.pc++
- }
- type storeStack int
- func (s storeStack) exec(vm *vm) {
- vm.storeStack(int(s))
- }
- type storeStack1 int
- func (s storeStack1) exec(vm *vm) {
- vm.storeStack1(int(s))
- }
- type storeStackLex int
- func (s storeStackLex) exec(vm *vm) {
- vm.storeStackLex(int(s))
- }
- type storeStack1Lex int
- func (s storeStack1Lex) exec(vm *vm) {
- vm.storeStack1Lex(int(s))
- }
- type initStack int
- func (s initStack) exec(vm *vm) {
- vm.initStack(int(s))
- vm.sp--
- }
- type initStack1 int
- func (s initStack1) exec(vm *vm) {
- vm.initStack1(int(s))
- vm.sp--
- }
- type storeStackP int
- func (s storeStackP) exec(vm *vm) {
- vm.storeStack(int(s))
- vm.sp--
- }
- type storeStack1P int
- func (s storeStack1P) exec(vm *vm) {
- vm.storeStack1(int(s))
- vm.sp--
- }
- type storeStackLexP int
- func (s storeStackLexP) exec(vm *vm) {
- vm.storeStackLex(int(s))
- vm.sp--
- }
- type storeStack1LexP int
- func (s storeStack1LexP) exec(vm *vm) {
- vm.storeStack1Lex(int(s))
- vm.sp--
- }
- type _toNumber struct{}
- var toNumber _toNumber
- func (_toNumber) exec(vm *vm) {
- vm.stack[vm.sp-1] = vm.stack[vm.sp-1].ToNumber()
- vm.pc++
- }
- type _add struct{}
- var add _add
- func (_add) exec(vm *vm) {
- right := vm.stack[vm.sp-1]
- left := vm.stack[vm.sp-2]
- if o, ok := left.(*Object); ok {
- left = o.toPrimitive()
- }
- if o, ok := right.(*Object); ok {
- right = o.toPrimitive()
- }
- var ret Value
- leftString, isLeftString := left.(valueString)
- rightString, isRightString := right.(valueString)
- if isLeftString || isRightString {
- if !isLeftString {
- leftString = left.toString()
- }
- if !isRightString {
- rightString = right.toString()
- }
- ret = leftString.concat(rightString)
- } else {
- if leftInt, ok := left.(valueInt); ok {
- if rightInt, ok := right.(valueInt); ok {
- ret = intToValue(int64(leftInt) + int64(rightInt))
- } else {
- ret = floatToValue(float64(leftInt) + right.ToFloat())
- }
- } else {
- ret = floatToValue(left.ToFloat() + right.ToFloat())
- }
- }
- vm.stack[vm.sp-2] = ret
- vm.sp--
- vm.pc++
- }
- type _sub struct{}
- var sub _sub
- func (_sub) exec(vm *vm) {
- right := vm.stack[vm.sp-1]
- left := vm.stack[vm.sp-2]
- var result Value
- if left, ok := left.(valueInt); ok {
- if right, ok := right.(valueInt); ok {
- result = intToValue(int64(left) - int64(right))
- goto end
- }
- }
- result = floatToValue(left.ToFloat() - right.ToFloat())
- end:
- vm.sp--
- vm.stack[vm.sp-1] = result
- vm.pc++
- }
- type _mul struct{}
- var mul _mul
- func (_mul) exec(vm *vm) {
- left := vm.stack[vm.sp-2]
- right := vm.stack[vm.sp-1]
- var result Value
- if left, ok := assertInt64(left); ok {
- if right, ok := assertInt64(right); ok {
- if left == 0 && right == -1 || left == -1 && right == 0 {
- result = _negativeZero
- goto end
- }
- res := left * right
- // check for overflow
- if left == 0 || right == 0 || res/left == right {
- result = intToValue(res)
- goto end
- }
- }
- }
- result = floatToValue(left.ToFloat() * right.ToFloat())
- end:
- vm.sp--
- vm.stack[vm.sp-1] = result
- vm.pc++
- }
- type _div struct{}
- var div _div
- func (_div) exec(vm *vm) {
- left := vm.stack[vm.sp-2].ToFloat()
- right := vm.stack[vm.sp-1].ToFloat()
- var result Value
- if math.IsNaN(left) || math.IsNaN(right) {
- result = _NaN
- goto end
- }
- if math.IsInf(left, 0) && math.IsInf(right, 0) {
- result = _NaN
- goto end
- }
- if left == 0 && right == 0 {
- result = _NaN
- goto end
- }
- if math.IsInf(left, 0) {
- if math.Signbit(left) == math.Signbit(right) {
- result = _positiveInf
- goto end
- } else {
- result = _negativeInf
- goto end
- }
- }
- if math.IsInf(right, 0) {
- if math.Signbit(left) == math.Signbit(right) {
- result = _positiveZero
- goto end
- } else {
- result = _negativeZero
- goto end
- }
- }
- if right == 0 {
- if math.Signbit(left) == math.Signbit(right) {
- result = _positiveInf
- goto end
- } else {
- result = _negativeInf
- goto end
- }
- }
- result = floatToValue(left / right)
- end:
- vm.sp--
- vm.stack[vm.sp-1] = result
- vm.pc++
- }
- type _mod struct{}
- var mod _mod
- func (_mod) exec(vm *vm) {
- left := vm.stack[vm.sp-2]
- right := vm.stack[vm.sp-1]
- var result Value
- if leftInt, ok := assertInt64(left); ok {
- if rightInt, ok := assertInt64(right); ok {
- if rightInt == 0 {
- result = _NaN
- goto end
- }
- r := leftInt % rightInt
- if r == 0 && leftInt < 0 {
- result = _negativeZero
- } else {
- result = intToValue(leftInt % rightInt)
- }
- goto end
- }
- }
- result = floatToValue(math.Mod(left.ToFloat(), right.ToFloat()))
- end:
- vm.sp--
- vm.stack[vm.sp-1] = result
- vm.pc++
- }
- type _neg struct{}
- var neg _neg
- func (_neg) exec(vm *vm) {
- operand := vm.stack[vm.sp-1]
- var result Value
- if i, ok := assertInt64(operand); ok {
- if i == 0 {
- result = _negativeZero
- } else {
- result = valueInt(-i)
- }
- } else {
- f := operand.ToFloat()
- if !math.IsNaN(f) {
- f = -f
- }
- result = valueFloat(f)
- }
- vm.stack[vm.sp-1] = result
- vm.pc++
- }
- type _plus struct{}
- var plus _plus
- func (_plus) exec(vm *vm) {
- vm.stack[vm.sp-1] = vm.stack[vm.sp-1].ToNumber()
- vm.pc++
- }
- type _inc struct{}
- var inc _inc
- func (_inc) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- if i, ok := assertInt64(v); ok {
- v = intToValue(i + 1)
- goto end
- }
- v = valueFloat(v.ToFloat() + 1)
- end:
- vm.stack[vm.sp-1] = v
- vm.pc++
- }
- type _dec struct{}
- var dec _dec
- func (_dec) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- if i, ok := assertInt64(v); ok {
- v = intToValue(i - 1)
- goto end
- }
- v = valueFloat(v.ToFloat() - 1)
- end:
- vm.stack[vm.sp-1] = v
- vm.pc++
- }
- type _and struct{}
- var and _and
- func (_and) exec(vm *vm) {
- left := toInt32(vm.stack[vm.sp-2])
- right := toInt32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left & right))
- vm.sp--
- vm.pc++
- }
- type _or struct{}
- var or _or
- func (_or) exec(vm *vm) {
- left := toInt32(vm.stack[vm.sp-2])
- right := toInt32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left | right))
- vm.sp--
- vm.pc++
- }
- type _xor struct{}
- var xor _xor
- func (_xor) exec(vm *vm) {
- left := toInt32(vm.stack[vm.sp-2])
- right := toInt32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left ^ right))
- vm.sp--
- vm.pc++
- }
- type _bnot struct{}
- var bnot _bnot
- func (_bnot) exec(vm *vm) {
- op := toInt32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-1] = intToValue(int64(^op))
- vm.pc++
- }
- type _sal struct{}
- var sal _sal
- func (_sal) exec(vm *vm) {
- left := toInt32(vm.stack[vm.sp-2])
- right := toUint32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left << (right & 0x1F)))
- vm.sp--
- vm.pc++
- }
- type _sar struct{}
- var sar _sar
- func (_sar) exec(vm *vm) {
- left := toInt32(vm.stack[vm.sp-2])
- right := toUint32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left >> (right & 0x1F)))
- vm.sp--
- vm.pc++
- }
- type _shr struct{}
- var shr _shr
- func (_shr) exec(vm *vm) {
- left := toUint32(vm.stack[vm.sp-2])
- right := toUint32(vm.stack[vm.sp-1])
- vm.stack[vm.sp-2] = intToValue(int64(left >> (right & 0x1F)))
- vm.sp--
- vm.pc++
- }
- type _halt struct{}
- var halt _halt
- func (_halt) exec(vm *vm) {
- vm.halt = true
- vm.pc++
- }
- type jump int32
- func (j jump) exec(vm *vm) {
- vm.pc += int(j)
- }
- type _toPropertyKey struct{}
- func (_toPropertyKey) exec(vm *vm) {
- p := vm.sp - 1
- vm.stack[p] = toPropertyKey(vm.stack[p])
- vm.pc++
- }
- type _getElemRef struct{}
- var getElemRef _getElemRef
- func (_getElemRef) exec(vm *vm) {
- obj := vm.stack[vm.sp-2].ToObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-1])
- vm.refStack = append(vm.refStack, &objRef{
- base: obj.self,
- name: propName.string(),
- })
- vm.sp -= 2
- vm.pc++
- }
- type _getElemRefStrict struct{}
- var getElemRefStrict _getElemRefStrict
- func (_getElemRefStrict) exec(vm *vm) {
- obj := vm.stack[vm.sp-2].ToObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-1])
- vm.refStack = append(vm.refStack, &objRef{
- base: obj.self,
- name: propName.string(),
- strict: true,
- })
- vm.sp -= 2
- vm.pc++
- }
- type _setElem struct{}
- var setElem _setElem
- func (_setElem) exec(vm *vm) {
- obj := vm.stack[vm.sp-3].ToObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- obj.setOwn(propName, val, false)
- vm.sp -= 2
- vm.stack[vm.sp-1] = val
- vm.pc++
- }
- type _setElem1 struct{}
- var setElem1 _setElem1
- func (_setElem1) exec(vm *vm) {
- obj := vm.stack[vm.sp-3].ToObject(vm.r)
- propName := vm.stack[vm.sp-2]
- val := vm.stack[vm.sp-1]
- obj.setOwn(propName, val, true)
- vm.sp -= 2
- vm.pc++
- }
- type _setElem1Named struct{}
- var setElem1Named _setElem1Named
- func (_setElem1Named) exec(vm *vm) {
- obj := vm.stack[vm.sp-3].ToObject(vm.r)
- propName := vm.stack[vm.sp-2]
- val := vm.stack[vm.sp-1]
- vm.r.toObject(val).self.defineOwnPropertyStr("name", PropertyDescriptor{
- Value: propName,
- Configurable: FLAG_TRUE,
- }, true)
- obj.setOwn(propName, val, true)
- vm.sp -= 2
- vm.pc++
- }
- type _setElemP struct{}
- var setElemP _setElemP
- func (_setElemP) exec(vm *vm) {
- obj := vm.stack[vm.sp-3].ToObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- obj.setOwn(propName, val, false)
- vm.sp -= 3
- vm.pc++
- }
- type _setElemStrict struct{}
- var setElemStrict _setElemStrict
- func (_setElemStrict) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-3])
- propName := toPropertyKey(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- obj.setOwn(propName, val, true)
- vm.sp -= 2
- vm.stack[vm.sp-1] = val
- vm.pc++
- }
- type _setElemStrictP struct{}
- var setElemStrictP _setElemStrictP
- func (_setElemStrictP) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-3])
- propName := toPropertyKey(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- obj.setOwn(propName, val, true)
- vm.sp -= 3
- vm.pc++
- }
- type _deleteElem struct{}
- var deleteElem _deleteElem
- func (_deleteElem) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-2])
- propName := toPropertyKey(vm.stack[vm.sp-1])
- if obj.delete(propName, false) {
- vm.stack[vm.sp-2] = valueTrue
- } else {
- vm.stack[vm.sp-2] = valueFalse
- }
- vm.sp--
- vm.pc++
- }
- type _deleteElemStrict struct{}
- var deleteElemStrict _deleteElemStrict
- func (_deleteElemStrict) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-2])
- propName := toPropertyKey(vm.stack[vm.sp-1])
- obj.delete(propName, true)
- vm.stack[vm.sp-2] = valueTrue
- vm.sp--
- vm.pc++
- }
- type deleteProp unistring.String
- func (d deleteProp) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-1])
- if obj.self.deleteStr(unistring.String(d), false) {
- vm.stack[vm.sp-1] = valueTrue
- } else {
- vm.stack[vm.sp-1] = valueFalse
- }
- vm.pc++
- }
- type deletePropStrict unistring.String
- func (d deletePropStrict) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-1])
- obj.self.deleteStr(unistring.String(d), true)
- vm.stack[vm.sp-1] = valueTrue
- vm.pc++
- }
- type getPropRef unistring.String
- func (p getPropRef) exec(vm *vm) {
- vm.refStack = append(vm.refStack, &objRef{
- base: vm.stack[vm.sp-1].ToObject(vm.r).self,
- name: unistring.String(p),
- })
- vm.sp--
- vm.pc++
- }
- type getPropRefStrict unistring.String
- func (p getPropRefStrict) exec(vm *vm) {
- vm.refStack = append(vm.refStack, &objRef{
- base: vm.stack[vm.sp-1].ToObject(vm.r).self,
- name: unistring.String(p),
- strict: true,
- })
- vm.sp--
- vm.pc++
- }
- type setProp unistring.String
- func (p setProp) exec(vm *vm) {
- val := vm.stack[vm.sp-1]
- vm.stack[vm.sp-2].ToObject(vm.r).self.setOwnStr(unistring.String(p), val, false)
- vm.stack[vm.sp-2] = val
- vm.sp--
- vm.pc++
- }
- type setPropP unistring.String
- func (p setPropP) exec(vm *vm) {
- val := vm.stack[vm.sp-1]
- vm.stack[vm.sp-2].ToObject(vm.r).self.setOwnStr(unistring.String(p), val, false)
- vm.sp -= 2
- vm.pc++
- }
- type setPropStrict unistring.String
- func (p setPropStrict) exec(vm *vm) {
- obj := vm.stack[vm.sp-2]
- val := vm.stack[vm.sp-1]
- obj1 := vm.r.toObject(obj)
- obj1.self.setOwnStr(unistring.String(p), val, true)
- vm.stack[vm.sp-2] = val
- vm.sp--
- vm.pc++
- }
- type setPropStrictP unistring.String
- func (p setPropStrictP) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- obj.self.setOwnStr(unistring.String(p), val, true)
- vm.sp -= 2
- vm.pc++
- }
- type setProp1 unistring.String
- func (p setProp1) exec(vm *vm) {
- vm.r.toObject(vm.stack[vm.sp-2]).self._putProp(unistring.String(p), vm.stack[vm.sp-1], true, true, true)
- vm.sp--
- vm.pc++
- }
- type _setProto struct{}
- var setProto _setProto
- func (_setProto) exec(vm *vm) {
- vm.r.toObject(vm.stack[vm.sp-2]).self.setProto(vm.r.toProto(vm.stack[vm.sp-1]), true)
- vm.sp--
- vm.pc++
- }
- type setPropGetter unistring.String
- func (s setPropGetter) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- vm.r.toObject(val).self.defineOwnPropertyStr("name", PropertyDescriptor{
- Value: asciiString("get ").concat(stringValueFromRaw(val.string())),
- Configurable: FLAG_TRUE,
- }, true)
- descr := PropertyDescriptor{
- Getter: val,
- Configurable: FLAG_TRUE,
- Enumerable: FLAG_TRUE,
- }
- obj.self.defineOwnPropertyStr(unistring.String(s), descr, false)
- vm.sp--
- vm.pc++
- }
- type setPropSetter unistring.String
- func (s setPropSetter) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-2])
- val := vm.stack[vm.sp-1]
- vm.r.toObject(val).self.defineOwnPropertyStr("name", PropertyDescriptor{
- Value: asciiString("set ").concat(stringValueFromRaw(val.string())),
- Configurable: FLAG_TRUE,
- }, true)
- descr := PropertyDescriptor{
- Setter: val,
- Configurable: FLAG_TRUE,
- Enumerable: FLAG_TRUE,
- }
- obj.self.defineOwnPropertyStr(unistring.String(s), descr, false)
- vm.sp--
- vm.pc++
- }
- type _setPropGetter1 struct{}
- var setPropGetter1 _setPropGetter1
- func (s _setPropGetter1) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-3])
- propName := vm.stack[vm.sp-2]
- val := vm.stack[vm.sp-1]
- vm.r.toObject(val).self.defineOwnPropertyStr("name", PropertyDescriptor{
- Value: asciiString("get ").concat(stringValueFromRaw(val.string())),
- Configurable: FLAG_TRUE,
- }, true)
- descr := PropertyDescriptor{
- Getter: val,
- Configurable: FLAG_TRUE,
- Enumerable: FLAG_TRUE,
- }
- obj.defineOwnProperty(propName, descr, false)
- vm.sp -= 2
- vm.pc++
- }
- type _setPropSetter1 struct{}
- var setPropSetter1 _setPropSetter1
- func (s _setPropSetter1) exec(vm *vm) {
- obj := vm.r.toObject(vm.stack[vm.sp-3])
- propName := vm.stack[vm.sp-2]
- val := vm.stack[vm.sp-1]
- vm.r.toObject(val).self.defineOwnPropertyStr("name", PropertyDescriptor{
- Value: asciiString("set ").concat(stringValueFromRaw(val.string())),
- Configurable: FLAG_TRUE,
- }, true)
- descr := PropertyDescriptor{
- Setter: val,
- Configurable: FLAG_TRUE,
- Enumerable: FLAG_TRUE,
- }
- obj.defineOwnProperty(propName, descr, false)
- vm.sp -= 2
- vm.pc++
- }
- type getProp unistring.String
- func (g getProp) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- obj := v.baseObject(vm.r)
- if obj == nil {
- panic(vm.r.NewTypeError("Cannot read property '%s' of undefined", g))
- }
- vm.stack[vm.sp-1] = nilSafe(obj.self.getStr(unistring.String(g), v))
- vm.pc++
- }
- type getPropCallee unistring.String
- func (g getPropCallee) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- obj := v.baseObject(vm.r)
- n := unistring.String(g)
- if obj == nil {
- panic(vm.r.NewTypeError("Cannot read property '%s' of undefined or null", n))
- }
- prop := obj.self.getStr(n, v)
- if prop == nil {
- prop = memberUnresolved{valueUnresolved{r: vm.r, ref: n}}
- }
- vm.stack[vm.sp-1] = prop
- vm.pc++
- }
- type _getElem struct{}
- var getElem _getElem
- func (_getElem) exec(vm *vm) {
- v := vm.stack[vm.sp-2]
- obj := v.baseObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-1])
- if obj == nil {
- panic(vm.r.NewTypeError("Cannot read property '%s' of undefined", propName.String()))
- }
- vm.stack[vm.sp-2] = nilSafe(obj.get(propName, v))
- vm.sp--
- vm.pc++
- }
- type _getKey struct{}
- var getKey _getKey
- func (_getKey) exec(vm *vm) {
- v := vm.stack[vm.sp-2]
- obj := v.baseObject(vm.r)
- propName := vm.stack[vm.sp-1]
- if obj == nil {
- panic(vm.r.NewTypeError("Cannot read property '%s' of undefined", propName.String()))
- }
- vm.stack[vm.sp-2] = nilSafe(obj.get(propName, v))
- vm.sp--
- vm.pc++
- }
- type _getElemCallee struct{}
- var getElemCallee _getElemCallee
- func (_getElemCallee) exec(vm *vm) {
- v := vm.stack[vm.sp-2]
- obj := v.baseObject(vm.r)
- propName := toPropertyKey(vm.stack[vm.sp-1])
- if obj == nil {
- panic(vm.r.NewTypeError("Cannot read property '%s' of undefined", propName.String()))
- }
- prop := obj.get(propName, v)
- if prop == nil {
- prop = memberUnresolved{valueUnresolved{r: vm.r, ref: propName.string()}}
- }
- vm.stack[vm.sp-2] = prop
- vm.sp--
- vm.pc++
- }
- type _dup struct{}
- var dup _dup
- func (_dup) exec(vm *vm) {
- vm.push(vm.stack[vm.sp-1])
- vm.pc++
- }
- type dupN uint32
- func (d dupN) exec(vm *vm) {
- vm.push(vm.stack[vm.sp-1-int(d)])
- vm.pc++
- }
- type rdupN uint32
- func (d rdupN) exec(vm *vm) {
- vm.stack[vm.sp-1-int(d)] = vm.stack[vm.sp-1]
- vm.pc++
- }
- type _newObject struct{}
- var newObject _newObject
- func (_newObject) exec(vm *vm) {
- vm.push(vm.r.NewObject())
- vm.pc++
- }
- type newArray uint32
- func (l newArray) exec(vm *vm) {
- values := make([]Value, 0, l)
- vm.push(vm.r.newArrayValues(values))
- vm.pc++
- }
- type _pushArrayItem struct{}
- var pushArrayItem _pushArrayItem
- func (_pushArrayItem) exec(vm *vm) {
- arr := vm.stack[vm.sp-2].(*Object).self.(*arrayObject)
- if arr.length < math.MaxUint32 {
- arr.length++
- } else {
- panic(vm.r.newError(vm.r.global.RangeError, "Invalid array length"))
- }
- val := vm.stack[vm.sp-1]
- arr.values = append(arr.values, val)
- if val != nil {
- arr.objCount++
- }
- vm.sp--
- vm.pc++
- }
- type _pushArraySpread struct{}
- var pushArraySpread _pushArraySpread
- func (_pushArraySpread) exec(vm *vm) {
- arr := vm.stack[vm.sp-2].(*Object).self.(*arrayObject)
- vm.r.iterate(vm.r.getIterator(vm.stack[vm.sp-1], nil), func(val Value) {
- if arr.length < math.MaxUint32 {
- arr.length++
- } else {
- panic(vm.r.newError(vm.r.global.RangeError, "Invalid array length"))
- }
- arr.values = append(arr.values, val)
- arr.objCount++
- })
- vm.sp--
- vm.pc++
- }
- type _pushSpread struct{}
- var pushSpread _pushSpread
- func (_pushSpread) exec(vm *vm) {
- vm.sp--
- obj := vm.stack[vm.sp]
- vm.r.iterate(vm.r.getIterator(obj, nil), func(val Value) {
- vm.push(val)
- })
- vm.pc++
- }
- type _newArrayFromIter struct{}
- var newArrayFromIter _newArrayFromIter
- func (_newArrayFromIter) exec(vm *vm) {
- var values []Value
- l := len(vm.iterStack) - 1
- iter := vm.iterStack[l].iter
- vm.iterStack[l] = iterStackItem{}
- vm.iterStack = vm.iterStack[:l]
- vm.r.iterate(iter, func(val Value) {
- values = append(values, val)
- })
- vm.push(vm.r.newArrayValues(values))
- vm.pc++
- }
- type newRegexp struct {
- pattern *regexpPattern
- src valueString
- }
- func (n *newRegexp) exec(vm *vm) {
- vm.push(vm.r.newRegExpp(n.pattern.clone(), n.src, vm.r.global.RegExpPrototype).val)
- vm.pc++
- }
- func (vm *vm) setLocalLex(s int) {
- v := vm.stack[vm.sp-1]
- level := s >> 24
- idx := uint32(s & 0x00FFFFFF)
- stash := vm.stash
- for i := 0; i < level; i++ {
- stash = stash.outer
- }
- p := &stash.values[idx]
- if *p == nil {
- panic(errAccessBeforeInit)
- }
- *p = v
- vm.pc++
- }
- func (vm *vm) initLocal(s int) {
- v := vm.stack[vm.sp-1]
- level := s >> 24
- idx := uint32(s & 0x00FFFFFF)
- stash := vm.stash
- for i := 0; i < level; i++ {
- stash = stash.outer
- }
- stash.initByIdx(idx, v)
- vm.pc++
- }
- type storeStash uint32
- func (s storeStash) exec(vm *vm) {
- vm.initLocal(int(s))
- }
- type storeStashP uint32
- func (s storeStashP) exec(vm *vm) {
- vm.initLocal(int(s))
- vm.sp--
- }
- type storeStashLex uint32
- func (s storeStashLex) exec(vm *vm) {
- vm.setLocalLex(int(s))
- }
- type storeStashLexP uint32
- func (s storeStashLexP) exec(vm *vm) {
- vm.setLocalLex(int(s))
- vm.sp--
- }
- type initStash uint32
- func (s initStash) exec(vm *vm) {
- vm.initLocal(int(s))
- vm.sp--
- }
- type initGlobal unistring.String
- func (s initGlobal) exec(vm *vm) {
- vm.sp--
- vm.r.global.stash.initByName(unistring.String(s), vm.stack[vm.sp])
- vm.pc++
- }
- type resolveVar1 unistring.String
- func (s resolveVar1) exec(vm *vm) {
- name := unistring.String(s)
- var ref ref
- for stash := vm.stash; stash != nil; stash = stash.outer {
- ref = stash.getRefByName(name, false)
- if ref != nil {
- goto end
- }
- }
- ref = &objRef{
- base: vm.r.globalObject.self,
- name: name,
- }
- end:
- vm.refStack = append(vm.refStack, ref)
- vm.pc++
- }
- type deleteVar unistring.String
- func (d deleteVar) exec(vm *vm) {
- name := unistring.String(d)
- ret := true
- for stash := vm.stash; stash != nil; stash = stash.outer {
- if stash.obj != nil {
- if stashObjHas(stash.obj, name) {
- ret = stash.obj.self.deleteStr(name, false)
- goto end
- }
- } else {
- if idx, exists := stash.names[name]; exists {
- if idx&(maskVar|maskDeletable) == maskVar|maskDeletable {
- stash.deleteBinding(name)
- } else {
- ret = false
- }
- goto end
- }
- }
- }
- if vm.r.globalObject.self.hasPropertyStr(name) {
- ret = vm.r.globalObject.self.deleteStr(name, false)
- }
- end:
- if ret {
- vm.push(valueTrue)
- } else {
- vm.push(valueFalse)
- }
- vm.pc++
- }
- type deleteGlobal unistring.String
- func (d deleteGlobal) exec(vm *vm) {
- name := unistring.String(d)
- var ret bool
- if vm.r.globalObject.self.hasPropertyStr(name) {
- ret = vm.r.globalObject.self.deleteStr(name, false)
- if ret {
- delete(vm.r.global.varNames, name)
- }
- } else {
- ret = true
- }
- if ret {
- vm.push(valueTrue)
- } else {
- vm.push(valueFalse)
- }
- vm.pc++
- }
- type resolveVar1Strict unistring.String
- func (s resolveVar1Strict) exec(vm *vm) {
- name := unistring.String(s)
- var ref ref
- for stash := vm.stash; stash != nil; stash = stash.outer {
- ref = stash.getRefByName(name, true)
- if ref != nil {
- goto end
- }
- }
- if vm.r.globalObject.self.hasPropertyStr(name) {
- ref = &objRef{
- base: vm.r.globalObject.self,
- name: name,
- strict: true,
- }
- goto end
- }
- ref = &unresolvedRef{
- runtime: vm.r,
- name: name,
- }
- end:
- vm.refStack = append(vm.refStack, ref)
- vm.pc++
- }
- type setGlobal unistring.String
- func (s setGlobal) exec(vm *vm) {
- vm.r.setGlobal(unistring.String(s), vm.peek(), false)
- vm.pc++
- }
- type setGlobalStrict unistring.String
- func (s setGlobalStrict) exec(vm *vm) {
- vm.r.setGlobal(unistring.String(s), vm.peek(), true)
- vm.pc++
- }
- // Load a var from stash
- type loadStash uint32
- func (g loadStash) exec(vm *vm) {
- level := int(g >> 24)
- idx := uint32(g & 0x00FFFFFF)
- stash := vm.stash
- for i := 0; i < level; i++ {
- stash = stash.outer
- }
- vm.push(nilSafe(stash.getByIdx(idx)))
- vm.pc++
- }
- // Load a lexical binding from stash
- type loadStashLex uint32
- func (g loadStashLex) exec(vm *vm) {
- level := int(g >> 24)
- idx := uint32(g & 0x00FFFFFF)
- stash := vm.stash
- for i := 0; i < level; i++ {
- stash = stash.outer
- }
- v := stash.getByIdx(idx)
- if v == nil {
- panic(errAccessBeforeInit)
- }
- vm.push(v)
- vm.pc++
- }
- // scan dynamic stashes up to the given level (encoded as 8 most significant bits of idx), if not found
- // return the indexed var binding value from stash
- type loadMixed struct {
- name unistring.String
- idx uint32
- callee bool
- }
- func (g *loadMixed) exec(vm *vm) {
- level := int(g.idx >> 24)
- idx := g.idx & 0x00FFFFFF
- stash := vm.stash
- name := g.name
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- if stash != nil {
- vm.push(nilSafe(stash.getByIdx(idx)))
- }
- end:
- vm.pc++
- }
- // scan dynamic stashes up to the given level (encoded as 8 most significant bits of idx), if not found
- // return the indexed lexical binding value from stash
- type loadMixedLex loadMixed
- func (g *loadMixedLex) exec(vm *vm) {
- level := int(g.idx >> 24)
- idx := g.idx & 0x00FFFFFF
- stash := vm.stash
- name := g.name
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- if stash != nil {
- v := stash.getByIdx(idx)
- if v == nil {
- panic(errAccessBeforeInit)
- }
- vm.push(v)
- }
- end:
- vm.pc++
- }
- // scan dynamic stashes up to the given level (encoded as 8 most significant bits of idx), if not found
- // return the indexed var binding value from stack
- type loadMixedStack struct {
- name unistring.String
- idx int
- level uint8
- callee bool
- }
- // same as loadMixedStack, but the args have been moved to stash (therefore stack layout is different)
- type loadMixedStack1 loadMixedStack
- func (g *loadMixedStack) exec(vm *vm) {
- stash := vm.stash
- name := g.name
- level := int(g.level)
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- loadStack(g.idx).exec(vm)
- return
- end:
- vm.pc++
- }
- func (g *loadMixedStack1) exec(vm *vm) {
- stash := vm.stash
- name := g.name
- level := int(g.level)
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- loadStack1(g.idx).exec(vm)
- return
- end:
- vm.pc++
- }
- type loadMixedStackLex loadMixedStack
- // same as loadMixedStackLex but when the arguments have been moved into stash
- type loadMixedStack1Lex loadMixedStack
- func (g *loadMixedStackLex) exec(vm *vm) {
- stash := vm.stash
- name := g.name
- level := int(g.level)
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- loadStackLex(g.idx).exec(vm)
- return
- end:
- vm.pc++
- }
- func (g *loadMixedStack1Lex) exec(vm *vm) {
- stash := vm.stash
- name := g.name
- level := int(g.level)
- for i := 0; i < level; i++ {
- if v, found := stash.getByName(name); found {
- if g.callee {
- if stash.obj != nil {
- vm.push(stash.obj)
- } else {
- vm.push(_undefined)
- }
- }
- vm.push(v)
- goto end
- }
- stash = stash.outer
- }
- if g.callee {
- vm.push(_undefined)
- }
- loadStack1Lex(g.idx).exec(vm)
- return
- end:
- vm.pc++
- }
- type resolveMixed struct {
- name unistring.String
- idx uint32
- typ varType
- strict bool
- }
- func newStashRef(typ varType, name unistring.String, v *[]Value, idx int) ref {
- switch typ {
- case varTypeVar:
- return &stashRef{
- n: name,
- v: v,
- idx: idx,
- }
- case varTypeLet:
- return &stashRefLex{
- stashRef: stashRef{
- n: name,
- v: v,
- idx: idx,
- },
- }
- case varTypeConst, varTypeStrictConst:
- return &stashRefConst{
- stashRefLex: stashRefLex{
- stashRef: stashRef{
- n: name,
- v: v,
- idx: idx,
- },
- },
- strictConst: typ == varTypeStrictConst,
- }
- }
- panic("unsupported var type")
- }
- func (r *resolveMixed) exec(vm *vm) {
- level := int(r.idx >> 24)
- idx := r.idx & 0x00FFFFFF
- stash := vm.stash
- var ref ref
- for i := 0; i < level; i++ {
- ref = stash.getRefByName(r.name, r.strict)
- if ref != nil {
- goto end
- }
- stash = stash.outer
- }
- if stash != nil {
- ref = newStashRef(r.typ, r.name, &stash.values, int(idx))
- goto end
- }
- ref = &unresolvedRef{
- runtime: vm.r,
- name: r.name,
- }
- end:
- vm.refStack = append(vm.refStack, ref)
- vm.pc++
- }
- type resolveMixedStack struct {
- name unistring.String
- idx int
- typ varType
- level uint8
- strict bool
- }
- type resolveMixedStack1 resolveMixedStack
- func (r *resolveMixedStack) exec(vm *vm) {
- level := int(r.level)
- stash := vm.stash
- var ref ref
- var idx int
- for i := 0; i < level; i++ {
- ref = stash.getRefByName(r.name, r.strict)
- if ref != nil {
- goto end
- }
- stash = stash.outer
- }
- if r.idx > 0 {
- idx = vm.sb + vm.args + r.idx
- } else {
- idx = vm.sb + r.idx
- }
- ref = newStashRef(r.typ, r.name, (*[]Value)(&vm.stack), idx)
- end:
- vm.refStack = append(vm.refStack, ref)
- vm.pc++
- }
- func (r *resolveMixedStack1) exec(vm *vm) {
- level := int(r.level)
- stash := vm.stash
- var ref ref
- for i := 0; i < level; i++ {
- ref = stash.getRefByName(r.name, r.strict)
- if ref != nil {
- goto end
- }
- stash = stash.outer
- }
- ref = newStashRef(r.typ, r.name, (*[]Value)(&vm.stack), vm.sb+r.idx)
- end:
- vm.refStack = append(vm.refStack, ref)
- vm.pc++
- }
- type _getValue struct{}
- var getValue _getValue
- func (_getValue) exec(vm *vm) {
- ref := vm.refStack[len(vm.refStack)-1]
- if v := ref.get(); v != nil {
- vm.push(v)
- } else {
- vm.r.throwReferenceError(ref.refname())
- panic("Unreachable")
- }
- vm.pc++
- }
- type _putValue struct{}
- var putValue _putValue
- func (_putValue) exec(vm *vm) {
- l := len(vm.refStack) - 1
- ref := vm.refStack[l]
- vm.refStack[l] = nil
- vm.refStack = vm.refStack[:l]
- ref.set(vm.stack[vm.sp-1])
- vm.pc++
- }
- type _putValueP struct{}
- var putValueP _putValueP
- func (_putValueP) exec(vm *vm) {
- l := len(vm.refStack) - 1
- ref := vm.refStack[l]
- vm.refStack[l] = nil
- vm.refStack = vm.refStack[:l]
- ref.set(vm.stack[vm.sp-1])
- vm.sp--
- vm.pc++
- }
- type loadDynamic unistring.String
- func (n loadDynamic) exec(vm *vm) {
- name := unistring.String(n)
- var val Value
- for stash := vm.stash; stash != nil; stash = stash.outer {
- if v, exists := stash.getByName(name); exists {
- val = v
- break
- }
- }
- if val == nil {
- val = vm.r.globalObject.self.getStr(name, nil)
- if val == nil {
- vm.r.throwReferenceError(name)
- }
- }
- vm.push(val)
- vm.pc++
- }
- type loadDynamicRef unistring.String
- func (n loadDynamicRef) exec(vm *vm) {
- name := unistring.String(n)
- var val Value
- for stash := vm.stash; stash != nil; stash = stash.outer {
- if v, exists := stash.getByName(name); exists {
- val = v
- break
- }
- }
- if val == nil {
- val = vm.r.globalObject.self.getStr(name, nil)
- if val == nil {
- val = valueUnresolved{r: vm.r, ref: name}
- }
- }
- vm.push(val)
- vm.pc++
- }
- type loadDynamicCallee unistring.String
- func (n loadDynamicCallee) exec(vm *vm) {
- name := unistring.String(n)
- var val Value
- var callee *Object
- for stash := vm.stash; stash != nil; stash = stash.outer {
- if v, exists := stash.getByName(name); exists {
- callee = stash.obj
- val = v
- break
- }
- }
- if val == nil {
- val = vm.r.globalObject.self.getStr(name, nil)
- if val == nil {
- val = valueUnresolved{r: vm.r, ref: name}
- }
- }
- if callee != nil {
- vm.push(callee)
- } else {
- vm.push(_undefined)
- }
- vm.push(val)
- vm.pc++
- }
- type _pop struct{}
- var pop _pop
- func (_pop) exec(vm *vm) {
- vm.sp--
- vm.pc++
- }
- func (vm *vm) callEval(n int, strict bool) {
- if vm.r.toObject(vm.stack[vm.sp-n-1]) == vm.r.global.Eval {
- if n > 0 {
- srcVal := vm.stack[vm.sp-n]
- if src, ok := srcVal.(valueString); ok {
- var this Value
- if vm.sb >= 0 {
- this = vm.stack[vm.sb]
- } else {
- this = vm.r.globalObject
- }
- ret := vm.r.eval(src, true, strict, this)
- vm.stack[vm.sp-n-2] = ret
- } else {
- vm.stack[vm.sp-n-2] = srcVal
- }
- } else {
- vm.stack[vm.sp-n-2] = _undefined
- }
- vm.sp -= n + 1
- vm.pc++
- } else {
- call(n).exec(vm)
- }
- }
- type callEval uint32
- func (numargs callEval) exec(vm *vm) {
- vm.callEval(int(numargs), false)
- }
- type callEvalStrict uint32
- func (numargs callEvalStrict) exec(vm *vm) {
- vm.callEval(int(numargs), true)
- }
- type _callEvalVariadic struct{}
- var callEvalVariadic _callEvalVariadic
- func (_callEvalVariadic) exec(vm *vm) {
- vm.callEval(vm.countVariadicArgs()-2, false)
- }
- type _callEvalVariadicStrict struct{}
- var callEvalVariadicStrict _callEvalVariadicStrict
- func (_callEvalVariadicStrict) exec(vm *vm) {
- vm.callEval(vm.countVariadicArgs()-2, true)
- }
- type _boxThis struct{}
- var boxThis _boxThis
- func (_boxThis) exec(vm *vm) {
- v := vm.stack[vm.sb]
- if v == _undefined || v == _null {
- vm.stack[vm.sb] = vm.r.globalObject
- } else {
- vm.stack[vm.sb] = v.ToObject(vm.r)
- }
- vm.pc++
- }
- var variadicMarker Value = newSymbol(asciiString("[variadic marker]"))
- type _startVariadic struct{}
- var startVariadic _startVariadic
- func (_startVariadic) exec(vm *vm) {
- vm.push(variadicMarker)
- vm.pc++
- }
- type _callVariadic struct{}
- var callVariadic _callVariadic
- func (vm *vm) countVariadicArgs() int {
- count := 0
- for i := vm.sp - 1; i >= 0; i-- {
- if vm.stack[i] == variadicMarker {
- return count
- }
- count++
- }
- panic("Variadic marker was not found. Compiler bug.")
- }
- func (_callVariadic) exec(vm *vm) {
- call(vm.countVariadicArgs() - 2).exec(vm)
- }
- type _endVariadic struct{}
- var endVariadic _endVariadic
- func (_endVariadic) exec(vm *vm) {
- vm.sp--
- vm.stack[vm.sp-1] = vm.stack[vm.sp]
- vm.pc++
- }
- type call uint32
- func (numargs call) exec(vm *vm) {
- // this
- // callee
- // arg0
- // ...
- // arg<numargs-1>
- n := int(numargs)
- v := vm.stack[vm.sp-n-1] // callee
- obj := vm.toCallee(v)
- repeat:
- switch f := obj.self.(type) {
- case *funcObject:
- vm.pc++
- vm.pushCtx()
- vm.args = n
- vm.prg = f.prg
- vm.stash = f.stash
- vm.pc = 0
- vm.stack[vm.sp-n-1], vm.stack[vm.sp-n-2] = vm.stack[vm.sp-n-2], vm.stack[vm.sp-n-1]
- return
- case *nativeFuncObject:
- vm._nativeCall(f, n)
- case *boundFuncObject:
- vm._nativeCall(&f.nativeFuncObject, n)
- case *proxyObject:
- vm.pushCtx()
- vm.prg = nil
- vm.funcName = "proxy"
- ret := f.apply(FunctionCall{This: vm.stack[vm.sp-n-2], Arguments: vm.stack[vm.sp-n : vm.sp]})
- if ret == nil {
- ret = _undefined
- }
- vm.stack[vm.sp-n-2] = ret
- vm.popCtx()
- vm.sp -= n + 1
- vm.pc++
- case *lazyObject:
- obj.self = f.create(obj)
- goto repeat
- default:
- vm.r.typeErrorResult(true, "Not a function: %s", obj.toString())
- }
- }
- func (vm *vm) _nativeCall(f *nativeFuncObject, n int) {
- if f.f != nil {
- vm.pushCtx()
- vm.prg = nil
- vm.funcName = nilSafe(f.getStr("name", nil)).string()
- ret := f.f(FunctionCall{
- Arguments: vm.stack[vm.sp-n : vm.sp],
- This: vm.stack[vm.sp-n-2],
- })
- if ret == nil {
- ret = _undefined
- }
- vm.stack[vm.sp-n-2] = ret
- vm.popCtx()
- } else {
- vm.stack[vm.sp-n-2] = _undefined
- }
- vm.sp -= n + 1
- vm.pc++
- }
- func (vm *vm) clearStack() {
- sp := vm.sp
- stackTail := vm.stack[sp:]
- for i := range stackTail {
- stackTail[i] = nil
- }
- vm.stack = vm.stack[:sp]
- }
- type enterBlock struct {
- names map[unistring.String]uint32
- stashSize uint32
- stackSize uint32
- }
- func (e *enterBlock) exec(vm *vm) {
- if e.stashSize > 0 {
- vm.newStash()
- vm.stash.values = make([]Value, e.stashSize)
- if len(e.names) > 0 {
- vm.stash.names = e.names
- }
- }
- ss := int(e.stackSize)
- vm.stack.expand(vm.sp + ss - 1)
- vv := vm.stack[vm.sp : vm.sp+ss]
- for i := range vv {
- vv[i] = nil
- }
- vm.sp += ss
- vm.pc++
- }
- type enterCatchBlock struct {
- names map[unistring.String]uint32
- stashSize uint32
- stackSize uint32
- }
- func (e *enterCatchBlock) exec(vm *vm) {
- vm.newStash()
- vm.stash.values = make([]Value, e.stashSize)
- if len(e.names) > 0 {
- vm.stash.names = e.names
- }
- vm.sp--
- vm.stash.values[0] = vm.stack[vm.sp]
- ss := int(e.stackSize)
- vm.stack.expand(vm.sp + ss - 1)
- vv := vm.stack[vm.sp : vm.sp+ss]
- for i := range vv {
- vv[i] = nil
- }
- vm.sp += ss
- vm.pc++
- }
- type leaveBlock struct {
- stackSize uint32
- popStash bool
- }
- func (l *leaveBlock) exec(vm *vm) {
- if l.popStash {
- vm.stash = vm.stash.outer
- }
- if ss := l.stackSize; ss > 0 {
- vm.sp -= int(ss)
- }
- vm.pc++
- }
- type enterFunc struct {
- names map[unistring.String]uint32
- stashSize uint32
- stackSize uint32
- numArgs uint32
- argsToStash bool
- extensible bool
- }
- func (e *enterFunc) exec(vm *vm) {
- // Input stack:
- //
- // callee
- // this
- // arg0
- // ...
- // argN
- // <- sp
- // Output stack:
- //
- // this <- sb
- // <local stack vars...>
- // <- sp
- sp := vm.sp
- vm.sb = sp - vm.args - 1
- vm.newStash()
- stash := vm.stash
- stash.variable = true
- stash.values = make([]Value, e.stashSize)
- if len(e.names) > 0 {
- if e.extensible {
- m := make(map[unistring.String]uint32, len(e.names))
- for name, idx := range e.names {
- m[name] = idx
- }
- stash.names = m
- } else {
- stash.names = e.names
- }
- }
- ss := int(e.stackSize)
- ea := 0
- if e.argsToStash {
- offset := vm.args - int(e.numArgs)
- copy(stash.values, vm.stack[sp-vm.args:sp])
- if offset > 0 {
- vm.stash.extraArgs = make([]Value, offset)
- copy(stash.extraArgs, vm.stack[sp-offset:])
- } else {
- vv := stash.values[vm.args:e.numArgs]
- for i := range vv {
- vv[i] = _undefined
- }
- }
- sp -= vm.args
- } else {
- d := int(e.numArgs) - vm.args
- if d > 0 {
- ss += d
- ea = d
- vm.args = int(e.numArgs)
- }
- }
- vm.stack.expand(sp + ss - 1)
- if ea > 0 {
- vv := vm.stack[sp : vm.sp+ea]
- for i := range vv {
- vv[i] = _undefined
- }
- }
- vv := vm.stack[sp+ea : sp+ss]
- for i := range vv {
- vv[i] = nil
- }
- vm.sp = sp + ss
- vm.pc++
- }
- // Similar to enterFunc, but for when arguments may be accessed before they are initialised,
- // e.g. by an eval() code or from a closure, or from an earlier initialiser code.
- // In this case the arguments remain on stack, first argsToCopy of them are copied to the stash.
- type enterFunc1 struct {
- names map[unistring.String]uint32
- stashSize uint32
- numArgs uint32
- argsToCopy uint32
- extensible bool
- }
- func (e *enterFunc1) exec(vm *vm) {
- sp := vm.sp
- vm.sb = sp - vm.args - 1
- vm.newStash()
- stash := vm.stash
- stash.variable = true
- stash.values = make([]Value, e.stashSize)
- if len(e.names) > 0 {
- if e.extensible {
- m := make(map[unistring.String]uint32, len(e.names))
- for name, idx := range e.names {
- m[name] = idx
- }
- stash.names = m
- } else {
- stash.names = e.names
- }
- }
- offset := vm.args - int(e.argsToCopy)
- if offset > 0 {
- copy(stash.values, vm.stack[sp-vm.args:sp-offset])
- if offset := vm.args - int(e.numArgs); offset > 0 {
- vm.stash.extraArgs = make([]Value, offset)
- copy(stash.extraArgs, vm.stack[sp-offset:])
- }
- } else {
- copy(stash.values, vm.stack[sp-vm.args:sp])
- if int(e.argsToCopy) > vm.args {
- vv := stash.values[vm.args:e.argsToCopy]
- for i := range vv {
- vv[i] = _undefined
- }
- }
- }
- vm.pc++
- }
- // Finalises the initialisers section and starts the function body which has its own
- // scope. When used in conjunction with enterFunc1 adjustStack is set to true which
- // causes the arguments to be removed from the stack.
- type enterFuncBody struct {
- enterBlock
- extensible bool
- adjustStack bool
- }
- func (e *enterFuncBody) exec(vm *vm) {
- if e.stashSize > 0 || e.extensible {
- vm.newStash()
- stash := vm.stash
- stash.variable = true
- stash.values = make([]Value, e.stashSize)
- if len(e.names) > 0 {
- if e.extensible {
- m := make(map[unistring.String]uint32, len(e.names))
- for name, idx := range e.names {
- m[name] = idx
- }
- stash.names = m
- } else {
- stash.names = e.names
- }
- }
- }
- sp := vm.sp
- if e.adjustStack {
- sp -= vm.args
- }
- nsp := sp + int(e.stackSize)
- if e.stackSize > 0 {
- vm.stack.expand(nsp - 1)
- vv := vm.stack[sp:nsp]
- for i := range vv {
- vv[i] = nil
- }
- }
- vm.sp = nsp
- vm.pc++
- }
- type _ret struct{}
- var ret _ret
- func (_ret) exec(vm *vm) {
- // callee -3
- // this -2 <- sb
- // retval -1
- vm.stack[vm.sb-1] = vm.stack[vm.sp-1]
- vm.sp = vm.sb
- vm.popCtx()
- if vm.pc < 0 {
- vm.halt = true
- }
- }
- type enterFuncStashless struct {
- stackSize uint32
- args uint32
- }
- func (e *enterFuncStashless) exec(vm *vm) {
- sp := vm.sp
- vm.sb = sp - vm.args - 1
- d := int(e.args) - vm.args
- if d > 0 {
- ss := sp + int(e.stackSize) + d
- vm.stack.expand(ss)
- vv := vm.stack[sp : sp+d]
- for i := range vv {
- vv[i] = _undefined
- }
- vv = vm.stack[sp+d : ss]
- for i := range vv {
- vv[i] = nil
- }
- vm.args = int(e.args)
- vm.sp = ss
- } else {
- if e.stackSize > 0 {
- ss := sp + int(e.stackSize)
- vm.stack.expand(ss)
- vv := vm.stack[sp:ss]
- for i := range vv {
- vv[i] = nil
- }
- vm.sp = ss
- }
- }
- vm.pc++
- }
- type newFunc struct {
- prg *Program
- name unistring.String
- length uint32
- strict bool
- srcStart, srcEnd uint32
- }
- func (n *newFunc) exec(vm *vm) {
- obj := vm.r.newFunc(n.name, int(n.length), n.strict)
- obj.prg = n.prg
- obj.stash = vm.stash
- obj.src = n.prg.src.Source()[n.srcStart:n.srcEnd]
- vm.push(obj.val)
- vm.pc++
- }
- func (vm *vm) alreadyDeclared(name unistring.String) Value {
- return vm.r.newError(vm.r.global.SyntaxError, "Identifier '%s' has already been declared", name)
- }
- func (vm *vm) checkBindVarsGlobal(names []unistring.String) {
- o := vm.r.globalObject.self
- sn := vm.r.global.stash.names
- if o, ok := o.(*baseObject); ok {
- // shortcut
- for _, name := range names {
- if !o.hasOwnPropertyStr(name) && !o.extensible {
- panic(vm.r.NewTypeError("Cannot define global variable '%s', global object is not extensible", name))
- }
- if _, exists := sn[name]; exists {
- panic(vm.alreadyDeclared(name))
- }
- }
- } else {
- for _, name := range names {
- if !o.hasOwnPropertyStr(name) && !o.isExtensible() {
- panic(vm.r.NewTypeError("Cannot define global variable '%s', global object is not extensible", name))
- }
- if _, exists := sn[name]; exists {
- panic(vm.alreadyDeclared(name))
- }
- }
- }
- }
- func (vm *vm) createGlobalVarBindings(names []unistring.String, d bool) {
- globalVarNames := vm.r.global.varNames
- if globalVarNames == nil {
- globalVarNames = make(map[unistring.String]struct{})
- vm.r.global.varNames = globalVarNames
- }
- o := vm.r.globalObject.self
- if o, ok := o.(*baseObject); ok {
- for _, name := range names {
- if !o.hasOwnPropertyStr(name) && o.extensible {
- o._putProp(name, _undefined, true, true, d)
- }
- globalVarNames[name] = struct{}{}
- }
- } else {
- var cf Flag
- if d {
- cf = FLAG_TRUE
- } else {
- cf = FLAG_FALSE
- }
- for _, name := range names {
- if !o.hasOwnPropertyStr(name) && o.isExtensible() {
- o.defineOwnPropertyStr(name, PropertyDescriptor{
- Value: _undefined,
- Writable: FLAG_TRUE,
- Enumerable: FLAG_TRUE,
- Configurable: cf,
- }, true)
- o.setOwnStr(name, _undefined, false)
- }
- globalVarNames[name] = struct{}{}
- }
- }
- }
- func (vm *vm) createGlobalFuncBindings(names []unistring.String, d bool) {
- globalVarNames := vm.r.global.varNames
- if globalVarNames == nil {
- globalVarNames = make(map[unistring.String]struct{})
- vm.r.global.varNames = globalVarNames
- }
- o := vm.r.globalObject.self
- b := vm.sp - len(names)
- var shortcutObj *baseObject
- if o, ok := o.(*baseObject); ok {
- shortcutObj = o
- }
- for i, name := range names {
- var desc PropertyDescriptor
- prop := o.getOwnPropStr(name)
- desc.Value = vm.stack[b+i]
- if shortcutObj != nil && prop == nil && shortcutObj.extensible {
- shortcutObj._putProp(name, desc.Value, true, true, d)
- } else {
- if prop, ok := prop.(*valueProperty); ok && !prop.configurable {
- // no-op
- } else {
- desc.Writable = FLAG_TRUE
- desc.Enumerable = FLAG_TRUE
- if d {
- desc.Configurable = FLAG_TRUE
- } else {
- desc.Configurable = FLAG_FALSE
- }
- }
- if shortcutObj != nil {
- shortcutObj.defineOwnPropertyStr(name, desc, true)
- } else {
- o.defineOwnPropertyStr(name, desc, true)
- o.setOwnStr(name, desc.Value, false) // not a bug, see https://262.ecma-international.org/#sec-createglobalfunctionbinding
- }
- }
- globalVarNames[name] = struct{}{}
- }
- vm.sp = b
- }
- func (vm *vm) checkBindFuncsGlobal(names []unistring.String) {
- o := vm.r.globalObject.self
- sn := vm.r.global.stash.names
- for _, name := range names {
- if _, exists := sn[name]; exists {
- panic(vm.alreadyDeclared(name))
- }
- prop := o.getOwnPropStr(name)
- allowed := true
- switch prop := prop.(type) {
- case nil:
- allowed = o.isExtensible()
- case *valueProperty:
- allowed = prop.configurable || prop.getterFunc == nil && prop.setterFunc == nil && prop.writable && prop.enumerable
- }
- if !allowed {
- panic(vm.r.NewTypeError("Cannot redefine global function '%s'", name))
- }
- }
- }
- func (vm *vm) checkBindLexGlobal(names []unistring.String) {
- o := vm.r.globalObject.self
- s := &vm.r.global.stash
- for _, name := range names {
- if _, exists := vm.r.global.varNames[name]; exists {
- goto fail
- }
- if _, exists := s.names[name]; exists {
- goto fail
- }
- if prop, ok := o.getOwnPropStr(name).(*valueProperty); ok && !prop.configurable {
- goto fail
- }
- continue
- fail:
- panic(vm.alreadyDeclared(name))
- }
- }
- type bindVars struct {
- names []unistring.String
- deletable bool
- }
- func (d *bindVars) exec(vm *vm) {
- var target *stash
- for _, name := range d.names {
- for s := vm.stash; s != nil; s = s.outer {
- if idx, exists := s.names[name]; exists && idx&maskVar == 0 {
- panic(vm.alreadyDeclared(name))
- }
- if s.variable {
- target = s
- break
- }
- }
- }
- if target == nil {
- target = vm.stash
- }
- deletable := d.deletable
- for _, name := range d.names {
- target.createBinding(name, deletable)
- }
- vm.pc++
- }
- type bindGlobal struct {
- vars, funcs, lets, consts []unistring.String
- deletable bool
- }
- func (b *bindGlobal) exec(vm *vm) {
- vm.checkBindFuncsGlobal(b.funcs)
- vm.checkBindLexGlobal(b.lets)
- vm.checkBindLexGlobal(b.consts)
- vm.checkBindVarsGlobal(b.vars)
- s := &vm.r.global.stash
- for _, name := range b.lets {
- s.createLexBinding(name, false)
- }
- for _, name := range b.consts {
- s.createLexBinding(name, true)
- }
- vm.createGlobalFuncBindings(b.funcs, b.deletable)
- vm.createGlobalVarBindings(b.vars, b.deletable)
- vm.pc++
- }
- type jne int32
- func (j jne) exec(vm *vm) {
- vm.sp--
- if !vm.stack[vm.sp].ToBoolean() {
- vm.pc += int(j)
- } else {
- vm.pc++
- }
- }
- type jeq int32
- func (j jeq) exec(vm *vm) {
- vm.sp--
- if vm.stack[vm.sp].ToBoolean() {
- vm.pc += int(j)
- } else {
- vm.pc++
- }
- }
- type jeq1 int32
- func (j jeq1) exec(vm *vm) {
- if vm.stack[vm.sp-1].ToBoolean() {
- vm.pc += int(j)
- } else {
- vm.pc++
- }
- }
- type jneq1 int32
- func (j jneq1) exec(vm *vm) {
- if !vm.stack[vm.sp-1].ToBoolean() {
- vm.pc += int(j)
- } else {
- vm.pc++
- }
- }
- type jdef int32
- func (j jdef) exec(vm *vm) {
- if vm.stack[vm.sp-1] != _undefined {
- vm.pc += int(j)
- } else {
- vm.sp--
- vm.pc++
- }
- }
- type jdefP int32
- func (j jdefP) exec(vm *vm) {
- if vm.stack[vm.sp-1] != _undefined {
- vm.pc += int(j)
- } else {
- vm.pc++
- }
- vm.sp--
- }
- type _not struct{}
- var not _not
- func (_not) exec(vm *vm) {
- if vm.stack[vm.sp-1].ToBoolean() {
- vm.stack[vm.sp-1] = valueFalse
- } else {
- vm.stack[vm.sp-1] = valueTrue
- }
- vm.pc++
- }
- func toPrimitiveNumber(v Value) Value {
- if o, ok := v.(*Object); ok {
- return o.toPrimitiveNumber()
- }
- return v
- }
- func toPrimitive(v Value) Value {
- if o, ok := v.(*Object); ok {
- return o.toPrimitive()
- }
- return v
- }
- func cmp(px, py Value) Value {
- var ret bool
- var nx, ny float64
- if xs, ok := px.(valueString); ok {
- if ys, ok := py.(valueString); ok {
- ret = xs.compareTo(ys) < 0
- goto end
- }
- }
- if xi, ok := px.(valueInt); ok {
- if yi, ok := py.(valueInt); ok {
- ret = xi < yi
- goto end
- }
- }
- nx = px.ToFloat()
- ny = py.ToFloat()
- if math.IsNaN(nx) || math.IsNaN(ny) {
- return _undefined
- }
- ret = nx < ny
- end:
- if ret {
- return valueTrue
- }
- return valueFalse
- }
- type _op_lt struct{}
- var op_lt _op_lt
- func (_op_lt) exec(vm *vm) {
- left := toPrimitiveNumber(vm.stack[vm.sp-2])
- right := toPrimitiveNumber(vm.stack[vm.sp-1])
- r := cmp(left, right)
- if r == _undefined {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = r
- }
- vm.sp--
- vm.pc++
- }
- type _op_lte struct{}
- var op_lte _op_lte
- func (_op_lte) exec(vm *vm) {
- left := toPrimitiveNumber(vm.stack[vm.sp-2])
- right := toPrimitiveNumber(vm.stack[vm.sp-1])
- r := cmp(right, left)
- if r == _undefined || r == valueTrue {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = valueTrue
- }
- vm.sp--
- vm.pc++
- }
- type _op_gt struct{}
- var op_gt _op_gt
- func (_op_gt) exec(vm *vm) {
- left := toPrimitiveNumber(vm.stack[vm.sp-2])
- right := toPrimitiveNumber(vm.stack[vm.sp-1])
- r := cmp(right, left)
- if r == _undefined {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = r
- }
- vm.sp--
- vm.pc++
- }
- type _op_gte struct{}
- var op_gte _op_gte
- func (_op_gte) exec(vm *vm) {
- left := toPrimitiveNumber(vm.stack[vm.sp-2])
- right := toPrimitiveNumber(vm.stack[vm.sp-1])
- r := cmp(left, right)
- if r == _undefined || r == valueTrue {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = valueTrue
- }
- vm.sp--
- vm.pc++
- }
- type _op_eq struct{}
- var op_eq _op_eq
- func (_op_eq) exec(vm *vm) {
- if vm.stack[vm.sp-2].Equals(vm.stack[vm.sp-1]) {
- vm.stack[vm.sp-2] = valueTrue
- } else {
- vm.stack[vm.sp-2] = valueFalse
- }
- vm.sp--
- vm.pc++
- }
- type _op_neq struct{}
- var op_neq _op_neq
- func (_op_neq) exec(vm *vm) {
- if vm.stack[vm.sp-2].Equals(vm.stack[vm.sp-1]) {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = valueTrue
- }
- vm.sp--
- vm.pc++
- }
- type _op_strict_eq struct{}
- var op_strict_eq _op_strict_eq
- func (_op_strict_eq) exec(vm *vm) {
- if vm.stack[vm.sp-2].StrictEquals(vm.stack[vm.sp-1]) {
- vm.stack[vm.sp-2] = valueTrue
- } else {
- vm.stack[vm.sp-2] = valueFalse
- }
- vm.sp--
- vm.pc++
- }
- type _op_strict_neq struct{}
- var op_strict_neq _op_strict_neq
- func (_op_strict_neq) exec(vm *vm) {
- if vm.stack[vm.sp-2].StrictEquals(vm.stack[vm.sp-1]) {
- vm.stack[vm.sp-2] = valueFalse
- } else {
- vm.stack[vm.sp-2] = valueTrue
- }
- vm.sp--
- vm.pc++
- }
- type _op_instanceof struct{}
- var op_instanceof _op_instanceof
- func (_op_instanceof) exec(vm *vm) {
- left := vm.stack[vm.sp-2]
- right := vm.r.toObject(vm.stack[vm.sp-1])
- if instanceOfOperator(left, right) {
- vm.stack[vm.sp-2] = valueTrue
- } else {
- vm.stack[vm.sp-2] = valueFalse
- }
- vm.sp--
- vm.pc++
- }
- type _op_in struct{}
- var op_in _op_in
- func (_op_in) exec(vm *vm) {
- left := vm.stack[vm.sp-2]
- right := vm.r.toObject(vm.stack[vm.sp-1])
- if right.hasProperty(left) {
- vm.stack[vm.sp-2] = valueTrue
- } else {
- vm.stack[vm.sp-2] = valueFalse
- }
- vm.sp--
- vm.pc++
- }
- type try struct {
- catchOffset int32
- finallyOffset int32
- }
- func (t try) exec(vm *vm) {
- o := vm.pc
- vm.pc++
- ex := vm.runTry()
- if ex != nil && t.catchOffset > 0 {
- // run the catch block (in try)
- vm.pc = o + int(t.catchOffset)
- // TODO: if ex.val is an Error, set the stack property
- vm.push(ex.val)
- ex = vm.runTry()
- }
- if t.finallyOffset > 0 {
- pc := vm.pc
- // Run finally
- vm.pc = o + int(t.finallyOffset)
- vm.run()
- if vm.prg.code[vm.pc] == retFinally {
- vm.pc = pc
- } else {
- // break or continue out of finally, dropping exception
- ex = nil
- }
- }
- vm.halt = false
- if ex != nil {
- vm.pc = -1 // to prevent the current position from being captured in the stacktrace
- panic(ex)
- }
- }
- type _retFinally struct{}
- var retFinally _retFinally
- func (_retFinally) exec(vm *vm) {
- vm.pc++
- }
- type _throw struct{}
- var throw _throw
- func (_throw) exec(vm *vm) {
- panic(vm.stack[vm.sp-1])
- }
- type _newVariadic struct{}
- var newVariadic _newVariadic
- func (_newVariadic) exec(vm *vm) {
- _new(vm.countVariadicArgs() - 1).exec(vm)
- }
- type _new uint32
- func (n _new) exec(vm *vm) {
- sp := vm.sp - int(n)
- obj := vm.stack[sp-1]
- ctor := vm.r.toConstructor(obj)
- vm.stack[sp-1] = ctor(vm.stack[sp:vm.sp], nil)
- vm.sp = sp
- vm.pc++
- }
- type _loadNewTarget struct{}
- var loadNewTarget _loadNewTarget
- func (_loadNewTarget) exec(vm *vm) {
- if t := vm.newTarget; t != nil {
- vm.push(t)
- } else {
- vm.push(_undefined)
- }
- vm.pc++
- }
- type _typeof struct{}
- var typeof _typeof
- func (_typeof) exec(vm *vm) {
- var r Value
- switch v := vm.stack[vm.sp-1].(type) {
- case valueUndefined, valueUnresolved:
- r = stringUndefined
- case valueNull:
- r = stringObjectC
- case *Object:
- repeat:
- switch s := v.self.(type) {
- case *funcObject, *nativeFuncObject, *boundFuncObject:
- r = stringFunction
- case *lazyObject:
- v.self = s.create(v)
- goto repeat
- default:
- r = stringObjectC
- }
- case valueBool:
- r = stringBoolean
- case valueString:
- r = stringString
- case valueInt, valueFloat:
- r = stringNumber
- case *Symbol:
- r = stringSymbol
- default:
- panic(fmt.Errorf("Unknown type: %T", v))
- }
- vm.stack[vm.sp-1] = r
- vm.pc++
- }
- type createArgsMapped uint32
- func (formalArgs createArgsMapped) exec(vm *vm) {
- v := &Object{runtime: vm.r}
- args := &argumentsObject{}
- args.extensible = true
- args.prototype = vm.r.global.ObjectPrototype
- args.class = "Arguments"
- v.self = args
- args.val = v
- args.length = vm.args
- args.init()
- i := 0
- c := int(formalArgs)
- if vm.args < c {
- c = vm.args
- }
- for ; i < c; i++ {
- args._put(unistring.String(strconv.Itoa(i)), &mappedProperty{
- valueProperty: valueProperty{
- writable: true,
- configurable: true,
- enumerable: true,
- },
- v: &vm.stash.values[i],
- })
- }
- for _, v := range vm.stash.extraArgs {
- args._put(unistring.String(strconv.Itoa(i)), v)
- i++
- }
- args._putProp("callee", vm.stack[vm.sb-1], true, false, true)
- args._putSym(SymIterator, valueProp(vm.r.global.arrayValues, true, false, true))
- vm.push(v)
- vm.pc++
- }
- type createArgsUnmapped uint32
- func (formalArgs createArgsUnmapped) exec(vm *vm) {
- args := vm.r.newBaseObject(vm.r.global.ObjectPrototype, "Arguments")
- i := 0
- c := int(formalArgs)
- if vm.args < c {
- c = vm.args
- }
- for _, v := range vm.stash.values[:c] {
- args._put(unistring.String(strconv.Itoa(i)), v)
- i++
- }
- for _, v := range vm.stash.extraArgs {
- args._put(unistring.String(strconv.Itoa(i)), v)
- i++
- }
- args._putProp("length", intToValue(int64(vm.args)), true, false, true)
- args._put("callee", vm.r.global.throwerProperty)
- args._put("caller", vm.r.global.throwerProperty)
- args._putSym(SymIterator, valueProp(vm.r.global.arrayValues, true, false, true))
- vm.push(args.val)
- vm.pc++
- }
- type _enterWith struct{}
- var enterWith _enterWith
- func (_enterWith) exec(vm *vm) {
- vm.newStash()
- vm.stash.obj = vm.stack[vm.sp-1].ToObject(vm.r)
- vm.sp--
- vm.pc++
- }
- type _leaveWith struct{}
- var leaveWith _leaveWith
- func (_leaveWith) exec(vm *vm) {
- vm.stash = vm.stash.outer
- vm.pc++
- }
- func emptyIter() (propIterItem, iterNextFunc) {
- return propIterItem{}, nil
- }
- type _enumerate struct{}
- var enumerate _enumerate
- func (_enumerate) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- if v == _undefined || v == _null {
- vm.iterStack = append(vm.iterStack, iterStackItem{f: emptyIter})
- } else {
- vm.iterStack = append(vm.iterStack, iterStackItem{f: enumerateRecursive(v.ToObject(vm.r))})
- }
- vm.sp--
- vm.pc++
- }
- type enumNext int32
- func (jmp enumNext) exec(vm *vm) {
- l := len(vm.iterStack) - 1
- item, n := vm.iterStack[l].f()
- if n != nil {
- vm.iterStack[l].val = stringValueFromRaw(item.name)
- vm.iterStack[l].f = n
- vm.pc++
- } else {
- vm.pc += int(jmp)
- }
- }
- type _enumGet struct{}
- var enumGet _enumGet
- func (_enumGet) exec(vm *vm) {
- l := len(vm.iterStack) - 1
- vm.push(vm.iterStack[l].val)
- vm.pc++
- }
- type _enumPop struct{}
- var enumPop _enumPop
- func (_enumPop) exec(vm *vm) {
- l := len(vm.iterStack) - 1
- vm.iterStack[l] = iterStackItem{}
- vm.iterStack = vm.iterStack[:l]
- vm.pc++
- }
- type _enumPopClose struct{}
- var enumPopClose _enumPopClose
- func (_enumPopClose) exec(vm *vm) {
- l := len(vm.iterStack) - 1
- item := vm.iterStack[l]
- vm.iterStack[l] = iterStackItem{}
- vm.iterStack = vm.iterStack[:l]
- if iter := item.iter; iter != nil {
- returnIter(iter)
- }
- vm.pc++
- }
- type _iterateP struct{}
- var iterateP _iterateP
- func (_iterateP) exec(vm *vm) {
- iter := vm.r.getIterator(vm.stack[vm.sp-1], nil)
- vm.iterStack = append(vm.iterStack, iterStackItem{iter: iter})
- vm.sp--
- vm.pc++
- }
- type _iterate struct{}
- var iterate _iterate
- func (_iterate) exec(vm *vm) {
- iter := vm.r.getIterator(vm.stack[vm.sp-1], nil)
- vm.iterStack = append(vm.iterStack, iterStackItem{iter: iter})
- vm.pc++
- }
- type iterNext int32
- func (jmp iterNext) exec(vm *vm) {
- l := len(vm.iterStack) - 1
- iter := vm.iterStack[l].iter
- var res *Object
- var done bool
- var value Value
- ex := vm.try(func() {
- res = vm.r.toObject(toMethod(iter.self.getStr("next", nil))(FunctionCall{This: iter}))
- done = nilSafe(res.self.getStr("done", nil)).ToBoolean()
- if !done {
- value = nilSafe(res.self.getStr("value", nil))
- vm.iterStack[l].val = value
- }
- })
- if ex == nil {
- if done {
- vm.pc += int(jmp)
- } else {
- vm.iterStack[l].val = value
- vm.pc++
- }
- } else {
- l := len(vm.iterStack) - 1
- vm.iterStack[l] = iterStackItem{}
- vm.iterStack = vm.iterStack[:l]
- panic(ex.val)
- }
- }
- type copyStash struct{}
- func (copyStash) exec(vm *vm) {
- oldStash := vm.stash
- newStash := &stash{
- outer: oldStash.outer,
- }
- vm.stashAllocs++
- newStash.values = append([]Value(nil), oldStash.values...)
- vm.stash = newStash
- vm.pc++
- }
- type _throwAssignToConst struct{}
- var throwAssignToConst _throwAssignToConst
- func (_throwAssignToConst) exec(vm *vm) {
- panic(errAssignToConst)
- }
- func (r *Runtime) copyDataProperties(target, source Value) {
- targetObj := r.toObject(target)
- if source == _null || source == _undefined {
- return
- }
- sourceObj := source.ToObject(r)
- for _, key := range sourceObj.self.ownPropertyKeys(false, nil) {
- v := nilSafe(sourceObj.get(key, nil))
- createDataPropertyOrThrow(targetObj, key, v)
- }
- }
- type _copySpread struct{}
- var copySpread _copySpread
- func (_copySpread) exec(vm *vm) {
- vm.r.copyDataProperties(vm.stack[vm.sp-2], vm.stack[vm.sp-1])
- vm.sp--
- vm.pc++
- }
- type _copyRest struct{}
- var copyRest _copyRest
- func (_copyRest) exec(vm *vm) {
- vm.push(vm.r.NewObject())
- vm.r.copyDataProperties(vm.stack[vm.sp-1], vm.stack[vm.sp-2])
- vm.pc++
- }
- type _createDestructSrc struct{}
- var createDestructSrc _createDestructSrc
- func (_createDestructSrc) exec(vm *vm) {
- v := vm.stack[vm.sp-1]
- vm.r.checkObjectCoercible(v)
- vm.push(vm.r.newDestructKeyedSource(v))
- vm.pc++
- }
- type _checkObjectCoercible struct{}
- var checkObjectCoercible _checkObjectCoercible
- func (_checkObjectCoercible) exec(vm *vm) {
- vm.r.checkObjectCoercible(vm.stack[vm.sp-1])
- vm.pc++
- }
- type createArgsRestStack int
- func (n createArgsRestStack) exec(vm *vm) {
- var values []Value
- delta := vm.args - int(n)
- if delta > 0 {
- values = make([]Value, delta)
- copy(values, vm.stack[vm.sb+int(n)+1:])
- }
- vm.push(vm.r.newArrayValues(values))
- vm.pc++
- }
- type _createArgsRestStash struct{}
- var createArgsRestStash _createArgsRestStash
- func (_createArgsRestStash) exec(vm *vm) {
- vm.push(vm.r.newArrayValues(vm.stash.extraArgs))
- vm.stash.extraArgs = nil
- vm.pc++
- }
|