Lines Matching refs:assembler
43 #include "src/assembler.h"
345 friend class Assembler;
372 friend class Assembler;
376 class Assembler : public AssemblerBase {
378 // Create an assembler. Instructions and relocation information are emitted
383 // If the provided buffer is NULL, the assembler allocates and grows its own
385 // owned by the assembler and deallocated upon destruction of the assembler.
387 // If the provided buffer is not NULL, the assembler uses the provided buffer
390 // upon destruction of the assembler.
391 Assembler(Isolate* isolate, void* buffer, int buffer_size);
392 virtual ~Assembler() { }
396 // Assembler functions are invoked in between GetCode() calls.
990 explicit BlockTrampolinePoolScope(Assembler* assem) : assem_(assem) {
998 Assembler* assem_;
1009 explicit BlockGrowBufferScope(Assembler* assem) : assem_(assem) {
1017 Assembler* assem_;
1472 explicit EnsureSpace(Assembler* assembler) {
1473 assembler->CheckBuffer();