Home | History | Annotate | Download | only in mips64

Lines Matching full:assembler

40 #include "src/assembler.h"
383 friend class Assembler;
410 friend class Assembler;
414 class Assembler : public AssemblerBase {
416 // Create an assembler. Instructions and relocation information are emitted
421 // If the provided buffer is NULL, the assembler allocates and grows its own
423 // owned by the assembler and deallocated upon destruction of the assembler.
425 // If the provided buffer is not NULL, the assembler uses the provided buffer
428 // upon destruction of the assembler.
429 Assembler(Isolate* isolate, void* buffer, int buffer_size);
430 virtual ~Assembler() { }
434 // Assembler functions are invoked in between GetCode() calls.
993 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
1001 Assembler* assem_;
1012 explicit BlockGrowBufferScope(Assembler* assem) : assem_(assem) {
1020 Assembler* assem_;
1409 explicit EnsureSpace(Assembler* assembler) {
1410 assembler->CheckBuffer();