Home | History | Annotate | Download | only in mips

Lines Matching full:assembler

40 #include "assembler.h"
324 friend class Assembler;
339 friend class Assembler;
402 class Assembler : public AssemblerBase {
404 // Create an assembler. Instructions and relocation information are emitted
409 // If the provided buffer is NULL, the assembler allocates and grows its own
411 // owned by the assembler and deallocated upon destruction of the assembler.
413 // If the provided buffer is not NULL, the assembler uses the provided buffer
416 // upon destruction of the assembler.
417 Assembler(void* buffer, int buffer_size);
418 ~Assembler();
425 // Assembler functions are invoked in between GetCode() calls.
743 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
751 Assembler* assem_;
869 // True if the assembler owns the buffer, false if buffer is external.
1059 explicit EnsureSpace(Assembler* assembler) {
1060 assembler->CheckBuffer();