diff options
| author | 2014-04-07 17:34:12 +0000 | |
|---|---|---|
| committer | 2014-04-07 17:34:13 +0000 | |
| commit | 12c0273fd394d72ae93424784b1450daea417472 (patch) | |
| tree | 0410f0225424213516270a3796731d174c00d90c /compiler/dex/compiler_enums.h | |
| parent | 1415359a4ca80a78507173103274a06cd85d223d (diff) | |
| parent | 754ddad084ccb610d0cf486f6131bdc69bae5bc6 (diff) | |
Merge "Use trampolines for calls to helpers"
Diffstat (limited to 'compiler/dex/compiler_enums.h')
| -rw-r--r-- | compiler/dex/compiler_enums.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/dex/compiler_enums.h b/compiler/dex/compiler_enums.h index 6c8c85d16d..a3ce4f9c54 100644 --- a/compiler/dex/compiler_enums.h +++ b/compiler/dex/compiler_enums.h @@ -430,10 +430,12 @@ enum FixupKind { kFixupT2Branch, // Thumb2 Unconditional branch kFixupBlx1, // Blx1 (start of Blx1/Blx2 pair). kFixupBl1, // Bl1 (start of Bl1/Bl2 pair). + kFixup2Bl1, // Thumb2 Bl1 (start of Bl1/Bl2 pair). kFixupAdr, // Adr. kFixupMovImmLST, // kThumb2MovImm16LST. kFixupMovImmHST, // kThumb2MovImm16HST. kFixupAlign4, // Align to 4-byte boundary. + kFixupTrampCall, // Call into trampoline for runtime helper. }; std::ostream& operator<<(std::ostream& os, const FixupKind& kind); |