Home | History | Annotate | Download | only in s390

Lines Matching refs:assembler

37 // A light-weight S390 Assembler
51 #include "src/assembler.h"
310 bool must_output_reloc_info(const Assembler* assembler) const;
328 friend class Assembler;
367 friend class Assembler;
386 class Assembler : public AssemblerBase {
388 // Create an assembler. Instructions and relocation information are emitted
393 // If the provided buffer is NULL, the assembler allocates and grows its own
395 // owned by the assembler and deallocated upon destruction of the assembler.
397 // If the provided buffer is not NULL, the assembler uses the provided buffer
400 // upon destruction of the assembler.
401 Assembler(Isolate* isolate, void* buffer, int buffer_size);
402 virtual ~Assembler() {}
406 // Assembler functions are invoked in between GetCode() calls.
1459 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); }