HomeSort by relevance Sort by last modified time
    Searched defs:Assembler (Results 1 - 11 of 11) sorted by null

  /external/v8/src/mips/
assembler-mips.h 40 #include "assembler.h"
44 using namespace assembler::mips;
251 friend class Assembler;
266 friend class Assembler;
270 class Assembler : public Malloced {
272 // Create an assembler. Instructions and relocation information are emitted
277 // If the provided buffer is NULL, the assembler allocates and grows its own
279 // owned by the assembler and deallocated upon destruction of the assembler.
281 // If the provided buffer is not NULL, the assembler uses the provided buffe
    [all...]
assembler-mips.cc 37 #include "mips/assembler-mips-inl.h"
190 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
204 // See assembler-mips-inl.h for inlined constructors.
227 // Implementation of Assembler.
232 Assembler::Assembler(void* buffer, int buffer_size) {
270 Assembler::~Assembler() {
281 void Assembler::GetCode(CodeDesc* desc) {
305 bool Assembler::is_branch(Instr instr)
    [all...]
  /external/v8/tools/
tickprocessor.py 76 def __init__(self, start_addr, name, type, size, assembler):
80 self.assembler = assembler
112 if self.assembler:
113 return self.assembler.regions
146 class Assembler(object):
184 # Map from assembler ids to the pending assembler objects
263 assembler = self.pending_assemblers.pop(assem)
264 self.assemblers[addr] = assembler
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 40 #include "macro-assembler.h"
65 Assembler assm(NULL, 0);
149 ASSERT(NextField::is_valid(Assembler::kMaximalBufferSize));
270 // Implementation of Assembler.
282 byte* Assembler::spare_buffer_ = NULL;
284 Assembler::Assembler(void* buffer, int buffer_size) {
335 Assembler::~Assembler() {
346 void Assembler::GetCode(CodeDesc* desc)
    [all...]
assembler-ia32.h 35 // A light-weight IA32 Assembler.
220 friend class Assembler;
295 friend class Assembler;
406 class Assembler : public Malloced {
420 // Create an assembler. Instructions and relocation information are emitted
425 // If the provided buffer is NULL, the assembler allocates and grows its own
427 // owned by the assembler and deallocated upon destruction of the assembler.
429 // If the provided buffer is not NULL, the assembler uses the provided buffer
432 // upon destruction of the assembler
    [all...]
  /external/v8/src/x64/
assembler-x64.cc 30 #include "macro-assembler.h"
53 Assembler assm(NULL, 0);
239 // Implementation of Assembler.
245 byte* Assembler::spare_buffer_ = NULL;
247 Assembler::Assembler(void* buffer, int buffer_size)
299 Assembler::~Assembler() {
310 void Assembler::GetCode(CodeDesc* desc) {
327 void Assembler::Align(int m)
    [all...]
assembler-x64.h 35 // A lightweight X64 Assembler.
270 friend class Assembler;
323 friend class Assembler;
383 class Assembler : public Malloced {
397 // Create an assembler. Instructions and relocation information are emitted
402 // If the provided buffer is NULL, the assembler allocates and grows its own
404 // owned by the assembler and deallocated upon destruction of the assembler.
406 // If the provided buffer is not NULL, the assembler uses the provided buffer
409 // upon destruction of the assembler
    [all...]
  /external/v8/src/arm/
assembler-arm.cc 39 #include "arm/assembler-arm-inl.h"
212 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
226 // See assembler-arm-inl.h for inlined constructors
297 // Implementation of Assembler.
364 Assembler::Assembler(void* buffer, int buffer_size) {
407 Assembler::~Assembler() {
418 void Assembler::GetCode(CodeDesc* desc) {
431 void Assembler::Align(int m)
    [all...]
assembler-thumb2.cc 39 #include "arm/assembler-thumb2-inl.h"
192 CPU::FlushICache(pc_, instruction_count * Assembler::kInstrSize);
206 // See assembler-thumb2-inl.h for inlined constructors
277 // Implementation of Assembler.
344 Assembler::Assembler(void* buffer, int buffer_size) {
387 Assembler::~Assembler() {
398 void Assembler::GetCode(CodeDesc* desc) {
411 void Assembler::Align(int m)
    [all...]
assembler-arm.h 37 // A light-weight ARM Assembler
43 #include "assembler.h"
426 friend class Assembler;
459 friend class Assembler;
515 class Assembler : public Malloced {
517 // Create an assembler. Instructions and relocation information are emitted
522 // If the provided buffer is NULL, the assembler allocates and grows its own
524 // owned by the assembler and deallocated upon destruction of the assembler.
526 // If the provided buffer is not NULL, the assembler uses the provided buffe
    [all...]
assembler-thumb2.h 37 // A light-weight ARM Assembler
43 #include "assembler.h"
426 friend class Assembler;
459 friend class Assembler;
515 class Assembler : public Malloced {
517 // Create an assembler. Instructions and relocation information are emitted
522 // If the provided buffer is NULL, the assembler allocates and grows its own
524 // owned by the assembler and deallocated upon destruction of the assembler.
526 // If the provided buffer is not NULL, the assembler uses the provided buffe
    [all...]

Completed in 141 milliseconds