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

  /external/v8/src/arm/
constants-arm.h 95 // General constants are in an anonymous enum in class Instr.
188 // The class Instr enables access to individual fields defined in the ARM
195 // Instr* instr = Instr::At(ptr);
196 // int type = instr->TypeField();
197 // return ((type == 0) || (type == 1)) && instr->HasS();
200 class Instr {
309 // to allocate or create instances of class Instr.
310 // Use the At(pc) function to create references to Instr
    [all...]
assembler-arm.h 508 typedef int32_t Instr;
511 extern const Instr kMovLrPc;
512 extern const Instr kLdrPCPattern;
590 static const int kInstrSize = sizeof(Instr);
907 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
908 void instr_at_put(byte* pc, Instr instr) {
909 *reinterpret_cast<Instr*>(pc) = instr;
    [all...]
assembler-thumb2.h 508 typedef int32_t Instr;
511 extern const Instr kMovLrPc;
512 extern const Instr kLdrPCPattern;
590 static const int kInstrSize = sizeof(Instr);
907 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
908 void instr_at_put(byte* pc, Instr instr) {
909 *reinterpret_cast<Instr*>(pc) = instr;
    [all...]
  /external/v8/src/mips/
constants-mips.h 115 typedef int32_t Instr;
344 const Instr rtCallRedirInstr = SPECIAL | BREAK | call_rt_redirected << 6;
346 const Instr nopInstr = 0;
359 inline Instr InstructionBits() const {
360 return *reinterpret_cast<const Instr*>(this);
364 inline void SetInstructionBits(Instr value) {
365 *reinterpret_cast<Instr*>(this) = value;

Completed in 49 milliseconds