<div dir="ltr">Hi Matthew,<div><br></div><div>Improving an ABI or even creating a new ABI do not necessarily mean that they'll break existing systems. Debian, Android or BSDs would be fine if you do not make a sudden ABI-breaking change. Think about .gnu.hash section for example. Old Unix runtimes did not understand the section, so if you used only .gnu.hash section on old Unix systems, it would incur significant overhead to resolve dynamic symbols. It was however actually fine because linkers were first improved to create both the old .hash and the new .gnu.hash, and runtimes were improved to be able to interpret both old and new formats. It was designed to make transition possible. As another instance, you can think of the switch from the a.out format to ELF that took place for Linux in mid '90s. They were completely different file formats, but the system could have both a.out libraries/executables and ELF libraries/executables, and they could co-exist peacefully. (If you were using Slackware at the moment, you had to reinstall the entire system, but that's the distributions fault, and Debian for example could migrate from a.out-only system to ELF-only system smoothly.)</div><div><br></div><div>The peculiarity (or messiness) or MIPS ABI actually hurts MIPS-based systems. Again, think about .gnu.hash sections. If your DSOs have .gnu.hash sections, your dynamic symbols will be resolved quickly. That is important for large modern programs that use a lot of DSOs. However, you cannot use the feature on MIPS-based systems because the ABI forces some symbol ordering in a way that is not compatible with .gnu.hash. Therefore, MIPS ELF DSOs still stick with the old plain .hash section, which I believe hurt system performance. (By the way, .hash sections created by LLD are inefficient because their on-disk hash tables not optimized, but that is fine for most systems because they already have migrated to .gnu.hash. If you improve it, that change is not technically MIPS-specific, but it virtually is. In other words, it would virtually be another MIPS-specific feature.)</div><div><br></div><div>If you take a look at MC, you'll notice that there are a lot of "is MIPS64EL?" flags there. They are for reading *very* odd middle-endian field in the MIPS ELF file. I've never seen middle-endian data except this MIPS ELF header field (and the wikipedia page about PDP-11). In order to handle this subtle but significant difference, we had to sprinkle IsMIPS64EL flags to a lot of places. No other architectures need this kind of treatment. These flags are needed to handle the current MIPS ABI, sure, but do we want to keep this craziness forever like decades? no. I can continue adding items to this list. MIPS for example forces some ordering on .got entries, in a way that I don't find meaningful. Why only MIPS is using __start as an entry symbol? I don't know. Most of MIPS oddities are not new at all -- they exist for a decade or more. They had enough time to make the ABI more in line with other ELF ABIs and make a transition. I don't want I or someone else will regret the same thing 10 years from now.</div><div><br></div><div>I really hope that MIPS community will start making effort to flush out oddities in the ABI and make it in line with other ELF ABIs. This does not only reduce headache of toolchain developers but also benefit MIPS because MIPS will be able to use improvements for other features more quickly, unlike the .gnu.hash situation. We could have delivered tools for MIPS more quickly if MIPS ABI didn't have this many oddities. For example, LLD could have been ported much easier if the ABI was more in line with other ABIs. I think MIPS is actually paying cost of not being in line with other ABIs. I'm probably able to tolerate most ABI oddness if I'm convinced that they'll eventually be fixed even if it takes time. But it is very uncomfortable to me to accept a lot of oddnesses without being convinced.</div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Apr 14, 2017 at 2:12 PM, Matthew Fortune <span dir="ltr"><<a href="mailto:Matthew.Fortune@imgtec.com" target="_blank">Matthew.Fortune@imgtec.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="m_5822498780227398304HOEnZb"><div class="m_5822498780227398304h5">Simon Atanasyan <<a href="mailto:simon@atanasyan.com" target="_blank">simon@atanasyan.com</a>> writes:<br>
>  On Fri, Apr 14, 2017 at 3:56 AM, Rui Ueyama <<a href="mailto:ruiu@google.com" target="_blank">ruiu@google.com</a>> wrote:<br>
> > On Thu, Apr 13, 2017 at 8:52 AM, Simon Atanasyan <<a href="mailto:simon@atanasyan.com" target="_blank">simon@atanasyan.com</a>><br>
> > wrote:<br>
> >><br>
> >> On Tue, Apr 11, 2017 at 3:42 AM, Rui Ueyama <<a href="mailto:ruiu@google.com" target="_blank">ruiu@google.com</a>> wrote:<br>
> >> > On Mon, Apr 10, 2017 at 5:13 PM, Davide Italiano <<a href="mailto:davide@freebsd.org" target="_blank">davide@freebsd.org</a>><br>
> >> > wrote:<br>
> >> >><br>
> >> >> On Mon, Apr 10, 2017 at 4:58 PM, Rui Ueyama via llvm-commits<br>
> >> >> <<a href="mailto:llvm-commits@lists.llvm.org" target="_blank">llvm-commits@lists.llvm.org</a>> wrote:<br>
> >> >> > On Sat, Apr 8, 2017 at 12:08 AM, Simon Atanasyan<br>
> >> >> > <<a href="mailto:simon@atanasyan.com" target="_blank">simon@atanasyan.com</a>><br>
> >> >> > wrote:<br>
> >> >> >><br>
> >> >> >> On Tue, Apr 4, 2017 at 9:09 PM, Rui Ueyama <<a href="mailto:ruiu@google.com" target="_blank">ruiu@google.com</a>> wrote:<br>
> >> >> >> > On Tue, Apr 4, 2017 at 5:46 AM, Simon Atanasyan<br>
> >> >> >> > <<a href="mailto:simon@atanasyan.com" target="_blank">simon@atanasyan.com</a>><br>
> >> >> >> > wrote:<br>
> >> >> >> >><br>
> >> >> >> >> On Sat, Apr 1, 2017 at 4:20 AM, Rui Ueyama via Phabricator<br>
> >> >> >> >> <<a href="mailto:reviews@reviews.llvm.org" target="_blank">reviews@reviews.llvm.org</a>> wrote:<br>
> >> >> >> >> ><br>
> >> >> >> >> > This is not your fault, but I have to say that this MIPS GOT<br>
> >> >> >> >> > layout<br>
> >> >> >> >> > is<br>
> >> >> >> >> > very odd,<br>
> >> >> >> >> > too different from other architectures, and too complicated. I<br>
> >> >> >> >> > want<br>
> >> >> >> >> > to<br>
> >> >> >> >> > avoid supporting<br>
> >> >> >> >> > this unless I'm convinced that it is absolutely necessary. It<br>
> >> >> >> >> > seems<br>
> >> >> >> >> > to<br>
> >> >> >> >> > me that MIPS<br>
> >> >> >> >> > needs a clean, common new ABI. Only the MIPS ABI imposes a lot<br>
> >> >> >> >> > of<br>
> >> >> >> >> > restrictions<br>
> >> >> >> >> > on the size of GOT sections and the order of GOT section<br>
> >> >> >> >> > members,<br>
> >> >> >> >> > even<br>
> >> >> >> >> > though MIPS<br>
> >> >> >> >> > as a processor is an ordinary RISC ISA. This change would<br>
> >> >> >> >> > really<br>
> >> >> >> >> > hurt<br>
> >> >> >> >> > maintainability<br>
> >> >> >> >> > of LLD which I already found some MIPS-specific behavior is<br>
> >> >> >> >> > hard<br>
> >> >> >> >> > to<br>
> >> >> >> >> > keep<br>
> >> >> >> >> > it right<br>
> >> >> >> >> > when editing code for all the other architectures.<br>
> >> >> >> >><br>
> >> >> >> >> MIPS will not always use old, obsoleted ABIs. It will switch to<br>
> >> >> >> >> new<br>
> >> >> >> >> one. But it does not<br>
> >> >> >> >> happen this year or so. Besides other obstacles, there is a<br>
> >> >> >> >> hardware<br>
> >> >> >> >> problem prevents from<br>
> >> >> >> >> fast switching and common acceptance of the new ABI. Historically<br>
> >> >> >> >> many<br>
> >> >> >> >> MIPS instructions<br>
> >> >> >> >> are partitioned as 16 bit for opcode and 16 bit bit for<br>
> >> >> >> >> address/index.<br>
> >> >> >> >> That is one of<br>
> >> >> >> >> the source of GOT size limitation and reason of multi-GOT<br>
> >> >> >> >> invention.<br>
> >> >> >> >><br>
> >> >> >> >> The biggest part of the patch isolated in the MipsGotSection<br>
> >> >> >> >> class.<br>
> >> >> >> >> It<br>
> >> >> >> >> adds some new<br>
> >> >> >> >> MIPS specific code like new constructor of the DynamicReloc<br>
> >> >> >> >> class.<br>
> >> >> >> >> But<br>
> >> >> >> >> at the same<br>
> >> >> >> >> time it removes some `if (Config->EMachine == EM_MIPS)`<br>
> >> >> >> >> statements<br>
> >> >> >> >> and<br>
> >> >> >> >> MIPS specific<br>
> >> >> >> >> fields from the `SymbolBody` class.<br>
> >> >> >> ><br>
> >> >> >> ><br>
> >> >> >> > It is isolated as a separate class, but we still need to<br>
> >> >> >> > understand<br>
> >> >> >> > and<br>
> >> >> >> > modify it when we need to do something for relocation processing.<br>
> >> >> >> > I'm<br>
> >> >> >> > actually trying to change the design of relocation processing, to<br>
> >> >> >> > increase<br>
> >> >> >> > parallelism of relocation processing. We can't parallelize it<br>
> >> >> >> > entirely,<br>
> >> >> >> > but<br>
> >> >> >> > some part (such as making a decision whether a symbol needs a GOT<br>
> >> >> >> > slot<br>
> >> >> >> > or<br>
> >> >> >> > not) can be processed per-file or per-relocation basis.<br>
> >> >> >> ><br>
> >> >> >> > Then I found that this part of code is very complex and has grown<br>
> >> >> >> > organically. I tried to reduce its complexity and found that<br>
> >> >> >> > keeping<br>
> >> >> >> > everything right for MIPS is hard. I'm really don't want to<br>
> >> >> >> > increase<br>
> >> >> >> > complexity of this code. If you increase the complexity, I won't<br>
> >> >> >> > be<br>
> >> >> >> > able<br>
> >> >> >> > to<br>
> >> >> >> > refactor it anymore because I'm struggling to do that even for the<br>
> >> >> >> > current<br>
> >> >> >> > code.<br>
> >> >> >> ><br>
> >> >> >> > In addition to that, the MIPS multi-GOT ABI doesn't seem a right<br>
> >> >> >> > design<br>
> >> >> >> > to<br>
> >> >> >> > me. If multi-GOT is in use, only the first GOT is recognized as a<br>
> >> >> >> > real<br>
> >> >> >> > GOT<br>
> >> >> >> > by the dynamic linker, and secondary GOTs are just some sections<br>
> >> >> >> > that<br>
> >> >> >> > simulates GOT. It's too hacky, isn't it?<br>
> >> >> >> ><br>
> >> >> >> >> > I wonder what is the performance penalty you would have to pay<br>
> >> >> >> >> > when<br>
> >> >> >> >> > you<br>
> >> >> >> >> > use the -mxgot<br>
> >> >> >> >> > option. With the option, you'll need three instructions as<br>
> >> >> >> >> > opposed<br>
> >> >> >> >> > to<br>
> >> >> >> >> > a<br>
> >> >> >> >> > single instruction<br>
> >> >> >> >> > to access an GOT entry. Does that actually make observable<br>
> >> >> >> >> > difference<br>
> >> >> >> >> > in<br>
> >> >> >> >> > performance?<br>
> >> >> >> >><br>
> >> >> >> >> Regular (without -mxgot) access to GOT requires a single<br>
> >> >> >> >> instruction:<br>
> >> >> >> >><br>
> >> >> >> >> lw  t9,0(gp)<br>
> >> >> >> >><br>
> >> >> >> >> I was wrong when say about two instructions. With -mxgot option<br>
> >> >> >> >> we<br>
> >> >> >> >> get<br>
> >> >> >> >> three instructions.<br>
> >> >> >> >><br>
> >> >> >> >> lui     at,0x0<br>
> >> >> >> >> addu    at,at,gp<br>
> >> >> >> >> lw      t9,0(at)<br>
> >> >> >> >><br>
> >> >> >> >> In case of MIPS global offset table is used not only to call<br>
> >> >> >> >> external<br>
> >> >> >> >> functions / access<br>
> >> >> >> >> external data but for local calls / access under some conditions.<br>
> >> >> >> >> So<br>
> >> >> >> >> using -mxgot we can<br>
> >> >> >> >> easily grow the code size and reduce performance.<br>
> >> >> >> ><br>
> >> >> >> ><br>
> >> >> >> > How much is the actual performance hit?<br>
> >> >> >><br>
> >> >> >> Multi-GOT is an attempt to bypass say limitation of MIPS<br>
> >> >> >> architecture.<br>
> >> >> >> It's not my invention, this feature was implemented in GNU linker<br>
> >> >> >> more<br>
> >> >> >> than ten years ago. Every time when GOT exceeds ~64KB limit BFD and<br>
> >> >> >> gold linkers create multi-GOT layout.<br>
> >> >> >><br>
> >> >> >> I do not think that my implementation of multi-GOT makes LLD much<br>
> >> >> >> more<br>
> >> >> >> complicated. General idea remains the same - collect information<br>
> >> >> >> about<br>
> >> >> >> various type of required GOT entries, layout GOT entries, write this<br>
> >> >> >> layout. Merging multiple GOT created for each file into larger GOT<br>
> >> >> >> is<br>
> >> >> >> rather complicated routine though. From another side, creating a<br>
> >> >> >> separate GOT for each input file makes possible to parallelize this<br>
> >> >> >> process. Current implementation, where MipsGotSection maintains a<br>
> >> >> >> single `GotEntries` vector for all files, does not allow to process<br>
> >> >> >> multiple input files at the same time without some sort of "locks".<br>
> >> >> ><br>
> >> >> ><br>
> >> >> > I understand that you are just trying to implement a MIPS ABI, and I<br>
> >> >> > also<br>
> >> >> > understand that you made your effort to write good code. Your code<br>
> >> >> > seems<br>
> >> >> > to<br>
> >> >> > be a straightforward implementation of the ABI if I understand it<br>
> >> >> > correctly.<br>
> >> >> > But still new code inevitably adds complexity, and that's<br>
> >> >> > particularly<br>
> >> >> > true<br>
> >> >> > for this patch that introduces a new notion of "multi-GOT" only for<br>
> >> >> > MIPS.<br>
> >> >> > Also, it is not my fault to say that this feature is too odd, because<br>
> >> >> > I<br>
> >> >> > think it's a consequence of MIPS ABI's peculiarities. I believe many<br>
> >> >> > peculiarities in the MIPS ABI could have been fixed by now since they<br>
> >> >> > were<br>
> >> >> > implemented more than 10 years ago.<br>
> >> >> ><br>
> >> >> > I really do not want to add this much complexity to our relocation<br>
> >> >> > processing code which is already too complicated. Even I don't<br>
> >> >> > understand<br>
> >> >> > the exact behavior of the current code, and I'm am trying to refactor<br>
> >> >> > that<br>
> >> >> > code now. This patch could make my refactoring impossible.<br>
> >> >> ><br>
> >> >> >> Performance degradation in case of using -mxgot depends on<br>
> >> >> >> application. My tests show that application use -mxgot slower on<br>
> >> >> >> 1%-4%. But it's more important that there are large applications<br>
> >> >> >> which<br>
> >> >> >> cannot be linked without multi-GOT at all even if they built with<br>
> >> >> >> -mxgot option. Because there are some relocations which operate by<br>
> >> >> >> 16-bit GOT index only.<br>
> >> >> >><br>
> >> >><br>
> >> >> I don't necessarily disagree, but what you're saying is true for a<br>
> >> >> bunch of features in MIPS, which is the in-tree lld backend with more,<br>
> >> >> let's say, "peculiarities". I'm under the impression that as a project<br>
> >> >> we should make a call and decide whether we want to support the MIPS<br>
> >> >> ABI entirely or just don't support it at all (unless there's an OK<br>
> >> >> reason to drop some features). In this case, unless I'm reading the<br>
> >> >> patch incorrectly, this is needed to link/self-host clang/lld, so this<br>
> >> >> feature seems needed (in some form). What do you think?<br>
> >> ><br>
> >> ><br>
> >> > We should support MIPS, but my point is that 1) the current code is<br>
> >> > already<br>
> >> > complicated that even I do not understand, and 2) this patch will likely<br>
> >> > to<br>
> >> > make it impossible to hack anymore because of an additional complexity.<br>
> >> > So<br>
> >> > adding this code right now is not a good idea. I want to explore other<br>
> >> > way<br>
> >> > to circumvent this ABI, and if it is impossible to do, I want to<br>
> >> > implement<br>
> >> > it in a really good way, probably after cleaning up the current code<br>
> >> > with<br>
> >> > the multi-GOT in mind.<br>
> >><br>
> >> As to me, "cleaning up the current code with the multi-GOT in mind" while<br>
> >> "even I do not understand" is not the best strategy. Various parts of LLVM<br>
> >> code are successfully refactored constantly and it does not prevent<br>
> >> implementation<br>
> >> of new features, targets, ABIs.<br>
> ><br>
> ><br>
> > If it is designed cleanly, it might be true, but this is not the case. I<br>
> > found that in order to refactor the code for relocation processing, I had to<br>
> > understand the every detail of all architectures that LLD currently<br>
> > supports, and editing it without breaking the existing implementation is<br>
> > incredibly hard. And again, since MIPS is pretty different from other ABIs,<br>
> > it is always the largest roadblock.<br>
> ><br>
> >> One more point is your desire "to implement it in a really good way".<br>
> >> Could<br>
> >> you please describe shortcomings of the current implementation? Probably<br>
> >> if I know them, I will be able to make multi-GOT better.<br>
> ><br>
> ><br>
> > The ABI is just too complicated. We already have probably too much code for<br>
> > MIPS, while other ABIs are straightforward to support. If I knew that the<br>
> > current MIPS ABI is this much different from other ELF ABIs from the<br>
> > beginning, we could have this discussion before start working on MIPS. But<br>
> > the real situation is that MIPS-specific features were added one at a time<br>
> > without presenting the whole picture and grows to the point that I start<br>
> > thinking if we really wanted this situation.<br>
><br>
> You say that MIPS ABI is always the largest roadblock. Why I have<br>
> never listened from you or somebody else something like "I try to<br>
> refactor this code but MIPS specific part prevents me to do this" or<br>
> "I reorganized this code and made it cleaner but now some MIPS tests<br>
> failed"?<br>
><br>
> LLD code contains ~20 "if (Config->EMachine == EM_MIPS)" statements<br>
> for ~20000 lines of LLD code. Some of this "if" are just for adding<br>
> MIPS specific dynamic table entries and for definition of MIPS<br>
> specific symbols. Am I the only who do not think that it's<br>
> unacceptable price for supporting one more widely used architecture by<br>
> LLD? In fact, more than one architecture because MIPS32 / MIPS64 can<br>
> be considered as a separate targets.<br>
><br>
> > Is "multi-GOT" the last feature you want for MIPS? I wonder if there any<br>
> > more peculiarities in the MIPS ABI.<br>
><br>
> Now I do not know an answer on this question. For example LLD does not<br>
> support microMIPS ABI. It is something like ARM Thumb. microMIPS<br>
> implementation probably adds 3-5 new "if (MIPS)" expressions in the<br>
> LLD code. A few week ago I though it is not a problem. Now I'm not<br>
> sure.<br>
><br>
> >> And last but not least, what about at least rough time estimations? I<br>
> >> would<br>
> >> like to include multi-GOT in the next (4.1 ?) release of LLD because now<br>
> >> LLD<br>
> >> on MIPS is just partly usable. When do you plan to finish the LLD<br>
> >> refactoring<br>
> >> so it will be ready to include multi-GOT implementation?<br>
> ><br>
> ><br>
> > I cannot promise, but I personally want to finish it in a few months.<br>
> > However, finishing refactoring doesn't immediately mean that we want MIPS<br>
> > multi-GOT support, as I wish to reduce complexity that MIPS brings in.<br>
> ><br>
> >> > Also, the MIPS ABI needs updating. Only MIPS is very weird among ELF<br>
> >> > ABIs.<br>
> >> > Someone really needs to make an effort to streamline it. I'm ok to<br>
> >> > accept<br>
> >> > MIPS peculiarities if it is transient ("transient" can be like 10<br>
> >> > years),<br>
> >> > but if no effort is being made to make it compatible with other ELF<br>
> >> > ABIs, I<br>
> >> > think I can say "no, this really needs fixing."<br>
> >><br>
> >> New ABI is under development / discussions but transient period will be<br>
> >> large<br>
> >> because part of the MIPS ABI peculiarities have a hardware nature.<br>
> ><br>
> ><br>
> > Where is it discussed?<br>
><br>
> I'm sorry but I cannot provide any details.<br>
><br>
> > I could imagine that if the new ABI will greatly simplified the MIPS ABI,<br>
> > we'd be able to have a choice to support only the new ABI in LLD and<br>
> > continue using the existing linker for the old ABI.<br>
> ><br>
> > I'm sorry to say this, but as you know I don't really like the current MIPS<br>
> > ABI and the current situation that no improvements seem to have been made to<br>
> > improve it, although it could have been fixed, say, 10 years ago. I don't<br>
> > like to blindly support it just because it is the current ABI.<br>
><br>
> Do you suggest to drop MIPS support from LLD? Multi-GOT is essential<br>
> feature and without it the linker is not completely useless but<br>
> definitely cannot be named as a linker for MIPS targets. For example,<br>
> guys who work on FreeBSD will never be able to make LLD a system<br>
> linker for MIPS targets. Do you think it is a good price for keeping<br>
> the LLD code cleaner?<br>
<br>
</div></div>Hi Rui,<br>
<br>
I'd like to find out what your expectation would be about MIPS getting a new ABI?<br>
I'm sure you will be aware of the great pains every architecture endures to<br>
provide compatibility when extending either hardware architecture or software ABI<br>
features. Changing an ABI in an incompatible way or simply inventing a new ABI<br>
entirely means a complete binary break for all users. In that sense it means<br>
Debian mipsel, mips, mips64el distributions would be dead, Android mipsel would<br>
be dead, the BSDs could possibly survive better (as they are build-from-source<br>
distros as I understand) but the porting effort would be large.<br>
<br>
It is unfortunately us, as tools engineers, that bear the brunt of the effort to<br>
keep things working and as much as I 100% agree about the pain of dragging<br>
along weird MIPS history there are very few options for reducing its complexity<br>
without breaking compatibility. The last ABI change for MIPS was to extend o32<br>
to allow the use of 64-bit FPRs and the design and implementation of just that<br>
tweak took nearly 18 months end-to-end.<br>
<br>
Having been exposed to MIPS ABIs now for several years I have come to realise<br>
that the oddities in MIPS are not half-hearted nor without merit as you can<br>
usually find a performance/size/safety reason for the feature but the effort<br>
to implement them is often high.<br>
<br>
While I know that other architectures have added new ABIs I am not aware of any<br>
major architecture creating a breaking change in its main ABI or dropping its<br>
main ABI (at least not unless the architecture changed such that the ABI could<br>
not be supported anymore).<br>
<br>
None of this helps of course in trying to keep LLD's internals clean unless each<br>
oddity is promoted to a first class feature. There is always the chance that this<br>
would lead to other architectures using the feature... because it would be easy.<br>
multi-GOT is quite difficult to understand and implement but the same can<br>
be said about almost every aspect of dynamic linking; it's just that other<br>
oddities are commonly known now and accepted. I would say TLS fits into the same<br>
category as multi-GOT when it was first conceived.<br>
<br>
Obviously each project will make decisions about what architectures to support<br>
and also how much history to cope with but in this instance I believe we are<br>
looking at a support MIPS or not kind of decision. In terms of adding MIPS<br>
features to LLD I believe Simon's approach is the only possible way with fast<br>
moving projects related to LLVM as the infrastructure changes so fast that you<br>
have to design and submit small pieces. I'm not sure it would ever have been<br>
possible to deep dive into every MIPS ABI feature up front in LLD and get them<br>
accounted for in the design as it is almost always true that community maintained<br>
projects are cautious about allowing features to be designed ahead of use in<br>
fear of the rest of the work never getting finished.<br>
<br>
I wish there was something we could do that would trivially reduce the complexity<br>
of MIPS ABIs but just absorbing all the subtleties of the current ABI let alone<br>
deciding both what is better and a compatibility story is easily years-worth of<br>
dedicated design. The benefit of which is not likely to register to ordinary<br>
users so the impetus is low.<br>
<br>
Thanks,<br>
Matthew<br>
</blockquote></div><br></div></div>