diff options
author | Andreas Gampe <agampe@google.com> | 2016-11-28 07:38:35 -0800 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2016-11-29 11:11:46 -0800 |
commit | 8a0128a5ca0784f6d2b4ca27907e8967a74bc4c5 (patch) | |
tree | 0dec75200282ae5e49785395e97bd4e6459f1c09 /compiler/optimizing/code_generator_arm.h | |
parent | 60438b46090d22bb9b978196f5aa53fab3b89759 (diff) |
ART: Add dex::StringIndex
Add abstraction for uint32_t string index.
Test: m test-art-host
Change-Id: I917c2881702fe3df112c713f06980f2278ced7ed
Diffstat (limited to 'compiler/optimizing/code_generator_arm.h')
-rw-r--r-- | compiler/optimizing/code_generator_arm.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/optimizing/code_generator_arm.h b/compiler/optimizing/code_generator_arm.h index a4ccb57c1f..8230512825 100644 --- a/compiler/optimizing/code_generator_arm.h +++ b/compiler/optimizing/code_generator_arm.h @@ -485,11 +485,12 @@ class CodeGeneratorARM : public CodeGenerator { PcRelativePatchInfo* NewPcRelativeTypePatch(const DexFile& dex_file, dex::TypeIndex type_index); PcRelativePatchInfo* NewPcRelativeDexCacheArrayPatch(const DexFile& dex_file, uint32_t element_offset); - Literal* DeduplicateBootImageStringLiteral(const DexFile& dex_file, uint32_t string_index); + Literal* DeduplicateBootImageStringLiteral(const DexFile& dex_file, + dex::StringIndex string_index); Literal* DeduplicateBootImageTypeLiteral(const DexFile& dex_file, dex::TypeIndex type_index); Literal* DeduplicateBootImageAddressLiteral(uint32_t address); Literal* DeduplicateDexCacheAddressLiteral(uint32_t address); - Literal* DeduplicateJitStringLiteral(const DexFile& dex_file, uint32_t string_index); + Literal* DeduplicateJitStringLiteral(const DexFile& dex_file, dex::StringIndex string_index); void EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) OVERRIDE; |