Searched refs:ArenaDeque (Results 1 – 9 of 9) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86.h | 675 void EmitPcRelativeLinkerPatches(const ArenaDeque<X86PcRelativePatchInfo>& infos, 689 ArenaDeque<X86PcRelativePatchInfo> boot_image_method_patches_; 691 ArenaDeque<X86PcRelativePatchInfo> method_bss_entry_patches_; 693 ArenaDeque<X86PcRelativePatchInfo> boot_image_type_patches_; 695 ArenaDeque<X86PcRelativePatchInfo> type_bss_entry_patches_; 697 ArenaDeque<X86PcRelativePatchInfo> boot_image_string_patches_; 699 ArenaDeque<X86PcRelativePatchInfo> string_bss_entry_patches_; 702 ArenaDeque<X86PcRelativePatchInfo> boot_image_other_patches_; 705 ArenaDeque<PatchInfo<Label>> jit_string_patches_; 707 ArenaDeque<PatchInfo<Label>> jit_class_patches_;
|
D | code_generator_x86_64.h | 648 static void EmitPcRelativeLinkerPatches(const ArenaDeque<PatchInfo<Label>>& infos, 664 ArenaDeque<PatchInfo<Label>> boot_image_method_patches_; 666 ArenaDeque<PatchInfo<Label>> method_bss_entry_patches_; 668 ArenaDeque<PatchInfo<Label>> boot_image_type_patches_; 670 ArenaDeque<PatchInfo<Label>> type_bss_entry_patches_; 672 ArenaDeque<PatchInfo<Label>> boot_image_string_patches_; 674 ArenaDeque<PatchInfo<Label>> string_bss_entry_patches_; 677 ArenaDeque<PatchInfo<Label>> boot_image_other_patches_; 680 ArenaDeque<PatchInfo<Label>> jit_string_patches_; 682 ArenaDeque<PatchInfo<Label>> jit_class_patches_;
|
D | code_generator_arm_vixl.h | 901 ArenaDeque<PcRelativePatchInfo>* patches); 903 static void EmitPcRelativeLinkerPatches(const ArenaDeque<PcRelativePatchInfo>& infos, 908 ArenaDeque<vixl::aarch32::Label> block_labels_; // Indexed by block id. 919 ArenaDeque<PcRelativePatchInfo> boot_image_method_patches_; 921 ArenaDeque<PcRelativePatchInfo> method_bss_entry_patches_; 923 ArenaDeque<PcRelativePatchInfo> boot_image_type_patches_; 925 ArenaDeque<PcRelativePatchInfo> type_bss_entry_patches_; 927 ArenaDeque<PcRelativePatchInfo> boot_image_string_patches_; 929 ArenaDeque<PcRelativePatchInfo> string_bss_entry_patches_; 932 ArenaDeque<PcRelativePatchInfo> boot_image_other_patches_; [all …]
|
D | code_generator_arm64.h | 1015 ArenaDeque<PcRelativePatchInfo>* patches); 1020 static void EmitPcRelativeLinkerPatches(const ArenaDeque<PcRelativePatchInfo>& infos, 1028 ArenaDeque<vixl::aarch64::Label> block_labels_; // Indexed by block id. 1043 ArenaDeque<PcRelativePatchInfo> boot_image_method_patches_; 1045 ArenaDeque<PcRelativePatchInfo> method_bss_entry_patches_; 1047 ArenaDeque<PcRelativePatchInfo> boot_image_type_patches_; 1049 ArenaDeque<PcRelativePatchInfo> type_bss_entry_patches_; 1051 ArenaDeque<PcRelativePatchInfo> boot_image_string_patches_; 1053 ArenaDeque<PcRelativePatchInfo> string_bss_entry_patches_; 1056 ArenaDeque<PcRelativePatchInfo> boot_image_other_patches_; [all …]
|
D | code_generator_arm64.cc | 4717 ArenaDeque<PcRelativePatchInfo>* patches) { in NewPcRelativePatch() 4826 const ArenaDeque<PcRelativePatchInfo>& infos, in EmitPcRelativeLinkerPatches()
|
D | code_generator_arm_vixl.cc | 9268 const DexFile* dex_file, uint32_t offset_or_index, ArenaDeque<PcRelativePatchInfo>* patches) { in NewPcRelativePatch() 9369 const ArenaDeque<PcRelativePatchInfo>& infos, in EmitPcRelativeLinkerPatches()
|
D | code_generator_x86_64.cc | 1224 const ArenaDeque<PatchInfo<Label>>& infos, in EmitPcRelativeLinkerPatches()
|
D | code_generator_x86.cc | 5283 const ArenaDeque<X86PcRelativePatchInfo>& infos, in EmitPcRelativeLinkerPatches()
|
/art/libartbase/base/ |
D | arena_containers.h | 50 using ArenaDeque = std::deque<T, ArenaAllocatorAdapter<T>>; variable 53 using ArenaQueue = std::queue<T, ArenaDeque<T>>; 62 using ArenaStdStack = std::stack<T, ArenaDeque<T>>;
|