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

  /external/v8/src/ia32/
assembler-ia32-inl.h 238 emit_disp(label, Displacement::CODE_RELATIVE);
263 Displacement Assembler::disp_at(Label* L) {
264 return Displacement(long_at(L->pos()));
268 void Assembler::disp_at_put(Label* L, Displacement disp) {
273 void Assembler::emit_disp(Label* L, Displacement::Type type) {
274 Displacement disp(L, type);
assembler-ia32.h 300 // A Displacement describes the 32bit immediate field of an instruction which
304 // A Displacement contains 2 different fields:
306 // next field: position of next displacement in the chain (0 = end of list)
310 // be no displacement at position zero, because there is always at least one
311 // instruction byte before the displacement).
313 // Displacement _data field layout
318 class Displacement BASE_EMBEDDED {
334 explicit Displacement(int data) { data_ = data; }
336 Displacement(Label* L, Type type) { init(L, type); }
860 inline Displacement disp_at(Label* L)
    [all...]
assembler-ia32.cc 139 // Implementation of Displacement
141 void Displacement::init(Label* L, Type type) {
    [all...]
  /external/v8/src/
assembler.h 88 friend class Displacement;

Completed in 553 milliseconds