HomeSort by relevance Sort by last modified time
    Searched refs:Orig (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/Transforms/Scalar/
LowerAtomic.cpp 29 LoadInst *Orig = Builder.CreateLoad(Ptr);
30 Value *Equal = Builder.CreateICmpEQ(Orig, Cmp);
31 Value *Res = Builder.CreateSelect(Equal, Val, Orig);
34 CXI->replaceAllUsesWith(Orig);
44 LoadInst *Orig = Builder.CreateLoad(Ptr);
53 Res = Builder.CreateAdd(Orig, Val);
56 Res = Builder.CreateSub(Orig, Val);
59 Res = Builder.CreateAnd(Orig, Val);
62 Res = Builder.CreateNot(Builder.CreateAnd(Orig, Val));
65 Res = Builder.CreateOr(Orig, Val)
    [all...]
  /external/llvm/include/llvm/CodeGen/
VirtRegMap.h 152 unsigned Orig = getPreSplitReg(VirtReg);
153 return Orig ? Orig : VirtReg;
MachineFunction.h 379 /// 'Orig' instruction, identical in all ways except the instruction
384 MachineInstr *CloneMachineInstr(const MachineInstr *Orig);
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 34 Orig.insert(V1);
45 DeleteContainerPointers(Orig);
49 SmallPtrSet<Value *, 4> Orig; // Erase on exit
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 283 const MachineInstr *Orig,
285 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
297 MachineInstr *TargetInstrInfo::duplicate(MachineInstr *Orig,
299 assert(!Orig->isNotDuplicable() &&
301 return MF.CloneMachineInstr(Orig);
SplitKit.cpp 301 const LiveInterval &Orig = LIS.getInterval(OrigReg);
302 assert(!Orig.empty() && "Splitting empty interval?");
303 LiveInterval::const_iterator I = Orig.find(Idx);
306 if (I != Orig.end() && I->start <= Idx)
310 return I != Orig.begin() && (--I)->end == Idx;
    [all...]
MachineFunction.cpp 174 /// 'Orig' instruction, identical in all ways except the instruction
178 MachineFunction::CloneMachineInstr(const MachineInstr *Orig) {
180 MachineInstr(*this, *Orig);
    [all...]
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 178 /// The register in Orig->getOperand(0).getReg() will be substituted by
184 const MachineInstr *Orig,
187 /// duplicate - Create a duplicate of the Orig instruction in MF. This is like
192 virtual MachineInstr *duplicate(MachineInstr *Orig,
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.h 137 const MachineInstr *Orig,
140 MachineInstr *duplicate(MachineInstr *Orig, MachineFunction &MF) const;
ARMBaseInstrInfo.cpp     [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 170 // Restore orig program & free test.
266 Module *Orig = BD.swapProgramIn(Clone);
283 delete BD.swapProgramIn(Orig);
480 Module *Orig = BD.swapProgramIn(Clone);
505 delete BD.swapProgramIn(Orig);
508 delete BD.swapProgramIn(Orig);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 58 CallEventRef(const CallEventRef &Orig) : IntrusiveRefCntPtr<const T>(Orig) {}
316 ProgramStateRef Orig = 0) const;
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.h 192 const MachineInstr *Orig,
X86InstrInfo.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 140 ProgramStateRef Orig) const {
141 ProgramStateRef Result = (Orig ? Orig : getState());
    [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSimplifyDemanded.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 532 void setOriginalDecl(const Decl *Orig) {
533 OriginalDecl = Orig;
    [all...]
  /external/valgrind/main/memcheck/
mc_translate.c 130 static IRTemp findShadowTmpB ( struct _MCEnv* mce, IRTemp orig );
143 When .kind is Orig, .shadowV and .shadowB may give the identities
153 enum { Orig=1, VSh=2, BSh=3 }
180 total number of Orig, V- and B- temps allocated so far.
254 static IRTemp findShadowTmpV ( MCEnv* mce, IRTemp orig )
257 /* VG_(indexXA) range-checks 'orig', hence no need to check
259 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
260 tl_assert(ent->kind == Orig);
263 = newTemp( mce, shadowTypeV(mce->sb->tyenv->types[orig]), VSh );
266 ent = (TempMapEnt*)VG_(indexXA)( mce->tmpMap, (Word)orig );
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp 47 NamedDecl *Orig,
49 NamedDecl *D = Orig->getUnderlyingDecl();
55 return Orig;
92 NamedDecl *Orig = filter.next();
93 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
97 else if (Repl != Orig) {
    [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]

Completed in 825 milliseconds