OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gas_flags
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
x86id.c
236
unsigned int
gas_flags
:9; /* Enabled for these GAS suffixes */
member in struct:x86_insn_info
641
unsigned int
gas_flags
= info->
gas_flags
;
local
670
if ((
gas_flags
& GAS_ONLY) && id_insn->parser != X86_PARSER_GAS)
672
if ((
gas_flags
& GAS_ILLEGAL) && id_insn->parser == X86_PARSER_GAS)
677
&& ((suffix & SUF_MASK) & (
gas_flags
& SUF_MASK)) == 0)
682
if (id_insn->parser == X86_PARSER_GAS && !(
gas_flags
& GAS_NO_REV))
[
all
...]
gen_x86_insn.py
346
gas_flags
= []
348
gas_flags
.append("GAS_ONLY")
350
gas_flags
.append("GAS_ILLEGAL")
352
gas_flags
.append("GAS_NO_REV")
354
gas_flags
.extend("SUF_%s" % x for x in sorted(self.suffixes))
355
gas_flags
= "|".join(
gas_flags
)
358
return "{ "+ ", ".join([
gas_flags
or "0",
[
all
...]
Completed in 472 milliseconds