Home | History | Annotate | Download | only in mips64

Lines Matching refs:assembler

43 #include "src/assembler.h"
348 friend class Assembler;
375 friend class Assembler;
379 class Assembler : public AssemblerBase {
381 // Create an assembler. Instructions and relocation information are emitted
386 // If the provided buffer is NULL, the assembler allocates and grows its own
388 // owned by the assembler and deallocated upon destruction of the assembler.
390 // If the provided buffer is not NULL, the assembler uses the provided buffer
393 // upon destruction of the assembler.
394 Assembler(Isolate* isolate, void* buffer, int buffer_size);
395 virtual ~Assembler() { }
399 // Assembler functions are invoked in between GetCode() calls.
1052 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
1060 Assembler* assem_;
1071 explicit BlockGrowBufferScope(Assembler* assem) : assem_(assem) {
1079 Assembler* assem_;
1524 explicit EnsureSpace(Assembler* assembler) {
1525 assembler->CheckBuffer();