UNDER CONSTRUCTIONIn my previous post, LLVMintegrated assembler: Improving MCExpr and MCValuedelved intoenhancements made to LLVM's internal MCExpr and MCValue representations.This post covers recent refinements to MC, focusing on expressionresolving and relocation generation.Symbol equating directivesIn GNU Assembler, the following directives are called symbolequating. I have re-read its documentation https://sourceware.org/binutils/docs/as.html. Yes, ituses "equating" instead of "assignment" or "definition".symbol = expression(multiple=on thesame symbol is allowed).set symbol, expression(equ
...
继续阅读
(18)