Home
last modified time | relevance | path

Searched refs:kShortSize (Results 1 – 2 of 2) sorted by relevance

/art/compiler/utils/x86/
Dassembler_x86.cc3594 static const int kShortSize = 2; in j() local
3598 if (IsInt<8>(offset - kShortSize)) { in j()
3600 EmitUint8((offset - kShortSize) & 0xFF); in j()
3617 static const int kShortSize = 2; in j() local
3620 CHECK(IsInt<8>(offset - kShortSize)); in j()
3622 EmitUint8((offset - kShortSize) & 0xFF); in j()
3633 static const int kShortSize = 2; in jecxz() local
3636 CHECK(IsInt<8>(offset - kShortSize)); in jecxz()
3638 EmitUint8((offset - kShortSize) & 0xFF); in jecxz()
3661 static const int kShortSize = 2; in jmp() local
[all …]
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc4930 static const int kShortSize = 2; in j() local
4934 if (IsInt<8>(offset - kShortSize)) { in j()
4936 EmitUint8((offset - kShortSize) & 0xFF); in j()
4953 static const int kShortSize = 2; in j() local
4956 CHECK(IsInt<8>(offset - kShortSize)); in j()
4958 EmitUint8((offset - kShortSize) & 0xFF); in j()
4969 static const int kShortSize = 2; in jrcxz() local
4972 CHECK(IsInt<8>(offset - kShortSize)); in jrcxz()
4974 EmitUint8((offset - kShortSize) & 0xFF); in jrcxz()
4999 static const int kShortSize = 2; in jmp() local
[all …]