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

123

/freebsd-9.3-release/lib/libstand/
H A Dglobals.c20 u_char bcea[6] = BA; /* broadcast ethernet address */
H A Dnet.h46 #define BA { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } macro
H A Darp.c62 { {0xffffffff}, BA }
/freebsd-9.3-release/contrib/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp133 const SCEV *BA = SE->getMinusSCEV(BS, AS); local
138 if (ASizeInt.ule(SE->getUnsignedRange(BA).getUnsignedMin()) &&
139 (-BSizeInt).uge(SE->getUnsignedRange(BA).getUnsignedMax()))
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCodeGenAction.cpp344 BackendAction BA = static_cast<BackendAction>(Act); local
345 OwningPtr<raw_ostream> OS(GetOutputStream(CI, InFile, BA));
346 if (BA != Backend_EmitNothing && !OS)
374 new BackendConsumer(BA, CI.getDiagnostics(),
385 BackendAction BA = static_cast<BackendAction>(Act); local
387 raw_ostream *OS = GetOutputStream(CI, getCurrentFile(), BA);
388 if (BA != Backend_EmitNothing && !OS)
435 BA, OS);
/freebsd-9.3-release/contrib/llvm/lib/IR/
H A DBasicBlock.cpp73 BlockAddress *BA = cast<BlockAddress>(use_back()); local
74 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
75 BA->getType()));
76 BA->destroyConstant();
H A DConstants.cpp344 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this))
345 return BA->getFunction()->getRelocationInfo();
1359 BlockAddress *&BA = local
1361 if (BA == 0)
1362 BA = new BlockAddress(F, BB);
1364 assert(BA->getFunction() == F && "Basic block moved between functions");
1365 return BA;
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Utils/
H A DValueMapper.cpp118 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) {
120 cast<Function>(MapValue(BA->getFunction(), VM, Flags, TypeMapper, Materializer));
121 BasicBlock *BB = cast_or_null<BasicBlock>(MapValue(BA->getBasicBlock(), VM,
123 return VM[V] = BlockAddress::get(F, BB ? BB : BA->getBasicBlock());
H A DLocal.cpp226 if (BlockAddress *BA =
228 BasicBlock *TheOnlyDest = BA->getBasicBlock();
493 BlockAddress *BA = BlockAddress::get(DestBB); local
495 ConstantInt::get(llvm::Type::getInt32Ty(BA->getContext()), 1);
496 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
497 BA->getType()));
498 BA->destroyConstant();
/freebsd-9.3-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineOperand.h173 const BlockAddress *BA; // For MO_BlockAddress. member in union:llvm::MachineOperand::__anon1884::__anon1886::__anon1887
435 return Contents.OffsetedInfo.Val.BA;
636 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset,
639 Op.Contents.OffsetedInfo.Val.BA = BA;
H A DMachineInstrBuilder.h142 const MachineInstrBuilder &addBlockAddress(const BlockAddress *BA, argument
145 MI->addOperand(*MF, MachineOperand::CreateBA(BA, Offset, TargetFlags));
H A DAsmPrinter.h331 MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
H A DSelectionDAG.h478 SDValue getBlockAddress(const BlockAddress *BA, EVT VT,
481 SDValue getTargetBlockAddress(const BlockAddress *BA, EVT VT, argument
484 return getBlockAddress(BA, VT, Offset, true, TargetFlags);
H A DSelectionDAGNodes.h1563 const BlockAddress *BA; member in class:BlockAddressSDNode
1570 BA(ba), Offset(o), TargetFlags(Flags) {
1573 const BlockAddress *getBlockAddress() const { return BA; }
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp475 } else if (const BlockAddressSDNode *BA =
477 int64_t offset = BA->getOffset();
479 WriteAsOperand(OS, BA->getBlockAddress()->getFunction(), false);
481 WriteAsOperand(OS, BA->getBlockAddress()->getBasicBlock(), false);
487 if (unsigned int TF = BA->getTargetFlags())
H A DInstrEmitter.cpp424 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(Op)) {
425 MIB.addBlockAddress(BA->getBlockAddress(),
426 BA->getOffset(),
427 BA->getTargetFlags());
/freebsd-9.3-release/contrib/llvm/lib/Target/Sparc/
H A DSparcInstrInfo.cpp149 if (I->getOpcode() == SP::BA) {
205 BuildMI(MBB, UnCondBrIter, MBB.findDebugLoc(I), get(SP::BA))
238 BuildMI(&MBB, DL, get(SP::BA)).addMBB(TBB);
252 BuildMI(&MBB, DL, get(SP::BA)).addMBB(FBB);
266 if (I->getOpcode() != SP::BA
H A DSparcCodeEmitter.cpp221 case SP::BA:
/freebsd-9.3-release/contrib/llvm/tools/bugpoint/
H A DExtractFunction.cpp68 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) {
69 Function *F = BA->getFunction();
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DOnDiskHashTable.h118 llvm::BumpPtrAllocator BA; member in class:clang::OnDiskChainedHashTableGenerator
181 insert(Buckets, NumBuckets, new (BA.Allocate<Item>()) Item(key, data,
/freebsd-9.3-release/contrib/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp540 MCSymbol *BA = GetBlockAddressSymbol(MO.getBlockAddress()); local
541 O << BA->getName();
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp594 BlockAddress *BA = dyn_cast<BlockAddress>(ui.getUse().getUser()); local
596 if (BA) {
597 BA->replaceAllUsesWith(
598 BlockAddress::get(NewF, BA->getBasicBlock()));
599 delete BA;
/freebsd-9.3-release/contrib/llvm/lib/Target/X86/
H A DX86ISelDAGToDAG.cpp675 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
677 AM.BlockAddr = BA->getBlockAddress();
678 AM.SymbolFlags = BA->getTargetFlags();
679 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
713 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
714 AM.BlockAddr = BA->getBlockAddress();
715 AM.Disp += BA->getOffset();
716 AM.SymbolFlags = BA->getTargetFlags();
/freebsd-9.3-release/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1903 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress(); local
1910 DAG.getTargetBlockAddress(BA, PtrVT, 0,
1912 DAG.getTargetBlockAddress(BA, PtrVT, 0,
1918 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_ABS_G3),
1919 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_ABS_G2_NC),
1920 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_ABS_G1_NC),
1921 DAG.getTargetBlockAddress(BA, PtrVT, 0, AArch64II::MO_ABS_G0_NC));
4470 } else if (const BlockAddressSDNode *BA
4472 Result = DAG.getTargetBlockAddress(BA->getBlockAddress(),
4473 BA
[all...]
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp633 BlockAddress *BA = BlockAddress::get(BB);
634 BA->removeDeadConstantUsers();
635 return !BA->use_empty();

Completed in 231 milliseconds

123