Home | History | Annotate | Download | only in arm

Lines Matching defs:Assembler

37 // A light-weight ARM Assembler
43 #include "assembler.h"
426 friend class Assembler;
459 friend class Assembler;
515 class Assembler : public Malloced {
517 // Create an assembler. Instructions and relocation information are emitted
522 // If the provided buffer is NULL, the assembler allocates and grows its own
524 // owned by the assembler and deallocated upon destruction of the assembler.
526 // If the provided buffer is not NULL, the assembler uses the provided buffer
529 // upon destruction of the assembler.
530 Assembler(void* buffer, int buffer_size);
531 ~Assembler();
535 // Assembler functions are invoked in between GetCode() calls.
935 // True if the assembler owns the buffer, false if buffer is external.