Displaying 3 results from an estimated 3 matches for "appertains".
Did you mean:
appertained
2018 Jan 31
0
RFC: No Control Flow Check Attribute
...rgets of indirect call / jmp.
The `nocf_check` attribute indicates that no control-flow check will be performed on the attributed entity.
It disables -fcf-protection=<> for a specific entity to fine grain the HW control flow protection mechanism.
The flag is target independent and currently appertains to a function or function pointer.
The `nocf_check` attribute has two roles in the context of X86 IBT technology:
1. Appertains to a function - do not add ENDBR instruction at the beginning of the function.
2. Appertains to a function pointer - do not track the target function of this po...
2009 Jul 06
1
[LLVMdev] Mips -> DLX Modifications as Target
Hello,
Past few days I have been working on a DLX Target for LLVM using the
Mips Target as a base.
Coming along quite well, currently ran into two problems with my
sample/test program.
The main issue I am having is with respect to the following
(Note: I have already changed ADDui from ADDiu)
We have this
def ADDui : ArithI<0x09, "addui", add, simm16, immSExt16>;
However
2010 Jul 23
1
[LLVMdev] "Attribute" Translation
Hey all,
Could anyone give me any hint on how llvm-g++ translates the
"__attribute__" annotations (supported by GCC)?
(Has GCC already implemented the support for the C++0x attributes?)
Suppose a class definition as below:
template <typename T>
class __attribute__((may_alias)) list { ... };
I understand that each particular attribute may be handled
differently. Assuming that