HomeSort by: relevance | last modified time | path
    Searched defs:SA (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCObjectWriter.cpp 27 const MCSymbol &SA = A->getSymbol();
29 if (SA.isUndefined() || SB.isUndefined())
32 if (!SA.getFragment() || !SB.getFragment())
35 return isSymbolRefDifferenceFullyResolvedImpl(Asm, SA, SB, InSet);
MCExpr.cpp 591 const MCSymbol &SA = A->getSymbol();
594 if (SA.isUndefined() || SB.isUndefined())
603 if (Asm->isThumbFunc(&SA))
608 if (Asm->getBackend().isMicroMips(&SA))
616 const MCFragment *FA = SA.getFragment();
620 if (FA == FB && !SA.isVariable() && !SA.isUnset() && !SB.isVariable() &&
622 Addend += SA.getOffset() - SB.getOffset();
653 if (SA.isVariable() || SA.isUnset() || SB.isVariable() || SB.isUnset() |
    [all...]
MachObjectWriter.cpp 688 const MCSymbol &SA = findAliasedSymbol(SymA);
689 const MCSection &SecA = SA.getSection();
708 if (!SA.isInSection() || &SecA != &SecB ||
709 (!SA.isTemporary() && FB.getAtom() != SA.getFragment()->getAtom() &&
721 SA.isTemporary() && SA.isInSection() && &SecA == &SecB){
730 const MCFragment *FA = SA.getFragment();
MCAssembler.cpp 240 const MCSymbol &SA = A->getSymbol();
241 if (A->getKind() != MCSymbolRefExpr::VK_None || SA.isUndefined()) {
246 *this, SA, *DF, false, true);
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ObjCARCAliasAnalysis.cpp 47 const Value *SA = GetRCIdentityRoot(LocA.Ptr);
50 AAResultBase::alias(MemoryLocation(SA, LocA.Size, LocA.AATags),
57 const Value *UA = GetUnderlyingObjCPtr(SA);
59 if (UA != SA || UB != SB) {
DemandedBits.cpp 153 const APInt *SA;
156 // SA % BW == SA & (BW - 1).
159 } else if (match(II->getOperand(2), m_APInt(SA))) {
162 uint64_t ShiftAmt = SA->urem(BitWidth);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
ModuleDepCollector.cpp 45 auto SA = [&Strings](const Twine &Arg) { return Strings.save(Arg).data(); };
49 CI.generateCC1CommandLine(Args, SA);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
RDFCopy.cpp 63 void CopyPropagation::recordCopy(NodeAddr<StmtNode*> SA, EqualityMap &EM) {
64 CopyMap.insert(std::make_pair(SA.Id, EM));
65 Copies.push_back(SA.Id);
74 NodeAddr<StmtNode*> SA = IA;
76 if (interpretAsCopy(SA.Addr->getCode(), EM))
77 recordCopy(SA, EM);
138 auto SA = DFG.addr<InstrNode*>(C);
139 auto FS = CopyMap.find(SA.Id);
144 for (NodeAddr<DefNode*> DA : SA.Addr->members_if(DFG.IsDef, DFG)) {
153 NodeId AtCopy = getLocalReachingDef(SR, SA);
    [all...]
HexagonRDFOpt.cpp 165 NodeAddr<StmtNode*> SA = TA;
166 for (NodeAddr<RefNode*> RA : SA.Addr->members(DFG)) {
167 R2I.insert(std::make_pair(RA.Id, SA.Id));
169 if (!DeadInstrs.count(SA.Id))
170 PartlyDead.insert(SA.Id);
180 auto SA = DFG.addr<StmtNode*>(N);
182 dbgs() << "Partly dead: " << *SA.Addr->getCode();
183 Changed |= rewrite(SA, Remove);
HexagonOptAddrMode.cpp 105 bool allValidCandidates(NodeAddr<StmtNode *> SA, NodeList &UNodeList);
212 bool HexagonOptAddrMode::allValidCandidates(NodeAddr<StmtNode *> SA,
244 void HexagonOptAddrMode::getAllRealUses(NodeAddr<StmtNode *> SA,
246 for (NodeAddr<DefNode *> DA : SA.Addr->members_if(DFG->IsDef, *DFG)) {
608 NodeAddr<StmtNode *> SA = AddAslUN.Addr->getOwner(*DFG);
613 getAllRealUses(SA, UNodeList);
695 NodeAddr<StmtNode *> SA = IA;
696 MachineInstr *MI = SA.Addr->getCode();
708 getAllRealUses(SA, UNodeList);
710 if (!allValidCandidates(SA, UNodeList)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SplitKit.h 267 SplitAnalysis &SA;
460 /// Create a new SplitEditor for editing the LiveInterval analyzed by SA.
462 SplitEditor(SplitAnalysis &SA, AAResults &AA, LiveIntervals &LIS,
RDFGraph.cpp 847 NodeAddr<StmtNode*> SA = newNode(NodeAttrs::Code | NodeAttrs::Stmt);
848 SA.Addr->setCode(MI);
849 Owner.Addr->addMember(SA, *this);
850 return SA;
1246 NodeAddr<StmtNode*> SA = newStmt(BA, &In);
1307 NodeAddr<DefNode*> DA = newDef(SA, Op, Flags);
1308 SA.Addr->addMember(DA, *this);
1321 NodeAddr<DefNode*> DA = newDef(SA, Op, Flags);
1322 SA.Addr->addMember(DA, *this);
1356 NodeAddr<DefNode*> DA = newDef(SA, Op, Flags)
    [all...]
RegAllocGreedy.cpp 341 std::unique_ptr<SplitAnalysis> SA;
1231 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks();
1271 SA->getFirstSplitPoint(BC.Number)))
1277 if (Intf.last() >= SA->getLastSplitPoint(BC.Number)) {
1330 SA->getFirstSplitPoint(Number)))
1339 if (Intf.last() >= SA->getLastSplitPoint(Number))
1357 BitVector Todo = SA->getThroughBlocks();
1413 if (!SA->getNumThroughBlocks())
1453 /// SA around all use blocks instead of forming bundle regions.
1456 ArrayRef<SplitAnalysis::BlockInfo> UseBlocks = SA->getUseBlocks()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/
RISCVAsmBackend.cpp 359 const MCSymbol &SA = A->getSymbol();
360 if (A->getKind() != MCSymbolRefExpr::VK_None || SA.isUndefined())
368 Asm, SA, *AUIPCDF, false, true);
372 Value = Layout.getSymbolOffset(SA) + AUIPCTarget.getConstant();
  /src/external/gpl3/binutils/dist/opcodes/
msp430-decode.c 91 #define SA(a) OP (1, MSP430_Operand_Indirect, MSR_None, a)
217 SA (x + ld->pc + ld->op_ptr - 2);
221 SA (x);
242 SA (0);
426 ID (MSO_mov); SA ((srcr << 16) + IMMU(2)); DR (dstr);
1955 ID (MSO_call); SA (IMMU(2) | (extb << 16));
1993 ID (MSO_call); SA (pc + raddr + msp430->n_bytes);
  /src/external/gpl3/binutils.old/dist/opcodes/
msp430-decode.c 91 #define SA(a) OP (1, MSP430_Operand_Indirect, MSR_None, a)
217 SA (x + ld->pc + ld->op_ptr - 2);
221 SA (x);
242 SA (0);
426 ID (MSO_mov); SA ((srcr << 16) + IMMU(2)); DR (dstr);
1955 ID (MSO_call); SA (IMMU(2) | (extb << 16));
1993 ID (MSO_call); SA (pc + raddr + msp430->n_bytes);
  /src/external/gpl3/gdb/dist/opcodes/
msp430-decode.c 91 #define SA(a) OP (1, MSP430_Operand_Indirect, MSR_None, a)
217 SA (x + ld->pc + ld->op_ptr - 2);
221 SA (x);
242 SA (0);
426 ID (MSO_mov); SA ((srcr << 16) + IMMU(2)); DR (dstr);
1955 ID (MSO_call); SA (IMMU(2) | (extb << 16));
1993 ID (MSO_call); SA (pc + raddr + msp430->n_bytes);
  /src/external/gpl3/gdb/dist/sim/microblaze/
microblaze.h 34 #define SA CPU.spregs[IMM & 0x1]
  /src/external/gpl3/gdb.old/dist/opcodes/
msp430-decode.c 91 #define SA(a) OP (1, MSP430_Operand_Indirect, MSR_None, a)
217 SA (x + ld->pc + ld->op_ptr - 2);
221 SA (x);
242 SA (0);
426 ID (MSO_mov); SA ((srcr << 16) + IMMU(2)); DR (dstr);
1955 ID (MSO_call); SA (IMMU(2) | (extb << 16));
1993 ID (MSO_call); SA (pc + raddr + msp430->n_bytes);
  /src/external/gpl3/gdb.old/dist/sim/microblaze/
microblaze.h 34 #define SA CPU.spregs[IMM & 0x1]
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.h 37 ScratchAlloc(const ScratchAlloc &SA);
240 ScratchAlloc SA;
311 ScratchAlloc &SA);
325 CXIndexDataConsumer &IdxCtx, ScratchAlloc &SA);
468 ScratchAlloc &SA);
484 inline ScratchAlloc::ScratchAlloc(const ScratchAlloc &SA) : IdxCtx(SA.IdxCtx) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp 531 const APInt *SA;
532 if (match(I->getOperand(1), m_APInt(SA))) {
536 if (Value *R = simplifyShrShlDemandedBits(Shr, *ShrAmt, I, *SA,
540 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth-1);
589 const APInt *SA;
590 if (match(I->getOperand(1), m_APInt(SA))) {
591 uint64_t ShiftAmt = SA->getLimitedValue(BitWidth-1);
630 const APInt *SA;
631 if (match(I->getOperand(1), m_APInt(SA))) {
632 uint32_t ShiftAmt = SA->getLimitedValue(BitWidth-1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
Reassociate.cpp 1074 auto *SA = cast<ConstantInt>(Shl->getOperand(1));
1075 MulCst = ConstantExpr::getShl(MulCst, SA);
1093 if (NSW && (NUW || SA->getValue().ult(BitWidth - 1)))
  /src/external/mpl/dhcp/bind/dist/lib/irs/
getaddrinfo.c 160 #define SA(addr) ((struct sockaddr *)(addr))
1291 ai->ai_addr = SA(calloc(1, addrlen));
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeMIPS_common.c 80 #define SA(s) ((s) << 21)
590 FAIL_IF(push_inst(compiler, ADDU_W | SA(4) | TA(0) | D(SLJIT_S0), DR(SLJIT_S0)));
592 FAIL_IF(push_inst(compiler, ADDU_W | SA(5) | TA(0) | D(SLJIT_S1), DR(SLJIT_S1)));
594 FAIL_IF(push_inst(compiler, ADDU_W | SA(6) | TA(0) | D(SLJIT_S2), DR(SLJIT_S2)));
653 FAIL_IF(push_inst(compiler, JR | SA(RETURN_ADDR_REG), UNMOVABLE_INS));
785 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | SA(tmp_ar) | TA(reg_ar), delay_slot);
803 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | SA(tmp_ar) | TA(reg_ar), delay_slot);
857 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | SA(tmp_ar) | TA(reg_ar), delay_slot);
1532 return push_inst(compiler, ADDU_W | SA(RETURN_ADDR_REG) | TA(0) | D(dst), DR(dst));
1551 FAIL_IF(push_inst(compiler, JR | SA(RETURN_ADDR_REG), UNMOVABLE_INS))
    [all...]

Completed in 67 milliseconds

1 2