Search

June 07, 2013
Issues »
...pop    ESI
        pop    EBX
        add    ESP,030h
        ret

_D5test25spam2FNaNbxkZd:
        sub    ESP,030h
        mov    EDX,EAX...
June 06, 2013
Learn »
...auto ret = backtrace_symbols(callstack.ptr, cast(int) i);
    for (; i > 0; i--) {
        writeln((*ret...
June 04, 2013
Issues »
...typeof(this) save()
    {
        auto ret = this;
        ret._input = _input.save;
        return ret;
    }

The assumption that...
June 02, 2013
General »
...a test + jmp. And then there is 'ret' at the end of this chunk ~4...
June 01, 2013
General »
...QWORD PTR [RDI], RAX
	mov	RAX, RDI
	ret
---

It just happens too late in the...
June 01, 2013
General »
...sub: lbl = &&handle_sub; break;
                // ...
                case ret: lbl = &&handle_ret; break;
            }
        }

        insn.lbl = lbl;
    }

    // Start...
May 30, 2013
General »
...static array in heap
	int[] ret = s.s;
	return ret; //dynamic array in heap
}

void...
May 28, 2013
Learn »
...opSlice(size_t i, size_t j) {
>          // ...
>          ret.front_ = i;
>
> I feel like the initialization...
May 28, 2013
Learn »
...opSlice(size_t i, size_t j) {
        // ...
        ret.front_ = i;

I feel like the initialization...
May 24, 2013
Issues »
...3:
            writeln("errors");
        default:
            break;
    }

    return t.ret;
}

Without -w, this code will compile just...
86 87 88 89 90 91 92 93 94 95 96 97
Next ›   Last »