Home
last modified time | relevance | path

Searched refs:AS2 (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/gcc/gcc/config/avr/
H A Davr.c574 fprintf (file, (AS2 (subi, r28, %d) CR_TAB), adj); in out_adj_frame_ptr()
579 fprintf (file, (AS2 (subi, r28, lo8(%d)) CR_TAB in out_adj_frame_ptr()
580 AS2 (sbci, r29, hi8(%d)) CR_TAB), in out_adj_frame_ptr()
586 fprintf (file, (AS2 (adiw, r28, %d) CR_TAB), -adj); in out_adj_frame_ptr()
591 fprintf (file, (AS2 (sbiw, r28, %d) CR_TAB), adj); in out_adj_frame_ptr()
623 fprintf (file, AS2 (in, __tmp_reg__, __SREG__) CR_TAB); in out_set_stack_ptr()
638 fprintf (file, AS2 (out, __SP_H__, r29) CR_TAB); in out_set_stack_ptr()
647 fprintf (file, AS2 (out, __SREG__, __tmp_reg__) CR_TAB); in out_set_stack_ptr()
656 fprintf (file, AS2 (out, __SP_L__, r28) "\n"); in out_set_stack_ptr()
703 AS2 (in,__tmp_reg__,__SREG__) CR_TAB in avr_output_function_prologue()
[all …]
H A Davr.md484 return (AS2 (st,%a0+,__zero_reg__) CR_TAB
485 AS2 (sbiw,%A1,1) CR_TAB
488 return (AS2 (st,%a0+,__zero_reg__) CR_TAB
489 AS2 (subi,%A1,1) CR_TAB
490 AS2 (sbci,%B1,0) CR_TAB
996 return (AS2 (and,%A0,%A2) CR_TAB
997 AS2 (and,%B0,%B2));
1004 output_asm_insn (AS2 (andi,%A0,lo8(%2)), operands);
1006 output_asm_insn (AS2 (andi,%B0,hi8(%2)), operands);
1009 return (AS2 (andi,%A0,lo8(%2)) CR_TAB
[all …]
H A Davr.h916 #define AS2(a,b,c) #a " " #b "," #c macro
922 #define AS2(a,b,c) "a b,c" macro
927 #define OUT_AS2(a,b,c) output_asm_insn (AS2(a,b,c), operands)
/openbsd-src/gnu/usr.bin/gcc/gcc/config/avr/
H A Davr.c533 fprintf (file, (AS2 (subi, r28, %d) CR_TAB), adj);
538 fprintf (file, (AS2 (subi, r28, lo8(%d)) CR_TAB
539 AS2 (sbci, r29, hi8(%d)) CR_TAB),
545 fprintf (file, (AS2 (adiw, r28, %d) CR_TAB), -adj);
550 fprintf (file, (AS2 (sbiw, r28, %d) CR_TAB), adj);
585 fprintf (file, AS2 (in, __tmp_reg__, __SREG__) CR_TAB);
600 fprintf (file, AS2 (out, __SP_H__, r29) CR_TAB);
609 fprintf (file, AS2 (out, __SREG__, __tmp_reg__) CR_TAB);
618 fprintf (file, AS2 (out, __SP_L__, r28) "\n");
666 AS2 (in,__tmp_reg__,__SREG__) CR_TAB
[all …]
H A Davr.md405 return (AS2 (ld,__tmp_reg__,%a1+) CR_TAB
406 AS2 (st,%a0+,__tmp_reg__) CR_TAB
407 AS2 (sbiw,%A2,1) CR_TAB
410 return (AS2 (ld,__tmp_reg__,%a1+) CR_TAB
411 AS2 (st,%a0+,__tmp_reg__) CR_TAB
412 AS2 (subi,%A2,1) CR_TAB
413 AS2 (sbci,%B2,0) CR_TAB
474 return (AS2 (st,%a0+,__zero_reg__) CR_TAB
475 AS2 (sbiw,%A1,1) CR_TAB
478 return (AS2 (st,%a0+,__zero_reg__) CR_TAB
[all …]
H A Davr.h2657 #define AS2(a,b,c) #a " " #b "," #c macro
2663 #define AS2(a,b,c) "a b,c" macro
2668 #define OUT_AS2(a,b,c) output_asm_insn (AS2(a,b,c), operands)
/openbsd-src/gnu/usr.bin/gcc/gcc/config/ip2k/
H A Dip2k.md614 return AS2 (mov, w, %L1) CR_TAB
615 AS2 (mov, %L0, w) CR_TAB
616 AS2 (mov, %L2, w) CR_TAB
617 AS2 (mov, w, %H1) CR_TAB
618 AS2 (mov, %H0, w) CR_TAB
619 AS2 (mov, %H2, w);
622 return AS2 (mov, w, %L1) CR_TAB
626 AS2 (mov, %L0, w) CR_TAB
628 AS2 (mov, %L2, w);
708 return AS2 (mov, w, %A1) CR_TAB
[all …]
H A Dip2k.h2443 #define AS2(a,b,c) #a "\t" #b "," #c macro
2447 #define AS2(a,b,c) "a b,c" macro
2450 #define OUT_AS2(a,b,c) output_asm_insn (AS2 (a,b,c), operands)
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUAliasAnalysis.cpp49 static AliasResult getAliasResult(unsigned AS1, unsigned AS2) { in getAliasResult() argument
52 if (AS1 > AMDGPUAS::MAX_AMDGPU_ADDRESS || AS2 > AMDGPUAS::MAX_AMDGPU_ADDRESS) in getAliasResult()
72 return ASAliasRules[AS1][AS2]; in getAliasResult()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp44 unsigned AS2 = Loc2.first->getType()->getPointerAddressSpace(); in PrintResults() local
55 std::swap(AS1, AS2); in PrintResults()
65 if (AS2 != 0) in PrintResults()
66 errs() << " addrspace(" << AS2 << ")"; in PrintResults()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp237 unsigned joinAddressSpaces(unsigned AS1, unsigned AS2) const;
791 unsigned AS2) const { in joinAddressSpaces()
792 if (AS1 == FlatAddrSpace || AS2 == FlatAddrSpace) in joinAddressSpaces()
796 return AS2; in joinAddressSpaces()
797 if (AS2 == UninitializedAddressSpace) in joinAddressSpaces()
801 return (AS1 == AS2) ? AS1 : FlatAddrSpace; in joinAddressSpaces()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOverload.cpp10152 LangAS AS2 = CD2->getMethodQualifiers().getAddressSpace(); in isBetterOverloadCandidate() local
10153 if (AS1 != AS2) { in isBetterOverloadCandidate()
10154 if (Qualifiers::isAddressSpaceSupersetOf(AS2, AS1)) in isBetterOverloadCandidate()
10156 if (Qualifiers::isAddressSpaceSupersetOf(AS2, AS1)) in isBetterOverloadCandidate()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A DChangeLog.46573 * config/avr/avr.c (out_shift_with_cnt): Use AS2 macro.