/external/clang/test/CodeGenCXX/ |
H A D | 2010-03-09-AnonAggregate.cpp | 8 union { struct { union { int BA; } Val; int Offset; } OffsetedInfo; } Contents; member in union:MO::__anon2324::__anon2325::__anon2326
|
/external/llvm/lib/Analysis/ |
H A D | ScalarEvolutionAliasAnalysis.cpp | 51 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 D | OSGiTestActivator.java | 145 public static class BA class in class:OSGiTestActivator 148 protected BA() {} method in class:OSGiTestActivator.BA
|
/external/llvm/lib/IR/ |
H A D | BasicBlock.cpp | 76 BlockAddress *BA = cast<BlockAddress>(user_back()); local 77 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, 78 BA->getType())); 79 BA->destroyConstant();
|
H A D | Constants.cpp | 437 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 D | SkPathMeasure.cpp | 130 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 D | CodeGenAction.cpp | 684 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 D | MachineInstrBuilder.h | 142 const MachineInstrBuilder &addBlockAddress(const BlockAddress *BA, argument 145 MI->addOperand(*MF, MachineOperand::CreateBA(BA, Offset, TargetFlags));
|
H A D | MachineOperand.h | 177 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 D | SelectionDAG.h | 514 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 D | OnDiskHashTable.h | 77 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 D | ARMAsmPrinter.cpp | 915 const BlockAddress *BA = local 917 MCSym = GetBlockAddressSymbol(BA);
|
H A D | ARMISelLowering.cpp | 2509 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 D | MSP430ISelLowering.cpp | 804 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local 805 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT);
|
/external/llvm/lib/Target/Mips/ |
H A D | MipsAsmPrinter.cpp | 604 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); local 605 O << BA->getName();
|
/external/llvm/lib/Transforms/Utils/ |
H A D | Local.cpp | 247 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 D | XCoreISelLowering.cpp | 322 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local 323 SDValue Result = DAG.getTargetBlockAddress(BA, PtrVT);
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCasts.cpp | 1200 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 D | HexagonISelLowering.cpp | 1487 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 D | DataFlowSanitizer.cpp | 733 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 D | constants-ppc.h | 393 BA = 20 << 21 // Branch always enumerator in enum:v8::internal::BOfield
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAG.cpp | 523 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 D | AArch64ISelLowering.cpp | 4153 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 D | PPCISelLowering.cpp | 2088 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 D | constants-s390.h | 1006 BA = 20 << 21 // Branch always enumerator in enum:v8::internal::BOfield
|