Searched defs:BA (Results 1 - 25 of 25) sorted by relevance

/external/clang/test/CodeGenCXX/
H A D2010-03-09-AnonAggregate.cpp8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in union:MO::__anon2324::__anon2325::__anon2326
/external/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp51 const SCEV *BA = SE.getMinusSCEV(BS, AS); local
56 if (ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) &&
57 (-BSizeInt).uge(SE.getUnsignedRange(BA).getUnsignedMax()))
/external/guice/core/test/com/googlecode/guice/bundle/
H A DOSGiTestActivator.java145 public static class BA class in class:OSGiTestActivator
148 protected BA() {} method in class:OSGiTestActivator.BA
/external/llvm/lib/IR/
H A DBasicBlock.cpp76 BlockAddress *BA = cast<BlockAddress>(user_back()); local
77 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
78 BA->getType()));
79 BA->destroyConstant();
H A DConstants.cpp437 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
438 return BA->getFunction()->needsRelocation();
1432 BlockAddress *&BA = local
1434 if (!BA)
1435 BA = new BlockAddress(F, BB);
1437 assert(BA->getFunction() == F && "Basic block moved between functions");
1438 return BA;
1455 BlockAddress *BA = local
1457 assert(BA && "Refcount and block address map disagree!");
1458 return BA;
[all...]
/external/skia/src/core/
H A DSkPathMeasure.cpp130 SkScalar BA = B / A_2; local
131 if (0 == BA + C_2) {
136 SkScalar L = (2 * A_2 + BA + Sabc) / (BA + C_2);
/external/clang/lib/CodeGen/
H A DCodeGenAction.cpp684 BackendAction BA = static_cast<BackendAction>(Act); local
685 raw_pwrite_stream *OS = GetOutputStream(CI, InFile, BA);
686 if (BA != Backend_EmitNothing && !OS)
722 BA, CI.getDiagnostics(), CI.getHeaderSearchOpts(),
739 BackendAction BA = static_cast<BackendAction>(Act); local
741 raw_pwrite_stream *OS = GetOutputStream(CI, getCurrentFile(), BA);
742 if (BA != Backend_EmitNothing && !OS)
820 TheModule.get(), BA, OS, std::move(Index));
/external/llvm/include/llvm/CodeGen/
H A DMachineInstrBuilder.h142 const MachineInstrBuilder &addBlockAddress(const BlockAddress *BA, argument
145 MI->addOperand(*MF, MachineOperand::CreateBA(BA, Offset, TargetFlags));
H A DMachineOperand.h177 const BlockAddress *BA; // For MO_BlockAddress. member in union:llvm::MachineOperand::__anon11922::__anon11924::__anon11925
443 return Contents.OffsetedInfo.Val.BA;
673 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset,
676 Op.Contents.OffsetedInfo.Val.BA = BA;
H A DSelectionDAG.h514 SDValue getBlockAddress(const BlockAddress *BA, EVT VT,
517 SDValue getTargetBlockAddress(const BlockAddress *BA, EVT VT, argument
520 return getBlockAddress(BA, VT, Offset, true, TargetFlags);
/external/llvm/include/llvm/Support/
H A DOnDiskHashTable.h77 llvm::SpecificBumpPtrAllocator<Item> BA; member in class:llvm::OnDiskChainedHashTableGenerator
130 insert(Buckets, NumBuckets, new (BA.Allocate()) Item(Key, Data, InfoObj));
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp915 const BlockAddress *BA = local
917 MCSym = GetBlockAddressSymbol(BA);
H A DARMISelLowering.cpp2509 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
2513 CPAddr = DAG.getTargetConstantPool(BA, PtrVT, 4);
2518 ARMConstantPoolConstant::Create(BA, ARMPCLabelIndex,
/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.cpp804 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
805 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT);
/external/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp604 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); local
605 O << BA->getName();
/external/llvm/lib/Transforms/Utils/
H A DLocal.cpp247 if (BlockAddress *BA =
249 BasicBlock *TheOnlyDest = BA->getBasicBlock();
569 BlockAddress *BA = BlockAddress::get(DestBB); local
571 ConstantInt::get(llvm::Type::getInt32Ty(BA->getContext()), 1);
572 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
573 BA->getType()));
574 BA->destroyConstant();
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp322 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
323 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp1200 ConstantInt *BA = nullptr, *CA = nullptr; local
1201 if (match(Src, m_AShr(m_Shl(m_Trunc(m_Value(A)), m_ConstantInt(BA)),
1203 BA == CA && A->getType() == CI.getType()) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1487 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
1493 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT);
1497 SDValue A = DAG.getTargetBlockAddress(BA, PtrVT, 0, HexagonII::MO_PCREL);
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp733 BlockAddress *BA = dyn_cast<BlockAddress>(*UI); local
735 if (BA) {
736 BA->replaceAllUsesWith(
737 BlockAddress::get(NewF, BA->getBasicBlock()));
738 delete BA;
/external/v8/src/ppc/
H A Dconstants-ppc.h393 BA = 20 << 21 // Branch always enumerator in enum:v8::internal::BOfield
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp523 const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N); local
524 ID.AddPointer(BA->getBlockAddress());
525 ID.AddInteger(BA->getOffset());
526 ID.AddInteger(BA->getTargetFlags());
1744 SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT, argument
1752 ID.AddPointer(BA);
1759 SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset,
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp4153 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
4161 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G3),
4162 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G2 | MO_NC),
4163 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G1 | MO_NC),
4164 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_G0 | MO_NC));
4166 SDValue Hi = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGE);
4167 SDValue Lo = DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_PAGEOFF |
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp2088 const BlockAddress *BA = BASDN->getBlockAddress(); local
2094 SDValue GA = DAG.getTargetBlockAddress(BA, PtrVT, BASDN->getOffset());
2101 SDValue TgtBAHi = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOHiFlag);
2102 SDValue TgtBALo = DAG.getTargetBlockAddress(BA, PtrVT, 0, MOLoFlag);
/external/v8/src/s390/
H A Dconstants-s390.h1006 BA = 20 << 21 // Branch always enumerator in enum:v8::internal::BOfield

Completed in 5420 milliseconds