HomeSort by relevance Sort by last modified time
    Searched refs:MR (Results 1 - 25 of 31) sorted by null

1 2

  /external/llvm/lib/Target/ARM/
ARMJITInfo.cpp 239 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
240 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
243 return (intptr_t)(MR->getResultPointer());
246 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal();
249 return getJumpTableBaseAddr(MR->getJumpTableIndex());
254 return getConstantPoolEntryAddr(MR->getConstantPoolIndex());
256 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal();
259 intptr_t Addr = (intptr_t)(MR->getResultPointer());
269 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR,
    [all...]
ARMJITInfo.h 80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 57 virtual void relocate(void *Function, MachineRelocation *MR,
MipsJITInfo.cpp 240 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
242 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
244 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
245 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
247 switch ((Mips::RelocationType) MR->getRelocationType()) {
260 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 37 virtual void relocate(void *Function, MachineRelocation *MR,
PPCJITInfo.cpp 114 "mr r3, r0\n"
177 "mr 3, 0\n"
257 "mr 3, 0\n" // return address (still in r0)
412 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR,
414 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
415 unsigned *RelocPos = (unsigned*)Function + MR->getMachineCodeOffset()/4;
416 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
417 switch ((PPC::RelocationType)MR->getRelocationType()) {
436 ResultPtr += MR->getConstantVal();
439 if (MR->getRelocationType() == PPC::reloc_absolute_high)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 113 const MemRegion* MR) {
114 return processRegionChanges(state, 0, MR, MR, 0);
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 33 unsigned NoMR, JustRef, JustMod, MR;
40 NoMR = JustRef = JustMod = MR = 0;
49 unsigned MRSum = NoMR+JustRef+JustMod+MR;
70 printLine("mod/ref", MR, MRSum);
73 << "%/" << MR*100/MRSum <<"%\n\n";
161 case ModRef: MR++; MRString = "ModRef"; break;
MemoryDependenceAnalysis.cpp 208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
238 if (MR != AliasAnalysis::NoModRef)
499 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc);
501 if (MR == AliasAnalysis::ModRef)
502 MR = AA->callCapturesBefore(Inst, MemLoc, DT);
503 switch (MR) {
560 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA);
563 bool isLoad = !(MR & AliasAnalysis::Mod);
    [all...]
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 103 virtual void relocate(void *Function, MachineRelocation *MR,
  /external/llvm/lib/Target/X86/
X86JITInfo.h 66 virtual void relocate(void *Function, MachineRelocation *MR,
X86JITInfo.cpp 547 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
549 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
550 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
551 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
552 switch ((X86::RelocationType)MR->getRelocationType()) {
556 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
563 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 418 virtual void addRelocation(const MachineRelocation &MR) {
419 Relocations.push_back(MR);
843 MachineRelocation &MR = Relocations[i];
845 if (!MR.letTargetResolve()) {
846 if (MR.isExternalSymbol()) {
847 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
849 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
853 if (MR.mayNeedFarStub()) {
856 } else if (MR.isGlobalValue()) {
857 ResultPtr = getPointerToGlobal(MR.getGlobalValue()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 121 const MemRegion *MR,
126 const MemRegion *MR,
144 const MemRegion *MR);
624 const MemRegion *MR,
628 MR = MR->StripCasts();
630 switch (MR->getKind()) {
658 return state->remove<CStringLength>(MR);
660 return state->set<CStringLength>(MR, strLength);
666 const MemRegion *MR,
    [all...]
DereferenceChecker.cpp 227 const MemRegion *MR = L.getAsRegion();
228 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR);
MallocChecker.cpp 211 static bool SummarizeRegion(raw_ostream &os, const MemRegion *MR);
732 const MemRegion *MR) {
733 switch (MR->getKind()) {
735 const FunctionDecl *FD = cast<FunctionTextRegion>(MR)->getDecl();
750 const MemSpaceRegion *MS = MR->getMemorySpace();
753 const VarRegion *VR = dyn_cast<VarRegion>(MR);
768 const VarRegion *VR = dyn_cast<VarRegion>(MR);
783 const VarRegion *VR = dyn_cast<VarRegion>(MR);
814 const MemRegion *MR = ArgVal.getAsRegion();
815 if (MR) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 432 bool SymbolReaper::isLiveRegion(const MemRegion *MR) {
433 if (RegionRoots.count(MR))
436 MR = MR->getBaseRegion();
438 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
441 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
448 if (isa<AllocaRegion>(MR))
451 if (isa<CXXThisRegion>(MR))
454 if (isa<MemSpaceRegion>(MR))
ExprEngineCXX.cpp 39 const MemRegion *MR = V.getAsRegion();
40 if (!MR || !isa<CXXTempObjectRegion>(MR)) {
RegionStore.cpp     [all...]
ProgramState.cpp 126 const MemRegion *MR = LV.getAsRegion();
127 if (MR && Mgr.getOwningEngine() && notifyChanges)
128 return Mgr.getOwningEngine()->processRegionChange(newState, MR);
  /external/opencv/cxcore/src/
cxmean.cpp 241 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
272 IPCVAPI_IMPL( CvStatus, icvMean_##flavor##_C##cn##MR, \
378 CV_DEF_INIT_BIG_FUNC_TAB_2D( Mean, MR )
cxmeansdv.cpp 495 IPCVAPI_IMPL( CvStatus, icvMean_StdDev_##flavor##_C##cn##MR, \
530 IPCVAPI_IMPL( CvStatus, icvMean_StdDev_##flavor##_C##cn##MR, \
    [all...]
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 306 virtual void addRelocation(const MachineRelocation &MR) = 0;
MachineCodeEmitter.h 303 virtual void addRelocation(const MachineRelocation &MR) = 0;
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 665 AliasAnalysis::ModRefResult MR = AA.getModRefInfo(C, cpyDest, srcSize);
667 if (MR != AliasAnalysis::NoModRef)
668 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
669 if (MR != AliasAnalysis::NoModRef)
    [all...]

Completed in 434 milliseconds

1 2