HomeSort by relevance Sort by last modified time
    Searched refs:MR (Results 1 - 25 of 29) 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.cpp 195 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR,
197 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
199 void *RelocPos = (char*) Function + MR->getMachineCodeOffset();
200 intptr_t ResultPtr = (intptr_t) MR->getResultPointer();
202 switch ((Mips::RelocationType) MR->getRelocationType()) {
215 if ((((intptr_t) (MR->getResultPointer()) & 0xffff) >> 15) == 1) {
MipsJITInfo.h 57 virtual void relocate(void *Function, MachineRelocation *MR,
  /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/clang/lib/StaticAnalyzer/Checkers/
IteratorsChecker.cpp 126 const MemRegion *MR,
131 const MemRegion *MR,
231 const MemRegion *MR, const MemberExpr *ME) const {
241 if (RS.getMemRegion() == MR)
258 const MemRegion *MR = sv.getAsRegion();
259 if (!MR)
265 return invalidateIterators(state, MR, 0);
270 return handleAssign(state, MR, rexp, LC);
275 const MemRegion *MR, const Expr *rexp, const LocationContext *LC) const {
277 state = state->set<IteratorState>(MR, RefState::getUnknown())
    [all...]
CStringChecker.cpp 121 const MemRegion *MR,
126 const MemRegion *MR,
144 const MemRegion *MR);
625 const MemRegion *MR,
629 MR = MR->StripCasts();
631 switch (MR->getKind()) {
659 return state->remove<CStringLength>(MR);
661 return state->set<CStringLength>(MR, strLength);
667 const MemRegion *MR,
    [all...]
MallocChecker.cpp 187 static bool SummarizeRegion(raw_ostream &os, const MemRegion *MR);
603 const MemRegion *MR) {
604 switch (MR->getKind()) {
606 const FunctionDecl *FD = cast<FunctionTextRegion>(MR)->getDecl();
621 const MemSpaceRegion *MS = MR->getMemorySpace();
624 const VarRegion *VR = dyn_cast<VarRegion>(MR);
639 const VarRegion *VR = dyn_cast<VarRegion>(MR);
654 const VarRegion *VR = dyn_cast<VarRegion>(MR);
685 const MemRegion *MR = ArgVal.getAsRegion();
686 if (MR) {
    [all...]
  /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 210 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA);
226 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
380 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc);
381 if (MR != AliasAnalysis::ModRef) return MR;
626 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA);
629 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 538 void X86JITInfo::relocate(void *Function, MachineRelocation *MR,
540 for (unsigned i = 0; i != NumRelocs; ++i, ++MR) {
541 void *RelocPos = (char*)Function + MR->getMachineCodeOffset();
542 intptr_t ResultPtr = (intptr_t)MR->getResultPointer();
543 switch ((X86::RelocationType)MR->getRelocationType()) {
547 ResultPtr = ResultPtr -(intptr_t)RelocPos - 4 - MR->getConstantVal();
554 ResultPtr = ResultPtr - ((intptr_t)Function + MR->getConstantVal());
X86CodeEmitter.cpp 270 MachineRelocation MR = Indirect
276 MCE.addRelocation(MR);
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 413 virtual void addRelocation(const MachineRelocation &MR) {
414 Relocations.push_back(MR);
838 MachineRelocation &MR = Relocations[i];
840 if (!MR.letTargetResolve()) {
841 if (MR.isExternalSymbol()) {
842 ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
844 DEBUG(dbgs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
848 if (MR.mayNeedFarStub()) {
851 } else if (MR.isGlobalValue()) {
852 ResultPtr = getPointerToGlobal(MR.getGlobalValue()
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SymbolManager.cpp 429 bool SymbolReaper::isLiveRegion(const MemRegion *MR) {
430 if (RegionRoots.count(MR))
433 MR = MR->getBaseRegion();
435 if (const SymbolicRegion *SR = dyn_cast<SymbolicRegion>(MR))
438 if (const VarRegion *VR = dyn_cast<VarRegion>(MR))
445 if (isa<AllocaRegion>(MR))
448 if (isa<CXXThisRegion>(MR))
451 if (isa<MemSpaceRegion>(MR))
ExprEngineCallAndReturn.cpp 296 if (const MemRegion *MR = Call.getInstanceMessageReceiver(LC).getAsRegion())
297 RegionsToInvalidate.push_back(MR);
RegionStore.cpp     [all...]
ProgramState.cpp 138 const MemRegion *MR = LV.getAsRegion();
139 if (MR && Mgr.getOwningEngine())
140 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;

Completed in 849 milliseconds

1 2