| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| D | RuntimeDyld.cpp | 58 uint64_t Addr = Sections[i].LoadAddress; in resolveRelocations() local 60 << "\t" << format("%p", (uint8_t *)Addr) in resolveRelocations() 62 resolveRelocationList(Relocations[i], Addr); in resolveRelocations() 201 uint8_t *Addr = MemMgr->allocateDataSection( in emitCommonSymbols() local 203 if (!Addr) in emitCommonSymbols() 206 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0)); in emitCommonSymbols() 207 memset(Addr, 0, TotalSize); in emitCommonSymbols() 210 << " new addr: " << format("%p", Addr) in emitCommonSymbols() 223 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align); in emitCommonSymbols() 224 Addr += AlignOffset; in emitCommonSymbols() [all …]
|
| D | RuntimeDyldImpl.h | 223 void writeInt16BE(uint8_t *Addr, uint16_t Value) { in writeInt16BE() argument 226 *Addr = (Value >> 8) & 0xFF; in writeInt16BE() 227 *(Addr+1) = Value & 0xFF; in writeInt16BE() 230 void writeInt32BE(uint8_t *Addr, uint32_t Value) { in writeInt32BE() argument 233 *Addr = (Value >> 24) & 0xFF; in writeInt32BE() 234 *(Addr+1) = (Value >> 16) & 0xFF; in writeInt32BE() 235 *(Addr+2) = (Value >> 8) & 0xFF; in writeInt32BE() 236 *(Addr+3) = Value & 0xFF; in writeInt32BE() 239 void writeInt64BE(uint8_t *Addr, uint64_t Value) { in writeInt64BE() argument 242 *Addr = (Value >> 56) & 0xFF; in writeInt64BE() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/Sparc/ |
| D | SparcISelDAGToDAG.cpp | 74 bool SparcDAGToDAGISel::SelectADDRri(SDValue Addr, in SelectADDRri() argument 76 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { in SelectADDRri() 82 if (Addr.getOpcode() == ISD::TargetExternalSymbol || in SelectADDRri() 83 Addr.getOpcode() == ISD::TargetGlobalAddress || in SelectADDRri() 84 Addr.getOpcode() == ISD::TargetGlobalTLSAddress) in SelectADDRri() 87 if (Addr.getOpcode() == ISD::ADD) { in SelectADDRri() 88 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) { in SelectADDRri() 91 dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) { in SelectADDRri() 96 Base = Addr.getOperand(0); in SelectADDRri() 102 if (Addr.getOperand(0).getOpcode() == SPISD::Lo) { in SelectADDRri() [all …]
|
| D | SparcJITInfo.cpp | 123 static void emitInstrForIndirectJump(intptr_t Addr, in emitInstrForIndirectJump() argument 127 if (isInt<13>(Addr)) { in emitInstrForIndirectJump() 130 Insts.push_back(JMP_INST(0, LO10(Addr), scratch)); in emitInstrForIndirectJump() 135 if (isUInt<32>(Addr)) { in emitInstrForIndirectJump() 139 Insts.push_back(SETHI_INST(HI22(Addr), scratch)); in emitInstrForIndirectJump() 140 Insts.push_back(JMP_INST(scratch, LO10(Addr), scratch)); in emitInstrForIndirectJump() 145 if (Addr < 0 && isInt<33>(Addr)) { in emitInstrForIndirectJump() 150 Insts.push_back(SETHI_INST(HIX22(Addr), scratch)); in emitInstrForIndirectJump() 151 Insts.push_back(XOR_INST(scratch, LOX10(Addr), scratch)); in emitInstrForIndirectJump() 166 Insts.push_back((uint32_t)(((int64_t)Addr) >> 32) & 0xffffffff); in emitInstrForIndirectJump() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/R600/ |
| D | AMDGPUISelDAGToDAG.cpp | 58 bool SelectADDRParam(SDValue Addr, SDValue& R1, SDValue& R2); 62 bool SelectI24(SDValue Addr, SDValue &Op); 63 bool SelectU24(SDValue Addr, SDValue &Op); 81 bool SelectGlobalValueConstantOffset(SDValue Addr, SDValue& IntPtr); 82 bool SelectGlobalValueVariableOffset(SDValue Addr, 84 bool SelectADDRVTX_READ(SDValue Addr, SDValue &Base, SDValue &Offset); 85 bool SelectADDRIndirect(SDValue Addr, SDValue &Base, SDValue &Offset); 142 SDValue Addr, SDValue& R1, SDValue& R2) { in SelectADDRParam() argument 144 if (Addr.getOpcode() == ISD::FrameIndex) { in SelectADDRParam() 145 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { in SelectADDRParam() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/ARM/ |
| D | ARMJITInfo.cpp | 161 void *Addr; in emitFunctionStub() local 180 Addr = (void*)JCE.getCurrentPCValue(); in emitFunctionStub() 181 if (!sys::Memory::setRangeWritable(Addr, 16)) { in emitFunctionStub() 187 JCE.emitWordLE(LazyPtr - (intptr_t(Addr)+4+8)); // func - (L_func$scv+8) in emitFunctionStub() 188 sys::Memory::InvalidateInstructionCache(Addr, 16); in emitFunctionStub() 189 if (!sys::Memory::setRangeExecutable(Addr, 16)) { in emitFunctionStub() 195 Addr = (void*)JCE.getCurrentPCValue(); in emitFunctionStub() 196 if (!sys::Memory::setRangeWritable(Addr, 8)) { in emitFunctionStub() 201 sys::Memory::InvalidateInstructionCache(Addr, 8); in emitFunctionStub() 202 if (!sys::Memory::setRangeExecutable(Addr, 8)) { in emitFunctionStub() [all …]
|
| D | ARMJITInfo.h | 124 void addConstantPoolEntryAddr(unsigned CPI, intptr_t Addr) { in addConstantPoolEntryAddr() argument 126 ConstPoolId2AddrMap[CPI] = Addr; in addConstantPoolEntryAddr() 141 void addJumpTableBaseAddr(unsigned JTI, intptr_t Addr) { in addJumpTableBaseAddr() argument 143 JumpTableId2AddrMap[JTI] = Addr; in addJumpTableBaseAddr() 155 void addPCLabelAddr(unsigned Id, intptr_t Addr) { in addPCLabelAddr() argument 156 PCLabelMap.insert(std::make_pair(Id, Addr)); in addPCLabelAddr() 162 intptr_t getIndirectSymAddr(void *Addr) const { in getIndirectSymAddr() argument 163 DenseMap<void*,intptr_t>::const_iterator I= Sym2IndirectSymMap.find(Addr); in getIndirectSymAddr()
|
| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/MCJIT/ |
| D | SectionMemoryManager.cpp | 47 uintptr_t Addr = 0; in allocateSection() local 54 Addr = (uintptr_t)MB.base(); in allocateSection() 55 uintptr_t EndOfBlock = Addr + MB.size(); in allocateSection() 57 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1); in allocateSection() 59 MemGroup.FreeMem[i] = sys::MemoryBlock((void*)(Addr + Size), in allocateSection() 60 EndOfBlock - Addr - Size); in allocateSection() 61 return (uint8_t*)Addr; in allocateSection() 89 Addr = (uintptr_t)MB.base(); in allocateSection() 90 uintptr_t EndOfBlock = Addr + MB.size(); in allocateSection() 93 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1); in allocateSection() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lli/ChildTarget/ |
| D | ChildTarget.cpp | 28 void sendAllocationResult(uint64_t Addr); 37 void makeSectionExecutable(uint64_t Addr, uint32_t Size); 38 void InvalidateInstructionCache(const void *Addr, size_t Len); 39 void releaseMemory(uint64_t Addr, uint32_t Size); 114 uint64_t Addr = allocate(Alignment, AllocSize); in handleAllocateSpace() local 117 sendAllocationResult(Addr); in handleAllocateSpace() 127 uint64_t Addr; in handleLoadSection() local 128 rc = ReadBytes(&Addr, 8); in handleLoadSection() 136 rc = ReadBytes((void*)Addr, DataSize - 8); in handleLoadSection() 141 makeSectionExecutable(Addr, BufferSize); in handleLoadSection() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Support/ |
| D | StringRefMemoryObject.cpp | 14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const { in readByte() argument 15 if (Addr >= Base + getExtent() || Addr < Base) in readByte() 17 *Byte = Bytes[Addr - Base]; in readByte() 21 int StringRefMemoryObject::readBytes(uint64_t Addr, in readBytes() argument 24 uint64_t Offset = Addr - Base; in readBytes() 25 if (Addr >= Base + getExtent() || Offset + Size > getExtent() || Addr < Base) in readBytes()
|
| /freebsd-10-stable/contrib/llvm/lib/MC/ |
| D | MCModule.cpp | 17 static bool AtomComp(const MCAtom *L, uint64_t Addr) { in AtomComp() argument 18 return L->getEndAddr() < Addr; in AtomComp() 21 static bool AtomCompInv(uint64_t Addr, const MCAtom *R) { in AtomCompInv() argument 22 return Addr < R->getEndAddr(); in AtomCompInv() 75 const MCAtom *MCModule::findAtomContaining(uint64_t Addr) const { in findAtomContaining() 77 Addr, AtomComp); in findAtomContaining() 78 if (I != atom_end() && (*I)->getBeginAddr() <= Addr) in findAtomContaining() 83 MCAtom *MCModule::findAtomContaining(uint64_t Addr) { in findAtomContaining() argument 85 const_cast<const MCModule *>(this)->findAtomContaining(Addr)); in findAtomContaining() 88 const MCAtom *MCModule::findFirstAtomAfter(uint64_t Addr) const { in findFirstAtomAfter() [all …]
|
| D | MCObjectSymbolizer.cpp | 40 StringRef findExternalFunctionAt(uint64_t Addr) LLVM_OVERRIDE; 79 StringRef MCMachObjectSymbolizer::findExternalFunctionAt(uint64_t Addr) { in findExternalFunctionAt() argument 85 uint64_t StubIdx = (Addr - StubsStart) / StubSize; in findExternalFunctionAt() 112 uint64_t Addr = Value; in tryAddingPcLoadReferenceComment() local 113 if (const SectionRef *S = findSectionContaining(Addr)) { in tryAddingPcLoadReferenceComment() 119 Contents = Contents.substr(Addr - SAddr); in tryAddingPcLoadReferenceComment() 194 StringRef MCObjectSymbolizer::findExternalFunctionAt(uint64_t Addr) { in findExternalFunctionAt() argument 209 static bool SectionStartsBefore(const SectionRef &S, uint64_t Addr) { in SectionStartsBefore() argument 211 return SAddr < Addr; in SectionStartsBefore() 214 const SectionRef *MCObjectSymbolizer::findSectionContaining(uint64_t Addr) { in findSectionContaining() argument [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lli/ChildTarget/Unix/ |
| D | ChildTarget.inc | 36 extern "C" void sys_icache_invalidate(const void *Addr, size_t len); 98 uint64_t Addr = (uint64_t)::mmap(0, Size, PROT_READ | PROT_WRITE, MMFlags, fd, 0); 99 if (Addr == (uint64_t)MAP_FAILED) 103 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1); 105 m_AllocatedBufferMap[Addr] = Size; 108 return Addr; 111 void LLIChildTarget::makeSectionExecutable(uint64_t Addr, uint32_t Size) { 115 int Result = ::mprotect((void*)Addr, Size, PROT_READ | PROT_WRITE | PROT_EXEC); 117 InvalidateInstructionCache((const void *)Addr, Size); 123 void LLIChildTarget::InvalidateInstructionCache(const void *Addr, [all …]
|
| /freebsd-10-stable/contrib/llvm/patches/ |
| D | patch-r262261-llvm-r199977-sparc.diff | 72 +// Emit instructions to jump to Addr and store the starting address of 74 +static void emitInstrForIndirectJump(intptr_t Addr, 78 + if (isInt<13>(Addr)) { 79 + // Emit: jmpl %g0+Addr, <scratch> 81 + Insts.push_back(JMP_INST(0, LO10(Addr), scratch)); 86 + if (isUInt<32>(Addr)) { 87 + // Emit: sethi %hi(Addr), scratch 88 + // jmpl scratch+%lo(Addr), scratch 90 + Insts.push_back(SETHI_INST(HI22(Addr), scratch)); 91 + Insts.push_back(JMP_INST(scratch, LO10(Addr), scratch)); [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/Mips/ |
| D | Mips16ISelDAGToDAG.cpp | 161 SDNode *Parent, SDValue Addr, SDValue &Base, SDValue &Offset, in selectAddr16() argument 163 EVT ValTy = Addr.getValueType(); in selectAddr16() 168 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { in selectAddr16() 175 if (Addr.getOpcode() == MipsISD::Wrapper) { in selectAddr16() 176 Base = Addr.getOperand(0); in selectAddr16() 177 Offset = Addr.getOperand(1); in selectAddr16() 181 if ((Addr.getOpcode() == ISD::TargetExternalSymbol || in selectAddr16() 182 Addr.getOpcode() == ISD::TargetGlobalAddress)) in selectAddr16() 186 if (CurDAG->isBaseWithConstantOffset(Addr)) { in selectAddr16() 187 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); in selectAddr16() [all …]
|
| D | MipsSEISelDAGToDAG.cpp | 253 bool MipsSEDAGToDAGISel::selectAddrRegImm(SDValue Addr, SDValue &Base, in selectAddrRegImm() argument 255 EVT ValTy = Addr.getValueType(); in selectAddrRegImm() 258 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { in selectAddrRegImm() 265 if (Addr.getOpcode() == MipsISD::Wrapper) { in selectAddrRegImm() 266 Base = Addr.getOperand(0); in selectAddrRegImm() 267 Offset = Addr.getOperand(1); in selectAddrRegImm() 272 if ((Addr.getOpcode() == ISD::TargetExternalSymbol || in selectAddrRegImm() 273 Addr.getOpcode() == ISD::TargetGlobalAddress)) in selectAddrRegImm() 278 if (CurDAG->isBaseWithConstantOffset(Addr)) { in selectAddrRegImm() 279 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)); in selectAddrRegImm() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/ |
| D | SystemZISelDAGToDAG.cpp | 160 bool selectBDAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, 166 bool selectMVIAddr(SystemZAddressingMode::DispRange DR, SDValue Addr, 173 SystemZAddressingMode::DispRange DR, SDValue Addr, 177 bool selectPCRelAddress(SDValue Addr, SDValue &Target) const { in selectPCRelAddress() argument 178 if (SystemZISD::isPCREL(Addr.getOpcode())) { in selectPCRelAddress() 179 Target = Addr.getOperand(0); in selectPCRelAddress() 186 bool selectBDAddr12Only(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr12Only() argument 187 return selectBDAddr(SystemZAddressingMode::Disp12Only, Addr, Base, Disp); in selectBDAddr12Only() 189 bool selectBDAddr12Pair(SDValue Addr, SDValue &Base, SDValue &Disp) const { in selectBDAddr12Pair() argument 190 return selectBDAddr(SystemZAddressingMode::Disp12Pair, Addr, Base, Disp); in selectBDAddr12Pair() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Transforms/Instrumentation/ |
| D | ThreadSanitizer.cpp | 96 bool addrPointsToConstantData(Value *Addr); 97 int getMemoryAccessFuncIndex(Value *Addr); 248 bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) { in addrPointsToConstantData() argument 250 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr)) in addrPointsToConstantData() 251 Addr = GEP->getPointerOperand(); in addrPointsToConstantData() 253 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) { in addrPointsToConstantData() 259 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) { in addrPointsToConstantData() 292 Value *Addr = Load->getPointerOperand(); in chooseInstructionsToInstrument() local 293 if (WriteTargets.count(Addr)) { in chooseInstructionsToInstrument() 298 if (addrPointsToConstantData(Addr)) { in chooseInstructionsToInstrument() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/ |
| D | RTDyldMemoryManager.cpp | 97 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, in registerEHFrames() argument 102 const char *P = (const char *)Addr; in registerEHFrames() 109 void RTDyldMemoryManager::deregisterEHFrames(uint8_t *Addr, in deregisterEHFrames() argument 112 const char *P = (const char *)Addr; in deregisterEHFrames() 121 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, in registerEHFrames() argument 129 __register_frame(Addr); in registerEHFrames() 132 void RTDyldMemoryManager::deregisterEHFrames(uint8_t *Addr, in deregisterEHFrames() argument 135 __deregister_frame(Addr); in deregisterEHFrames() 274 uint64_t Addr = getSymbolAddress(Name); in getPointerToNamedFunction() local 276 if (!Addr && AbortOnFailure) in getPointerToNamedFunction() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/PowerPC/ |
| D | PPCFastISel.cpp | 147 bool PPCEmitLoad(MVT VT, unsigned &ResultReg, Address &Addr, 150 bool PPCEmitStore(MVT VT, unsigned SrcReg, Address &Addr); 151 bool PPCComputeAddress(const Value *Obj, Address &Addr); 152 void PPCSimplifyAddress(Address &Addr, MVT VT, bool &UseOffset, 285 bool PPCFastISel::PPCComputeAddress(const Value *Obj, Address &Addr) { in PPCComputeAddress() argument 306 return PPCComputeAddress(U->getOperand(0), Addr); in PPCComputeAddress() 310 return PPCComputeAddress(U->getOperand(0), Addr); in PPCComputeAddress() 315 return PPCComputeAddress(U->getOperand(0), Addr); in PPCComputeAddress() 318 Address SavedAddr = Addr; in PPCComputeAddress() 319 long TmpOffset = Addr.Offset; in PPCComputeAddress() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/ |
| D | HexagonISelDAGToDAG.cpp | 74 bool SelectMEMriS11_2(SDValue& Addr, SDValue &Base, SDValue &Offset); 76 bool SelectADDRrr(SDValue &Addr, SDValue &Base, SDValue &Offset); 90 bool SelectAddr(SDNode *Op, SDValue Addr, SDValue &Base, SDValue &Offset); 1396 bool HexagonDAGToDAGISel::SelectADDRri(SDValue& Addr, SDValue &Base, in SelectADDRri() argument 1398 if (Addr.getOpcode() == ISD::TargetExternalSymbol || in SelectADDRri() 1399 Addr.getOpcode() == ISD::TargetGlobalAddress) in SelectADDRri() 1402 if (FrameIndexSDNode *FIN = dyn_cast<FrameIndexSDNode>(Addr)) { in SelectADDRri() 1407 Base = Addr; in SelectADDRri() 1413 bool HexagonDAGToDAGISel::SelectADDRriS11_0(SDValue& Addr, SDValue &Base, in SelectADDRriS11_0() argument 1415 if (Addr.getOpcode() == ISD::TargetExternalSymbol || in SelectADDRriS11_0() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ |
| D | OProfileJITEventListener.cpp | 183 uint64_t Addr; in NotifyObjectEmitted() local 186 if (I->getAddress(Addr)) continue; in NotifyObjectEmitted() 189 if (Wrapper.op_write_native_code(Name.data(), Addr, (void*)Addr, Size) in NotifyObjectEmitted() 193 << (void*)Addr << "-" << ((char*)Addr + Size) << "]\n"); in NotifyObjectEmitted() 215 uint64_t Addr; in NotifyFreeingObject() local 216 if (I->getAddress(Addr)) continue; in NotifyFreeingObject() 218 if (Wrapper.op_unload_native_code(Addr) == -1) { in NotifyFreeingObject() 221 << (void*)Addr << "\n"); in NotifyFreeingObject()
|
| /freebsd-10-stable/contrib/llvm/lib/Target/XCore/ |
| D | XCoreISelDAGToDAG.cpp | 68 bool SelectADDRspii(SDValue Addr, SDValue &Base, SDValue &Offset); 87 bool XCoreDAGToDAGISel::SelectADDRspii(SDValue Addr, SDValue &Base, in SelectADDRspii() argument 90 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr))) { in SelectADDRspii() 95 if (Addr.getOpcode() == ISD::ADD) { in SelectADDRspii() 97 if ((FIN = dyn_cast<FrameIndexSDNode>(Addr.getOperand(0))) in SelectADDRspii() 98 && (CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1))) in SelectADDRspii() 213 SDValue Addr = N->getOperand(1); in SelectBRIND() local 214 if (Addr->getOpcode() != ISD::INTRINSIC_W_CHAIN) in SelectBRIND() 216 unsigned IntNo = cast<ConstantSDNode>(Addr->getOperand(1))->getZExtValue(); in SelectBRIND() 219 SDValue nextAddr = Addr->getOperand(2); in SelectBRIND() [all …]
|
| /freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/ |
| D | NVPTXISelDAGToDAG.h | 78 bool SelectADDRri_imp(SDNode *OpNode, SDValue Addr, SDValue &Base, 80 bool SelectADDRri(SDNode *OpNode, SDValue Addr, SDValue &Base, 82 bool SelectADDRri64(SDNode *OpNode, SDValue Addr, SDValue &Base, 85 bool SelectADDRsi_imp(SDNode *OpNode, SDValue Addr, SDValue &Base, 87 bool SelectADDRsi(SDNode *OpNode, SDValue Addr, SDValue &Base, 89 bool SelectADDRsi64(SDNode *OpNode, SDValue Addr, SDValue &Base,
|
| /freebsd-10-stable/contrib/llvm/lib/Analysis/ |
| D | PHITransAddr.cpp | 46 if (Addr == 0) { in dump() 50 dbgs() << "PHITransAddr: " << *Addr << "\n"; in dump() 93 if (Addr == 0) return true; in Verify() 97 if (!VerifySubExpr(Addr, Tmp)) in Verify() 118 Instruction *Inst = dyn_cast<Instruction>(Addr); in IsPotentiallyPHITranslatable() 325 Addr = PHITranslateSubExpr(Addr, CurBB, PredBB, DT); in PHITranslateValue() 330 if (Instruction *Inst = dyn_cast_or_null<Instruction>(Addr)) in PHITranslateValue() 332 Addr = 0; in PHITranslateValue() 335 return Addr == 0; in PHITranslateValue() 352 Addr = InsertPHITranslatedSubExpr(Addr, CurBB, PredBB, DT, NewInsts); in PHITranslateWithInsertion() [all …]
|