Searched refs:MR (Results 1 - 25 of 29) sorted by last modified time

12

/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp684 AliasAnalysis::ModRefResult MR = AA.getModRefInfo(C, cpyDest, srcSize); local
686 if (MR != AliasAnalysis::NoModRef)
687 MR = AA.callCapturesBefore(C, cpyDest, srcSize, &DT);
688 if (MR != AliasAnalysis::NoModRef)
/macosx-10.10/llvmCore-3425.0.34/lib/Target/X86/
H A DX86JITInfo.cpp547 void X86JITInfo::relocate(void *Function, MachineRelocation *MR, argument
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());
H A DX86JITInfo.h66 virtual void relocate(void *Function, MachineRelocation *MR,
H A DX86CodeEmitter.cpp280 MachineRelocation MR = Indirect local
286 MCE.addRelocation(MR);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/PowerPC/
H A DPPCJITInfo.cpp412 void PPCJITInfo::relocate(void *Function, MachineRelocation *MR, argument
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) {
455 ResultPtr += MR->getConstantVal();
H A DPPCJITInfo.h37 virtual void relocate(void *Function, MachineRelocation *MR,
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/
H A DMipsJITInfo.cpp240 void MipsJITInfo::relocate(void *Function, MachineRelocation *MR, argument
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) {
H A DMipsJITInfo.h57 virtual void relocate(void *Function, MachineRelocation *MR,
/macosx-10.10/llvmCore-3425.0.34/lib/Target/ARM/
H A DARMCodeEmitter.cpp476 MachineRelocation MR = Indirect local
483 MCE.addRelocation(MR);
H A DARMJITInfo.cpp238 intptr_t ARMJITInfo::resolveRelocDestAddr(MachineRelocation *MR) const {
239 ARM::RelocationType RT = (ARM::RelocationType)MR->getRelocationType();
242 return (intptr_t)(MR->getResultPointer());
245 return (intptr_t)(MR->getResultPointer()) - MR->getConstantVal();
248 return getJumpTableBaseAddr(MR->getJumpTableIndex());
252 return getConstantPoolEntryAddr(MR->getConstantPoolIndex());
254 ARMConstantPoolValue *ACPV = (ARMConstantPoolValue*)MR->getConstantVal();
257 intptr_t Addr = (intptr_t)(MR->getResultPointer());
267 void ARMJITInfo::relocate(void *Function, MachineRelocation *MR, argument
[all...]
H A DARMJITInfo.h80 virtual void relocate(void *Function, MachineRelocation *MR,
179 intptr_t resolveRelocDestAddr(MachineRelocation *MR) const;
/macosx-10.10/llvmCore-3425.0.34/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp418 virtual void addRelocation(const MachineRelocation &MR) { argument
419 Relocations.push_back(MR);
843 MachineRelocation &MR = Relocations[i]; local
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
[all...]
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Target/
H A DTargetJITInfo.h103 virtual void relocate(void *Function, MachineRelocation *MR, argument
/macosx-10.10/llvmCore-3425.0.34/lib/Analysis/
H A DAliasAnalysisCounter.cpp33 unsigned NoMR, JustRef, JustMod, MR; member in class:__anon10130::AliasAnalysisCounter
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;
H A DMemoryDependenceAnalysis.cpp208 AliasAnalysis::ModRefResult MR = GetLocation(Inst, Loc, AA); local
224 if (isReadOnlyCall && !(MR & AliasAnalysis::Mod) &&
238 if (MR != AliasAnalysis::NoModRef)
499 AliasAnalysis::ModRefResult MR = AA->getModRefInfo(Inst, MemLoc); local
501 if (MR == AliasAnalysis::ModRef)
502 MR = AA->callCapturesBefore(Inst, MemLoc, DT);
503 switch (MR) {
560 AliasAnalysis::ModRefResult MR = GetLocation(QueryInst, MemLoc, AA); local
563 bool isLoad = !(MR & AliasAnalysis::Mod);
/macosx-10.10/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DJITCodeEmitter.h306 virtual void addRelocation(const MachineRelocation &MR) = 0;
H A DMachineCodeEmitter.h303 virtual void addRelocation(const MachineRelocation &MR) = 0;
/macosx-10.10/dtrace-147/disassembler/
H A Ddis_tables.c110 MR, enumerator in enum:__anon8370
984 /* [00] */ IND(dis_op0F00), IND(dis_op0F01), TNS("lar",MR), TNS("lsl",MR),
1005 /* [40] */ TS("cmovx.o",MR), TS("cmovx.no",MR), TS("cmovx.b",MR), TS("cmovx.ae",MR),
1006 /* [44] */ TS("cmovx.e",MR), TS("cmovx.ne",MR), TS("cmovx.be",MR), T
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/dev/i386/
H A Ddis_tables.c112 MR, enumerator in enum:__anon14389
986 /* [00] */ IND(dis_op0F00), IND(dis_op0F01), TNS("lar",MR), TNS("lsl",MR),
1007 /* [40] */ TS("cmovx.o",MR), TS("cmovx.no",MR), TS("cmovx.b",MR), TS("cmovx.ae",MR),
1008 /* [44] */ TS("cmovx.e",MR), TS("cmovx.ne",MR), TS("cmovx.be",MR), T
[all...]
/macosx-10.10/bind9-45.101/bind9/bin/tests/system/
H A Dgenzone.sh84 mr01 MR mrname
85 mr02 MR .
/macosx-10.10/ncurses-44/ncurses/include/
H A DCaps600 set_right_margin smgr str MR - - ----- set right soft margin at current column
H A DCaps.aix4702 set_right_margin smgr str MR - - ----- set right soft margin at current column
H A DCaps.hpux11608 set_right_margin smgr str MR - - ----- set right soft margin at current column
H A DCaps.keys602 set_right_margin smgr str MR - - ----- set right soft margin at current column
H A DCaps.osf1r5745 set_right_margin smgr str MR - - ----- set right soft margin at current column

Completed in 418 milliseconds

12