Home | History | Annotate | Download | only in ia32

Lines Matching refs:assembler

35 // A light-weight IA32 Assembler.
367 friend class Assembler;
459 friend class Assembler;
523 // if (assembler->IsSupported(SSE2)) {
524 // CpuFeatureScope fscope(assembler, SSE2);
590 class Assembler : public AssemblerBase {
604 // Create an assembler. Instructions and relocation information are emitted
609 // If the provided buffer is NULL, the assembler allocates and grows its own
611 // owned by the assembler and deallocated upon destruction of the assembler.
613 // If the provided buffer is not NULL, the assembler uses the provided buffer
616 // upon destruction of the assembler.
617 // TODO(vitalyr): the assembler does not need an isolate.
618 Assembler(Isolate* isolate, void* buffer, int buffer_size);
619 virtual ~Assembler() { }
623 // Assembler functions are invoked in between GetCode() calls.
1253 explicit EnsureSpace(Assembler* assembler) : assembler_(assembler) {
1268 Assembler* assembler_;