/netbsd-src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
H A D | aeexec.c | 106 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 D | Constants.h | 847 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 D | Value.def | 80 HANDLE_CONSTANT(BlockAddress)
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | IndirectBrExpandPass.cpp | 138 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 D | MachineOperand.h | 25 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 D | AsmPrinter.h | 35 class BlockAddress; variable 556 MCSymbol *GetBlockAddressSymbol(const BlockAddress *BA) const;
|
H A D | MachineFunction.h | 46 class BlockAddress; variable 214 const BlockAddress *RecoverBA; 1005 const BlockAddress *RecoverBA);
|
H A D | ISDOpcodes.h | 77 BlockAddress, enumerator
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
H A D | Constants.cpp | 533 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 D | BasicBlock.cpp | 81 BlockAddress *BA = cast<BlockAddress>(user_back()); in ~BasicBlock()
|
H A D | ConstantFold.cpp | 1710 !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 D | SplitModule.cpp | 135 BlockAddress *BA = BlockAddress::lookup(&BB); in findPartitions()
|
H A D | ValueMapper.cpp | 62 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 D | Evaluator.cpp | 69 if (C->getNumOperands() == 0 || isa<BlockAddress>(C)) in isSimpleEnoughValueToCommitHelper() 646 if (BlockAddress *BA = dyn_cast<BlockAddress>(Val)) in EvaluateBlock()
|
H A D | CloneFunction.cpp | 187 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 D | FunctionComparator.cpp | 364 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 D | ARMConstantPoolValue.h | 26 class BlockAddress; variable 175 const BlockAddress *getBlockAddress() const;
|
H A D | ARMConstantPoolValue.cpp | 187 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 D | WinCFGuard.cpp | 54 if (isa<BlockAddress>(FnUser)) in isPossibleIndirectCallTarget()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | Lint.cpp | 414 !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 D | DifferenceEngine.cpp | 406 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 D | ExtractFunction.cpp | 67 if (BlockAddress *BA = dyn_cast<BlockAddress>(V)) { in globalInitUsesExternalBA()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | LazyCallGraph.h | 1102 if (BlockAddress *BA = dyn_cast<BlockAddress>(C)) { in visitReferences()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
H A D | Relocation.txt | 7 ExternalSymbol, BlockAddress
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
H A D | GlobalOpt.cpp | 1634 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()
|