/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | RDFDeadCode.cpp | 128 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) in collect() 129 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) in collect() 157 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) { in collect() 158 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in collect() 188 auto BA = DFG.addr<NodeBase*>(I); in erase() local 189 uint16_t Type = BA.Addr->getType(); in erase() 196 uint16_t Kind = BA.Addr->getKind(); in erase() 198 for (auto N : NodeAddr<CodeNode*>(BA).Addr->members(DFG)) in erase() 232 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in erase() local 233 BA in erase() [all...] |
H A D | RDFGraph.h | 786 static bool IsRef(const NodeAddr<NodeBase*> BA) { in IsRef() 787 return BA.Addr->getType() == NodeAttrs::Ref && in IsRef() 788 BA.Addr->getKind() == Kind; in IsRef() 792 static bool IsCode(const NodeAddr<NodeBase*> BA) { in IsCode() 793 return BA.Addr->getType() == NodeAttrs::Code && in IsCode() 794 BA.Addr->getKind() == Kind; in IsCode() 797 static bool IsDef(const NodeAddr<NodeBase*> BA) { in IsDef() 798 return BA.Addr->getType() == NodeAttrs::Ref && in IsDef() 799 BA.Addr->getKind() == NodeAttrs::Def; in IsDef() 802 static bool IsUse(const NodeAddr<NodeBase*> BA) { in IsUse() [all...] |
H A D | RDFGraph.cpp | 853 NodeAddr<BlockNode*> BA = newNode(NodeAttrs::Code | NodeAttrs::Block); in newBlock() local 854 BA.Addr->setCode(BB); in newBlock() 855 Owner.Addr->addMember(BA, *this); in newBlock() 856 return BA; in newBlock() 874 NodeAddr<BlockNode*> BA = newBlock(Func, &B); in build() local 875 BlockNodes.insert(std::make_pair(&B, BA)); in build() 879 buildStmt(BA, I); in build() 888 for (NodeAddr<BlockNode*> BA : Blocks) in build() 889 for (NodeAddr<InstrNode*> IA : BA.Addr->members(*this)) in build() 921 for (NodeAddr<BlockNode*> BA in build() 1248 buildStmt(NodeAddr<BlockNode*> BA, MachineInstr &In) buildStmt() argument 1383 recordDefsForDF(BlockRefsMap &PhiM, NodeAddr<BlockNode*> BA) recordDefsForDF() argument 1423 buildPhis(BlockRefsMap &PhiM, RegisterSet &AllRefs, NodeAddr<BlockNode*> BA) buildPhis() argument 1557 NodeAddr<BlockNode*> BA = PA.Addr->getOwner(*this); removeUnusedPhis() local 1643 linkBlockRefs(DefStackMap &DefM, NodeAddr<BlockNode*> BA) linkBlockRefs() argument [all...] |
H A D | RDFLiveness.cpp | 174 NodeAddr<BlockNode*> BA = PA.Addr->getOwner(DFG); in getAllReachingDefs() 175 return BA.Addr->getCode(); in getAllReachingDefs() 182 MachineBasicBlock *BA = Block(OA), *BB = Block(OB); in getAllReachingDefs() 183 if (BA != BB) in getAllReachingDefs() 184 return MDT.dominates(BB, BA); in getAllReachingDefs() 324 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); in getNearestAliasedRef() local 325 NodeList Ins = BA.Addr->members(DFG); in getNearestAliasedRef() 362 MachineBasicBlock *BB = BA.Addr->getCode(); in getNearestAliasedRef() 363 BA = NodeAddr<BlockNode*>(); in getNearestAliasedRef() 366 BA in getNearestAliasedRef() 1002 NodeAddr<BlockNode*> BA = IA.Addr->getOwner(DFG); traverse() local [all...] |
H A D | RDFCopy.cpp | 70 NodeAddr<BlockNode*> BA = DFG.findBlock(B); in scanBlock() local 72 for (NodeAddr<InstrNode*> IA : BA.Addr->members(DFG)) { in scanBlock()
|
H A D | HexagonRDFOpt.cpp | 163 for (NodeAddr<BlockNode*> BA : DFG.getFunc().Addr->members(DFG)) { in run() 164 for (auto TA : BA.Addr->members_if(DFG.IsCode<NodeAttrs::Stmt>, DFG)) { in run()
|
H A D | HexagonConstExtenders.cpp | 344 const BlockAddress *BA; // MO_BlockAddress member 524 OS << "blk:" << *ER.V.BA; in operator <<() 708 V.BA = Op.getBlockAddress(); in ExtRoot() 742 const BasicBlock *ThisB = V.BA->getBasicBlock(); in operator <() 743 const BasicBlock *OtherB = ER.V.BA->getBasicBlock(); in operator <() 785 return MachineOperand::CreateBA(V.BA, Offset, TF); in operator MachineOperand() 1973 const MachineBasicBlock *BA = MA->getParent(); in runOnMachineFunction() 1975 assert(BA->getNumber() != -1 && BB->getNumber() != -1); in runOnMachineFunction() 1976 if (BA != BB) in runOnMachineFunction() 1977 return BA in runOnMachineFunction() [all...] |
H A D | HexagonOptAddrMode.cpp | 91 bool processBlock(NodeAddr<BlockNode *> BA); 687 bool HexagonOptAddrMode::processBlock(NodeAddr<BlockNode *> BA) { in processBlock() argument 690 for (auto IA : BA.Addr->members(*DFG)) { in processBlock() 806 for (NodeAddr<BlockNode *> BA : FA.Addr->members(*DFG)) in runOnMachineFunction() 807 Changed |= processBlock(BA); in runOnMachineFunction()
|
/third_party/mesa3d/src/panfrost/util/ |
H A D | lcra.c | 102 unsigned BA = l->alignment[node]; in lcra_restrict_range() local 103 unsigned alignment = (BA & 0xffff) - 1; in lcra_restrict_range() 104 unsigned bound = BA >> 16; in lcra_restrict_range() 168 unsigned BA = l->alignment[step]; in lcra_solve() local 169 unsigned shift = (BA & 0xffff) - 1; in lcra_solve() 170 unsigned bound = BA >> 16; in lcra_solve()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | IndirectBrExpandPass.cpp | 136 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runOnFunction() local 140 if (!BA->isConstantUsed()) in runOnFunction() 148 auto *ITy = cast<IntegerType>(DL.getIntPtrType(BA->getType())); in runOnFunction() 155 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(BBIndexC, BA->getType())); in runOnFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ScalarEvolutionAliasAnalysis.cpp | 54 const SCEV *BA = SE.getMinusSCEV(BS, AS); in alias() local 59 if (ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 60 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax())) in alias()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SplitModule.cpp | 136 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions() 137 if (!BA || !BA->isConstantUsed()) in findPartitions() 139 addAllGlobalValueUsers(GVtoClusterMap, F, BA); in findPartitions()
|
H A D | ValueMapper.cpp | 181 Value *mapBlockAddress(const BlockAddress &BA); 415 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) in mapValue() 416 return mapBlockAddress(*BA); in mapValue() 490 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress() argument 491 Function *F = cast<Function>(mapValue(BA.getFunction())); in mapBlockAddress() 498 DelayedBBs.push_back(DelayedBasicBlock(BA)); in mapBlockAddress() 501 BB = cast_or_null<BasicBlock>(mapValue(BA.getBasicBlock())); in mapBlockAddress() 504 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock()); in mapBlockAddress()
|
H A D | Local.cpp | 303 if (auto *BA = in ConstantFoldTerminator() 305 BasicBlock *TheOnlyDest = BA->getBasicBlock(); in ConstantFoldTerminator() 332 if (BA->use_empty()) in ConstantFoldTerminator() 333 BA->destroyConstant(); in ConstantFoldTerminator() 706 BlockAddress *BA = BlockAddress::get(DestBB); in MergeBasicBlockIntoOnlyPred() local 708 ConstantInt::get(Type::getInt32Ty(BA->getContext()), 1); in MergeBasicBlockIntoOnlyPred() 709 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, in MergeBasicBlockIntoOnlyPred() 710 BA->getType())); in MergeBasicBlockIntoOnlyPred() 711 BA->destroyConstant(); in MergeBasicBlockIntoOnlyPred()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | LazyCallGraph.h | 1089 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) { in visitReferences() 1092 if (Visited.count(BA->getFunction())) in visitReferences() 1097 if (llvm::all_of(BA->users(), [&](User *U) { in visitReferences() 1099 return I->getFunction() == BA->getFunction(); in visitReferences() 1105 Visited.insert(BA->getFunction()); in visitReferences() 1106 Worklist.push_back(BA->getFunction()); in visitReferences()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFAsmPrinter.cpp | 94 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 95 O << BA->getName(); in printOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 193 const BlockAddress *BA; // For MO_BlockAddress. member 568 return Contents.OffsetedInfo.Val.BA; in getBlockAddress() 854 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset, 857 Op.Contents.OffsetedInfo.Val.BA = BA;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | BasicBlock.cpp | 75 BlockAddress *BA = cast<BlockAddress>(user_back()); in ~BasicBlock() local 76 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, in ~BasicBlock() 77 BA->getType())); in ~BasicBlock() 78 BA->destroyConstant(); in ~BasicBlock()
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | upsampling_msa.c | 227 BA = ORI_B(tmp0, 0x0f); \ 465 v16u8 R, G, B, RG, BA, tmp0, tmp1; in YuvToRgba4444Line() local 468 CALC_RGBA4444(y, u, v, BA, RG, 16, dst); in YuvToRgba4444Line() 470 CALC_RGBA4444(y, u, v, RG, BA, 16, dst); in YuvToRgba4444Line() 482 CALC_RGBA4444(temp, u, v, BA, RG, 16, temp); in YuvToRgba4444Line() 484 CALC_RGBA4444(temp, u, v, RG, BA, 16, temp); in YuvToRgba4444Line() 491 CALC_RGBA4444(temp, u, v, BA, RG, 8, temp); in YuvToRgba4444Line() 493 CALC_RGBA4444(temp, u, v, RG, BA, 8, temp); in YuvToRgba4444Line()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
H A D | LanaiAsmPrinter.cpp | 86 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); in printOperand() local 87 O << BA->getName(); in printOperand()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
H A D | SparcInstrInfo.cpp | 143 static bool isUncondBranchOpcode(int Opc) { return Opc == SP::BA; } in isUncondBranchOpcode() 255 BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB); in insertBranch() 269 BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB); in insertBranch() 285 if (I->getOpcode() != SP::BA in removeBranch()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGDumper.cpp | 727 } else if (const BlockAddressSDNode *BA = 729 int64_t offset = BA->getOffset(); 731 BA->getBlockAddress()->getFunction()->printAsOperand(OS, false); 733 BA->getBlockAddress()->getBasicBlock()->printAsOperand(OS, false); 739 if (unsigned int TF = BA->getTargetFlags())
|
/third_party/node/deps/v8/src/base/numbers/ |
H A D | cached-powers.cc | 40 {0x964E'858C'91BA'2655, -422, -108}, {0xDFF9'7724'7029'7EBD, -396, -100},
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinterInlineAsm.cpp | 461 const BlockAddress *BA = MI->getOperand(OpNo).getBlockAddress(); in EmitGCCInlineAsmStr() local 462 MCSymbol *Sym = AP->GetBlockAddressSymbol(BA); in EmitGCCInlineAsmStr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | OnDiskHashTable.h | 76 llvm::SpecificBumpPtrAllocator<Item> BA; member in llvm::OnDiskChainedHashTableGenerator 130 insert(Buckets, NumBuckets, new (BA.Allocate()) Item(Key, Data, InfoObj)); in insert()
|