Home
last modified time | relevance | path

Searched refs:BlockAddress (Results 1 – 25 of 101) sorted by relevance

12345

/netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/
H A Daeexec.c106 ACPI_GENERIC_ADDRESS BlockAddress; in AfInstallGpeBlock() local
120 memset (&BlockAddress, 0, sizeof (ACPI_GENERIC_ADDRESS)); in AfInstallGpeBlock()
121 BlockAddress.SpaceId = ACPI_ADR_SPACE_SYSTEM_MEMORY; in AfInstallGpeBlock()
122 BlockAddress.Address = 0x76540000; in AfInstallGpeBlock()
136 Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 7, 8); in AfInstallGpeBlock()
174 Status = AcpiInstallGpeBlock (Handle, &BlockAddress, 8, 11); in AfInstallGpeBlock()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DConstants.h847 class BlockAddress final : public Constant {
850 BlockAddress(Function *F, BasicBlock *BB);
859 static BlockAddress *get(Function *F, BasicBlock *BB);
863 static BlockAddress *get(BasicBlock *BB);
868 static BlockAddress *lookup(const BasicBlock *BB);
883 struct OperandTraits<BlockAddress>
884 : public FixedNumOperandTraits<BlockAddress, 2> {};
886 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(BlockAddress, Value)
H A DValue.def80 HANDLE_CONSTANT(BlockAddress)
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DIndirectBrExpandPass.cpp138 return isa<BlockAddress>(U.getUser()); in runOnFunction()
149 auto *BA = cast<BlockAddress>(BlockAddressUseIt->getUser()); in runOnFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineOperand.h25 class BlockAddress; variable
195 const BlockAddress *BA; // For MO_BlockAddress.
568 const BlockAddress *getBlockAddress() const { in getBlockAddress()
866 static MachineOperand CreateBA(const BlockAddress *BA, int64_t Offset,
H A DAsmPrinter.h35 class BlockAddress; variable
556 MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
H A DMachineFunction.h46 class BlockAddress; variable
214 const BlockAddress *RecoverBA;
1005 const BlockAddress *RecoverBA);
H A DISDOpcodes.h77 BlockAddress, enumerator
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstants.cpp533 delete static_cast<BlockAddress *>(C); in deleteConstant()
672 if (const BlockAddress *BA = dyn_cast<BlockAddress>(this)) in getRelocationInfo()
688 if (isa<BlockAddress>(LHSOp0) && isa<BlockAddress>(RHSOp0) && in getRelocationInfo()
689 cast<BlockAddress>(LHSOp0)->getFunction() == in getRelocationInfo()
690 cast<BlockAddress>(RHSOp0)->getFunction()) in getRelocationInfo()
1817 BlockAddress *BlockAddress::get(BasicBlock *BB) { in get()
1822 BlockAddress *BlockAddress::get(Function *F, BasicBlock *BB) { in get()
1823 BlockAddress *&BA = in get()
1826 BA = new BlockAddress(F, BB); in get()
1832 BlockAddress::BlockAddress(Function *F, BasicBlock *BB) in BlockAddress() function in BlockAddress
[all …]
H A DBasicBlock.cpp81 BlockAddress *BA = cast<BlockAddress>(user_back()); in ~BasicBlock()
H A DConstantFold.cpp1710 !isa<BlockAddress>(V1)) { in evaluateICmpRelation()
1712 !isa<BlockAddress>(V2)) { in evaluateICmpRelation()
1753 } else if (isa<BlockAddress>(V2)) { in evaluateICmpRelation()
1767 } else if (const BlockAddress *BA = dyn_cast<BlockAddress>(V1)) { in evaluateICmpRelation()
1779 if (const BlockAddress *BA2 = dyn_cast<BlockAddress>(V2)) { in evaluateICmpRelation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp135 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions()
H A DValueMapper.cpp62 DelayedBasicBlock(const BlockAddress &Old) in DelayedBasicBlock()
180 Value *mapBlockAddress(const BlockAddress &BA);
435 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) in mapValue()
524 Value *Mapper::mapBlockAddress(const BlockAddress &BA) { in mapBlockAddress()
538 return getVM()[&BA] = BlockAddress::get(F, BB ? BB : BA.getBasicBlock()); in mapBlockAddress()
H A DEvaluator.cpp69 if (C->getNumOperands() == 0 || isa<BlockAddress>(C)) in isSimpleEnoughValueToCommitHelper()
646 if (BlockAddress *BA = dyn_cast<BlockAddress>(Val)) in EvaluateBlock()
H A DCloneFunction.cpp187 Constant *OldBBAddr = BlockAddress::get(const_cast<Function *>(OldFunc), in CloneFunctionInto()
189 VMap[OldBBAddr] = BlockAddress::get(NewFunc, CBB); in CloneFunctionInto()
371 Constant *OldBBAddr = BlockAddress::get(const_cast<Function *>(OldFunc), in CloneBlock()
373 VMap[OldBBAddr] = BlockAddress::get(NewFunc, NewBB); in CloneBlock()
H A DFunctionComparator.cpp364 const BlockAddress *LBA = cast<BlockAddress>(L); in cmpConstants()
365 const BlockAddress *RBA = cast<BlockAddress>(R); in cmpConstants()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMConstantPoolValue.h26 class BlockAddress; variable
175 const BlockAddress *getBlockAddress() const;
H A DARMConstantPoolValue.cpp187 const BlockAddress *ARMConstantPoolConstant::getBlockAddress() const { in getBlockAddress()
188 return dyn_cast_or_null<BlockAddress>(CVal); in getBlockAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DWinCFGuard.cpp54 if (isa<BlockAddress>(FnUser)) in isPossibleIndirectCallTarget()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLint.cpp414 !isa<BlockAddress>(UnderlyingObject), in visitMemoryReference()
420 Assert(!isa<BlockAddress>(UnderlyingObject), in visitMemoryReference()
424 Assert(!isa<BlockAddress>(UnderlyingObject), in visitMemoryReference()
429 isa<BlockAddress>(UnderlyingObject), in visitMemoryReference()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp406 if (isa<BlockAddress>(L)) in equivalentAsOperands()
407 return Blocks[cast<BlockAddress>(L)->getBasicBlock()] in equivalentAsOperands()
408 == cast<BlockAddress>(R)->getBasicBlock(); in equivalentAsOperands()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/bugpoint/
H A DExtractFunction.cpp67 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) { in globalInitUsesExternalBA()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h1102 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) { in visitReferences()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DRelocation.txt7 ExternalSymbol, BlockAddress
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp1634 if (isa<BlockAddress>(U)) in ChangeCalleesToFastCall()
1651 if (isa<BlockAddress>(U)) in RemoveAttribute()
1674 if (isa<BlockAddress>(U)) in hasChangeableCC()
1715 if (isa<BlockAddress>(U)) in isValidCandidateForColdCC()
1731 if (isa<BlockAddress>(U)) in changeCallSitesToColdCC()
1774 assert(isa<BlockAddress>(U) && in hasMustTailCallers()

12345