Home | History | Annotate | Download | only in mips

Lines Matching refs:assembler

41 #include "src/assembler.h"
393 friend class Assembler;
420 friend class Assembler;
424 class Assembler : public AssemblerBase {
426 // Create an assembler. Instructions and relocation information are emitted
431 // If the provided buffer is NULL, the assembler allocates and grows its own
433 // owned by the assembler and deallocated upon destruction of the assembler.
435 // If the provided buffer is not NULL, the assembler uses the provided buffer
438 // upon destruction of the assembler.
439 Assembler(Isolate* isolate, void* buffer, int buffer_size);
440 virtual ~Assembler() { }
444 // Assembler functions are invoked in between GetCode() calls.
957 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
965 Assembler* assem_;
976 explicit BlockGrowBufferScope(Assembler* assem) : assem_(assem) {
984 Assembler* assem_;
1372 explicit EnsureSpace(Assembler* assembler) {
1373 assembler->CheckBuffer();