| /openbsd-src/gnu/gcc/gcc/config/avr/ |
| H A D | avr.c | 701 AS1 (push,__zero_reg__) CR_TAB in avr_output_function_prologue() 702 AS1 (push,__tmp_reg__) CR_TAB in avr_output_function_prologue() 704 AS1 (push,__tmp_reg__) CR_TAB in avr_output_function_prologue() 705 AS1 (clr,__zero_reg__) "\n"); in avr_output_function_prologue() 711 AS1 (ldi,r28) ",lo8(%s - " HOST_WIDE_INT_PRINT_DEC ")" CR_TAB in avr_output_function_prologue() 712 AS1 (ldi,r29) ",hi8(%s - " HOST_WIDE_INT_PRINT_DEC ")" CR_TAB in avr_output_function_prologue() 722 AS1 (ldi, r26) ",lo8(" HOST_WIDE_INT_PRINT_DEC ")" CR_TAB in avr_output_function_prologue() 723 AS1 (ldi, r27) ",hi8(" HOST_WIDE_INT_PRINT_DEC ")" CR_TAB), size, size); in avr_output_function_prologue() 732 fprintf (file, AS1 (jmp,__prologue_saves__+%d) "\n", in avr_output_function_prologue() 738 fprintf (file, AS1 (rjmp,__prologue_saves__+%d) "\n", in avr_output_function_prologue() [all …]
|
| H A D | avr.md | 486 AS1 (brne,.-6)); 491 AS1 (brne,.-8)); 1014 AS1 (clr,%B0)); 2066 return AS1 (jmp,%0); 2067 return AS1 (rjmp,%0); 2115 return AS1(%~call,%c0); 2152 return AS1(%~call,%c1); 2438 return AS1 (brcc,%2); 2440 return (AS1 (brcs,.+2) CR_TAB 2441 AS1 (rjmp,%2)); [all …]
|
| H A D | avr.h | 919 #define AS1(a,b) #a " " #b macro 921 #define AS1(a,b) "a b" macro 926 #define OUT_AS1(a,b) output_asm_insn (AS1(a,b), operands)
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/avr/ |
| H A D | avr.c | 664 AS1 (push,__zero_reg__) CR_TAB 665 AS1 (push,__tmp_reg__) CR_TAB 667 AS1 (push,__tmp_reg__) CR_TAB 668 AS1 (clr,__zero_reg__) "\n"); 696 fprintf (file, AS1 (jmp,__prologue_saves__+%d) "\n", 702 fprintf (file, AS1 (rjmp,__prologue_saves__+%d) "\n", 717 fprintf (file, "\t" AS1 (push,%s) "\n", avr_regnames[reg]); 724 AS1 (push,r28) CR_TAB 725 AS1 (push,r29) CR_TAB 808 fputs ("\t" AS1 (jmp,exit) "\n", file); [all …]
|
| H A D | avr.md | 408 AS1 (brne,.-8)); 414 AS1 (brne,.-10)); 476 AS1 (brne,.-6)); 481 AS1 (brne,.-8)); 1002 AS1 (clr,%B0)); 2058 return AS1 (jmp,%0); 2059 return AS1 (rjmp,%0); 2106 return AS1(%~call,%c0); 2139 return AS1(%~call,%c1); 2424 return AS1 (brcc,%2); [all …]
|
| H A D | avr.h | 2660 #define AS1(a,b) #a " " #b macro 2662 #define AS1(a,b) "a b" macro 2667 #define OUT_AS1(a,b) output_asm_insn (AS1(a,b), operands)
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/ip2k/ |
| H A D | ip2k.md | 623 AS1 (push, %H1%<) CR_TAB 624 AS1 (push, %H1%<) CR_TAB 625 AS1 (pop, %H0%>) CR_TAB 627 AS1 (pop, %H2%>) CR_TAB 723 AS1 (push, %C1%<) CR_TAB 724 AS1 (push, %B1%<) CR_TAB 725 AS1 (push, %A1%<) CR_TAB 726 AS1 (push, %C1%<) CR_TAB 727 AS1 (push, %B1%<) CR_TAB 728 AS1 (push, %A1%<) CR_TAB [all …]
|
| H A D | ip2k.h | 2444 #define AS1(a,b) #a "\t" #b macro 2446 #define AS1(a,b) "a b" macro 2449 #define OUT_AS1(a,b) output_asm_insn (AS1 (a,b), operands)
|
| H A D | ip2k.c | 243 fprintf (file, "\t" AS1 (push,%s) "\n", reg_names[reg]); 390 fprintf (file, "\t" AS1 (pop,%s) "\n", reg_names[reg]);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUAliasAnalysis.cpp | 49 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 D | AliasAnalysisEvaluator.cpp | 43 unsigned AS1 = Loc1.first->getType()->getPointerAddressSpace(); in PrintResults() local 55 std::swap(AS1, AS2); in PrintResults() 61 if (AS1 != 0) in PrintResults() 62 errs() << " addrspace(" << AS1 << ")"; in PrintResults()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | InferAddressSpaces.cpp | 237 unsigned joinAddressSpaces(unsigned AS1, unsigned AS2) const; 790 unsigned InferAddressSpacesImpl::joinAddressSpaces(unsigned AS1, in joinAddressSpaces() argument 792 if (AS1 == FlatAddrSpace || AS2 == FlatAddrSpace) in joinAddressSpaces() 795 if (AS1 == UninitializedAddressSpace) in joinAddressSpaces() 798 return AS1; in joinAddressSpaces() 801 return (AS1 == AS2) ? AS1 : FlatAddrSpace; in joinAddressSpaces()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1633 unsigned AS1 = B.Start->getType()->getPointerAddressSpace(); in addRuntimeChecks() local 1636 (AS1 == A.End->getType()->getPointerAddressSpace()) && in addRuntimeChecks() 1640 Type *PtrArithTy1 = Type::getInt8PtrTy(Ctx, AS1); in addRuntimeChecks()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaOverload.cpp | 10151 LangAS AS1 = CD1->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()
|