Lines Matching refs:assembler
40 #include "assembler.h"
380 friend class Assembler;
399 friend class Assembler;
461 class Assembler : public AssemblerBase {
463 // Create an assembler. Instructions and relocation information are emitted
468 // If the provided buffer is NULL, the assembler allocates and grows its own
470 // owned by the assembler and deallocated upon destruction of the assembler.
472 // If the provided buffer is not NULL, the assembler uses the provided buffer
475 // upon destruction of the assembler.
476 Assembler(Isolate* isolate, void* buffer, int buffer_size);
477 virtual ~Assembler() { }
481 // Assembler functions are invoked in between GetCode() calls.
827 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
835 Assembler* assem_;
846 explicit BlockGrowBufferScope(Assembler* assem) : assem_(assem) {
854 Assembler* assem_;
1236 explicit EnsureSpace(Assembler* assembler) {
1237 assembler->CheckBuffer();