Home | History | Annotate | Download | only in ia32

Lines Matching full:assembler

35 // A light-weight IA32 Assembler.
298 friend class Assembler;
382 friend class Assembler;
550 class Assembler : public AssemblerBase {
564 // Create an assembler. Instructions and relocation information are emitted
569 // If the provided buffer is NULL, the assembler allocates and grows its own
571 // owned by the assembler and deallocated upon destruction of the assembler.
573 // If the provided buffer is not NULL, the assembler uses the provided buffer
576 // upon destruction of the assembler.
577 // TODO(vitalyr): the assembler does not need an isolate.
578 Assembler(Isolate* isolate, void* buffer, int buffer_size);
579 ~Assembler();
586 // Assembler functions are invoked in between GetCode() calls.
1113 // True if the assembler owns the buffer, false if buffer is external.
1137 explicit EnsureSpace(Assembler* assembler) : assembler_(assembler) {
1152 Assembler* assembler_;