summaryrefslogtreecommitdiffstats
path: root/compiler/optimizing/code_generator_x86.h
diff options
context:
space:
mode:
authorVladimir Marko <vmarko@google.com>2018-03-09 10:17:11 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-03-09 10:17:11 +0000
commit9992e095643f6746361df03c4c98e742d9ad5899 (patch)
tree8abf49af54ee57fc0acebf2a3d9cafd87d6ec48e /compiler/optimizing/code_generator_x86.h
parenta5867bfeb34529dad71220046e7327cef23af207 (diff)
parente47f60c482648172334aaca59e6c1ab7a3d42610 (diff)
downloadart-9992e095643f6746361df03c4c98e742d9ad5899.tar.gz
art-9992e095643f6746361df03c4c98e742d9ad5899.tar.bz2
art-9992e095643f6746361df03c4c98e742d9ad5899.zip
Merge "Retrieve String/Class references from .data.bimg.rel.ro."
Diffstat (limited to 'compiler/optimizing/code_generator_x86.h')
-rw-r--r--compiler/optimizing/code_generator_x86.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/compiler/optimizing/code_generator_x86.h b/compiler/optimizing/code_generator_x86.h
index 2dc34e859e..9c537a7371 100644
--- a/compiler/optimizing/code_generator_x86.h
+++ b/compiler/optimizing/code_generator_x86.h
@@ -637,16 +637,17 @@ class CodeGeneratorX86 : public CodeGenerator {
const X86InstructionSetFeatures& isa_features_;
// PC-relative method patch info for kBootImageLinkTimePcRelative/kBootImageRelRo.
+ // Also used for type/string patches for kBootImageRelRo (same linker patch as for methods).
ArenaDeque<X86PcRelativePatchInfo> boot_image_method_patches_;
// PC-relative method patch info for kBssEntry.
ArenaDeque<X86PcRelativePatchInfo> method_bss_entry_patches_;
// PC-relative type patch info for kBootImageLinkTimePcRelative.
ArenaDeque<X86PcRelativePatchInfo> boot_image_type_patches_;
- // Type patch locations for kBssEntry.
+ // PC-relative type patch info for kBssEntry.
ArenaDeque<X86PcRelativePatchInfo> type_bss_entry_patches_;
- // String patch locations; type depends on configuration (intern table or boot image PIC).
+ // PC-relative String patch info for kBootImageLinkTimePcRelative.
ArenaDeque<X86PcRelativePatchInfo> boot_image_string_patches_;
- // String patch locations for kBssEntry.
+ // PC-relative String patch info for kBssEntry.
ArenaDeque<X86PcRelativePatchInfo> string_bss_entry_patches_;
// Patches for string root accesses in JIT compiled code.