Search

October 07, 2015
Learn »
...b2.length);
    ubyte[] ret;
    for (uint i = 0; i < b1.length; i++)
        ret ~= b1[i...
September 26, 2015
Issues »
...mov     RAX,RCX
        5D                      pop     RBP
        C3                      ret

The stack frame is not necessary, and...
September 16, 2015
General »
...Dl_info info;
    int ret = dladdr(cast(void*)&callOnAddImage, &info);
    assert(ret);

    // "dli_fbase" is...
September 08, 2015
Issues »
...e <void example.f()+0xe>
    pop    rbp
    ret
---

The function is called with null argument?

--
September 04, 2015
General »
...readAndReturn(T)(InputStream stream)
{
    T ret;
    stream.read(ret);
    return ret;
}

alias readByte    = readAndReturn!byte...
August 29, 2015
Issues »
...true) static auto inline_cons(int bar) {
        foo ret = void;
        ret.bar = bar;
        return ret;
    }
}

--
August 28, 2015
General »
...true) static auto inline_cons(int bar) {
        foo ret = void;
        ret.bar = bar;
        return ret;
    }
}
August 23, 2015
Learn »
...sizeof] ret;
		foreach(i; 0 .. T.sizeof)
			ret[i] = input.moveFront;
		return to!T(ret...
August 19, 2015
Issues »
...pop    %ebx
    mov    %ebp,%esp
    pop    %ebp
    ret    $0x8
    add    %al,(%eax)


In comparison to...
August 09, 2015
General »
...double d) {
    return cos(d);
  }

generates:

  _D3foo3fooFdZd:
                fld     qword ptr 4[ESP]
                fcos
                ret     8
55 56 57 58 59 60 61 62 63 64 65 66
Next ›   Last »