diff options
author | Vladimir Marko <vmarko@google.com> | 2018-06-22 02:12:52 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2018-06-22 02:12:52 -0700 |
commit | 077cc1c59c32f08c752c603bf991160c22eae9bb (patch) | |
tree | 25879b7002fd0601f9ed0ac9b6ef0b7d84134f55 /compiler/optimizing/code_generator_x86.h | |
parent | 2835a5529b4d1d53834aaab93e447814058a8015 (diff) | |
parent | 8e73527acfafff060e83e881559a9f23e7b2d4fb (diff) |
Merge "Implement Integer.valueOf() intrinsic for PIC." am: ccfc88af4a
am: 8e73527acf
Change-Id: Ic0db36d9632361ee82ebb28fa242a771af7214db
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r-- | compiler/optimizing/code_generator_x86.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h index 6c76e27d35f..7d18e2b4f39 100644 --- a/compiler/optimizing/code_generator_x86.h +++ b/compiler/optimizing/code_generator_x86.h @@ -426,6 +426,11 @@ class CodeGeneratorX86 : public CodeGenerator { Label* NewTypeBssEntryPatch(HLoadClass* load_class); void RecordBootImageStringPatch(HLoadString* load_string); Label* NewStringBssEntryPatch(HLoadString* load_string); + + void LoadBootImageAddress(Register reg, + uint32_t boot_image_offset, + HInvokeStaticOrDirect* invoke); + Label* NewJitRootStringPatch(const DexFile& dex_file, dex::StringIndex string_index, Handle<mirror::String> handle); |