summary refs log tree commit diff stats
path: root/compiler/jsgen.nim
Commit message (Expand)AuthorAgeFilesLines
...
| * | Fixed isNil codegen in JSYuriy Glukhov2016-01-221-1/+1
| |/
* / JS: Corrected shift operators. Made casting between ints behave like C does.Yuriy Glukhov2016-01-221-9/+49
|/
* Revert "Fixed unicode handling in JS. Fixes #3714."Yuriy Glukhov2016-01-211-19/+1
* Merge pull request #3754 from yglukhov/js-unsignedAndreas Rumpf2016-01-211-100/+42
|\
| * Unsigned arith corrected for JSYuriy Glukhov2016-01-211-100/+42
* | Fixed unicode handling in JS. Fixes #3714.Yuriy Glukhov2016-01-181-1/+19
|/
* Use real JS bool literals instead of 1 and 0. Fixes #3722.Yuriy Glukhov2016-01-171-1/+4
* first implementation of the new lambda-lifting pass; barely anything worksAndreas Rumpf2015-12-261-1/+1
* Gen temp name instead of nimVarUnpackYuriy Glukhov2015-10-151-10/+11
* Fixed ret by var in jsYuriy Glukhov2015-10-151-8/+30
* when nimvm stmt proof of conceptYuriy Glukhov2015-09-041-0/+3
* Fixed passing byvarYuriy Glukhov2015-08-251-5/+23
* Merge pull request #3233 from yglukhov/parsefloat-js-magicAndreas Rumpf2015-08-211-0/+3
|\
| * Fixed nimParseBiggestFloat magic in JSYuriy Glukhov2015-08-211-0/+3
* | Untyped pointers godegen changed. addr expression fixed.Yuriy Glukhov2015-08-211-1/+1
|/
* Merge pull request #3147 from yglukhov/js-emitAndreas Rumpf2015-08-021-5/+11
|\
| * Emit pragma support for JS backend.Yuriy Glukhov2015-07-251-5/+11
* | fixes #3144Araq2015-07-261-1/+10
|/
* JS object initializer fix.yglukhov2015-06-231-6/+5
* Changed sets of strings to IntSetsyglukhov2015-06-181-18/+15
* Fixes #2617, fixes addr of obj downcast.yglukhov2015-06-181-21/+32
* Unhandled exceptions handling brought back.yglukhov2015-06-151-8/+11
* Fixed and slightly changed exception handling.yglukhov2015-06-151-10/+19
* Merge pull request #2903 from yglukhov/js-bracket-addrAndreas Rumpf2015-06-131-8/+11
|\
| * Singing and dancing with skipTypes.yglukhov2015-06-121-1/+1
| * Fixed addr of bracket expression. Fixes #2148.yglukhov2015-06-111-8/+11
* | Merge pull request #2902 from yglukhov/js-copying-fixAndreas Rumpf2015-06-121-2/+2
|\ \
| * | Fixed copying of aggregates in JS.yglukhov2015-06-111-2/+2
| |/
* | Merge pull request #2896 from r-ku/I64-magics-goneAndreas Rumpf2015-06-121-30/+0
|\ \ | |/ |/|
| * Removed magics: mAbsI64rku2015-06-101-2/+0
| * Removed magics: mBitnotI64rku2015-06-101-2/+0
| * Removed magics: mEqI64 mLtI64 mLeI64rku2015-06-101-6/+0
| * Removed magics: mShrI64, mShlI64, mBitandI64, mBitorI64, mBitxorI64rku2015-06-101-10/+0
| * Removed magics: mAddI64, mSubI64, mMulI64, mDivI64, mModI64rku2015-06-101-10/+0
* | securehash: Keep module name consistentAdam Strzelecki2015-06-091-1/+1
|/
* Merge pull request #2780 from flaviut/cleanup-crcAndreas Rumpf2015-06-091-2/+2
|\
| * Rename crc module to "secure_hash"Flaviu Tamas2015-05-231-2/+2
* | Fixed codegen for DotDot magicyglukhov2015-06-041-7/+14
* | Fixes #2798yglukhov2015-05-261-2/+5
|/
* Fixed JS call codegen, when first parameters are compile-time.yglukhov2015-05-191-1/+3
* fixed nil.add for JSAraq2015-04-221-1/+1
* fixes #2581Araq2015-04-221-9/+16
* cleaned up some magics to make room for new magics; added '..<' and '..^' tem...Araq2015-04-221-6/+0
* attempt to fix JS codegen regressionAraq2015-04-201-1/+1
* fixes #2476Araq2015-04-191-13/+22
* Don't add a comma too soonOleh Prypin2015-04-091-1/+1
* Get rid of deprecation warningsdef2015-04-071-256/+254
* compiler_ropes: ropeToStr -> $Jacek Sieka2015-04-011-1/+1
* cannot gen symbol -> must be compile timeSimon Hafner2015-03-261-3/+1
* uint support for JS.Yuriy Glukhov2015-03-241-1/+1
root, &dummy, &dummy, &x1, &y1, &di, &di, &dui); for(;;) { XMaskEvent(dpy, MOUSEMASK | ExposureMask | SubstructureRedirectMask, &ev); switch (ev.type) { case ButtonRelease: resize(c, True); XUngrabPointer(dpy, CurrentTime); return; case ConfigureRequest: case Expose: case MapRequest: handler[ev.type](&ev); break; case MotionNotify: XSync(dpy, False); c->x = ocx + (ev.xmotion.x - x1); c->y = ocy + (ev.xmotion.y - y1); if(abs(wax + c->x) < SNAP) c->x = wax; else if(abs((wax + waw) - (c->x + c->w + 2 * c->border)) < SNAP) c->x = wax + waw - c->w - 2 * c->border; if(abs(way - c->y) < SNAP) c->y = way; else if(abs((way + wah) - (c->y + c->h + 2 * c->border)) < SNAP) c->y = way + wah - c->h - 2 * c->border; resize(c, False); break; } } } static void resizemouse(Client *c) { int ocx, ocy; int nw, nh; XEvent ev; ocx = c->x; ocy = c->y; if(XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync, None, cursor[CurResize], CurrentTime) != GrabSuccess) return; c->ismax = False; XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->border - 1, c->h + c->border - 1); for(;;) { XMaskEvent(dpy, MOUSEMASK | ExposureMask | SubstructureRedirectMask , &ev); switch(ev.type) { case ButtonRelease: resize(c, True); XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->border - 1, c->h + c->border - 1); XUngrabPointer(dpy, CurrentTime); while(XCheckMaskEvent(dpy, EnterWindowMask, &ev)); return; case ConfigureRequest: case Expose: case MapRequest: handler[ev.type](&ev); break; case MotionNotify: XSync(dpy, False); nw = ev.xmotion.x - ocx - 2 * c->border + 1; c->w = nw > 0 ? nw : 1; nh = ev.xmotion.y - ocy - 2 * c->border + 1; c->h = nh > 0 ? nh : 1; resize(c, True); break; } } } static void buttonpress(XEvent *e) { int x; Arg a; Client *c; XButtonPressedEvent *ev = &e->xbutton; if(barwin == ev->window) { x = 0; for(a.i = 0; a.i < ntags; a.i++) { x += textw(tags[a.i]); if(ev->x < x) { if(ev->button == Button1) { if(ev->state & MODKEY) tag(&a); else view(&a); } else if(ev->button == Button3) { if(ev->state & MODKEY) toggletag(&a); else toggleview(&a); } return; } } if(ev->x < x + bmw) switch(ev->button) { case Button1: togglemode(NULL); break; case Button4: a.i = 1; incnmaster(&a); break; case Button5: a.i = -1; incnmaster(&a); break; } } else if((c = getclient(ev->window))) { focus(c); if(CLEANMASK(ev->state) != MODKEY) return; if(ev->button == Button1 && (arrange == dofloat || c->isfloat)) { restack(); movemouse(c); } else if(ev->button == Button2) zoom(NULL); else if(ev->button == Button3 && (arrange == dofloat || c->isfloat) && !c->isfixed) { restack(); resizemouse(c); } } } static void configurerequest(XEvent *e) { Client *c; XConfigureRequestEvent *ev = &e->xconfigurerequest; XWindowChanges wc; if((c = getclient(ev->window))) { c->ismax = False; c->border = (ev->value_mask & CWBorderWidth) ? ev->border_width : c->border; if((!c->isfloat && (arrange != dofloat)) || ((ev->value_mask & (CWX | CWY)) && !(ev->value_mask & (CWWidth | CWHeight)))) configure(c); else { c->x = (ev->value_mask & CWX) ? ev->x : c->x; c->y = (ev->value_mask & CWY) ? ev->y : c->y; c->w = (ev->value_mask & CWWidth) ? ev->width : c->w; c->h = (ev->value_mask & CWHeight) ? ev->height : c->h; resize(c, False); if(!isvisible(c)) XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y); } } else { wc.x = ev->x; wc.y = ev->y; wc.width = ev->width; wc.height = ev->height; wc.border_width = ev->border_width; wc.sibling = ev->above; wc.stack_mode = ev->detail; XConfigureWindow(dpy, ev->window, ev->value_mask, &wc); } XSync(dpy, False); } static void destroynotify(XEvent *e) { Client *c; XDestroyWindowEvent *ev = &e->xdestroywindow; if((c = getclient(ev->window))) unmanage(c); } static void enternotify(XEvent *e) { Client *c; XCrossingEvent *ev = &e->xcrossing; if(ev->mode != NotifyNormal || ev->detail == NotifyInferior) return; if((c = getclient(ev->window)) && isvisible(c)) focus(c); else if(ev->window == root) { selscreen = True; for(c = stack; c && !isvisible(c); c = c->snext); focus(c); } } static void expose(XEvent *e) { XExposeEvent *ev = &e->xexpose; if(ev->count == 0) { if(barwin == ev->window) drawstatus(); } } static void keypress(XEvent *e) { static unsigned int len = sizeof key / sizeof key[0]; unsigned int i; KeySym keysym; XKeyEvent *ev = &e->xkey; keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0); for(i = 0; i < len; i++) { if(keysym == key[i].keysym && CLEANMASK(key[i].mod) == CLEANMASK(ev->state)) { if(key[i].func) key[i].func(&key[i].arg); } } } static void leavenotify(XEvent *e) { XCrossingEvent *ev = &e->xcrossing; if((ev->window == root) && !ev->same_screen) { selscreen = False; focus(NULL); } } static void mappingnotify(XEvent *e) { XMappingEvent *ev = &e->xmapping; XRefreshKeyboardMapping(ev); if(ev->request == MappingKeyboard) grabkeys(); } static void maprequest(XEvent *e) { static XWindowAttributes wa; XMapRequestEvent *ev = &e->xmaprequest; if(!XGetWindowAttributes(dpy, ev->window, &wa)) return; if(wa.override_redirect) return; if(!getclient(ev->window)) manage(ev->window, &wa); } static void propertynotify(XEvent *e) { Client *c; Window trans; XPropertyEvent *ev = &e->xproperty; if(ev->state == PropertyDelete) return; /* ignore */ if((c = getclient(ev->window))) { switch (ev->atom) { default: break; case XA_WM_TRANSIENT_FOR: XGetTransientForHint(dpy, c->win, &trans); if(!c->isfloat && (c->isfloat = (trans != 0))) arrange(); break; case XA_WM_NORMAL_HINTS: updatesizehints(c); break; } if(ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) { updatetitle(c); if(c == sel) drawstatus(); } } } static void unmapnotify(XEvent *e) { Client *c; XUnmapEvent *ev = &e->xunmap; if((c = getclient(ev->window))) unmanage(c); } /* extern */ void (*handler[LASTEvent]) (XEvent *) = { [ButtonPress] = buttonpress, [ConfigureRequest] = configurerequest, [DestroyNotify] = destroynotify, [EnterNotify] = enternotify, [LeaveNotify] = leavenotify, [Expose] = expose, [KeyPress] = keypress, [MappingNotify] = mappingnotify, [MapRequest] = maprequest, [PropertyNotify] = propertynotify, [UnmapNotify] = unmapnotify }; void grabkeys(void) { static unsigned int len = sizeof key / sizeof key[0]; unsigned int i; KeyCode code; XUngrabKey(dpy, AnyKey, AnyModifier, root); for(i = 0; i < len; i++) { code = XKeysymToKeycode(dpy, key[i].keysym); XGrabKey(dpy, code, key[i].mod, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | LockMask, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | numlockmask, root, True, GrabModeAsync, GrabModeAsync); XGrabKey(dpy, code, key[i].mod | numlockmask | LockMask, root, True, GrabModeAsync, GrabModeAsync); } } void procevent(void) { XEvent ev; while(XPending(dpy)) { XNextEvent(dpy, &ev); if(handler[ev.type]) (handler[ev.type])(&ev); /* call handler */ } }