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

1 2 3 4

  /external/clang/test/CXX/temp/temp.type/
p1-0x.cpp 3 namespace Old {
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 35 /// whose machine code is at OLD turns into a call to NEW, perhaps by
36 /// overwriting OLD with a branch to NEW. This is used for self-modifying
39 virtual void replaceMachineCodeForFunction(void *Old, void *New);
  /external/llvm/lib/Target/PowerPC/
PPCJITInfo.h 41 /// whose machine code is at OLD turns into a call to NEW, perhaps by
42 /// overwriting OLD with a branch to NEW. This is used for self-modifying
45 virtual void replaceMachineCodeForFunction(void *Old, void *New);
PPCJITInfo.cpp 467 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
468 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
469 sys::Memory::InvalidateInstructionCache(Old, 7*4);
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.cpp 96 MachineInstr *Old = I;
97 int Amount = Old->getOperand(0).getImm() + 4;
106 if (Old->getOpcode() == MBlaze::ADJCALLSTACKDOWN) {
107 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1)
110 assert(Old->getOpcode() == MBlaze::ADJCALLSTACKUP);
111 New = BuildMI(MF,Old->getDebugLoc(),TII.get(MBlaze::ADDIK),MBlaze::R1)
  /external/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 113 MachineInstr *Old = I;
114 uint64_t Amount = Old->getOperand(0).getImm();
122 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
123 New = BuildMI(MF, Old->getDebugLoc(),
127 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
129 uint64_t CalleeAmt = Old->getOperand(1).getImm();
132 New = BuildMI(MF, Old->getDebugLoc(),
149 MachineInstr *Old = I;
151 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
  /external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 109 /// ReplaceMBBInJumpTables - If Old is the target of any jump tables, update
111 bool ReplaceMBBInJumpTables(MachineBasicBlock *Old, MachineBasicBlock *New);
113 /// ReplaceMBBInJumpTable - If Old is a target of the jump tables, update
115 bool ReplaceMBBInJumpTable(unsigned Idx, MachineBasicBlock *Old,
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 119 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
130 Old->getType()->getAs<FunctionProtoType>(),
131 Old->getLocation(),
157 (Old->getLocation().isInvalid() ||
158 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
159 Old->isExternC()) {
172 = Old->getType()->getAs<FunctionProtoType>();
180 // FIXME: We can't just take the expression from the old prototype. It
181 // likely contains references to the old prototype's parameters.
269 if (!Old->getLocation().isInvalid()
    [all...]
IdentifierResolver.cpp 83 IdentifierResolver::IdDeclInfo::ReplaceDecl(NamedDecl *Old, NamedDecl *New) {
85 if (Old == *(I-1)) {
235 bool IdentifierResolver::ReplaceDecl(NamedDecl *Old, NamedDecl *New) {
236 assert(Old->getDeclName() == New->getDeclName() &&
239 DeclarationName Name = Old->getDeclName();
249 if (Ptr == Old) {
256 return toIdDeclInfo(Ptr)->ReplaceDecl(Old, New);
  /external/llvm/include/llvm/ADT/
SCCIterator.h 187 /// ReplaceNode - This informs the scc_iterator that the specified Old node
189 void ReplaceNode(NodeType *Old, NodeType *New) {
190 assert(nodeVisitNumbers.count(Old) && "Old not in scc_iterator?");
191 nodeVisitNumbers[New] = nodeVisitNumbers[Old];
192 nodeVisitNumbers.erase(Old);
ImmutableIntervalMap.h 220 ImmutableIntervalMap add(ImmutableIntervalMap Old,
222 TreeTy *T = F.add(Old.Root, std::pair<key_type, data_type>(K, D));
226 ImmutableIntervalMap remove(ImmutableIntervalMap Old, key_type_ref K) {
227 TreeTy *T = F.remove(Old.Root, K);
  /external/llvm/include/llvm/Target/
TargetJITInfo.h 38 /// whose machine code is at OLD turns into a call to NEW, perhaps by
39 /// overwriting OLD with a branch to NEW. This is used for self-modifying
42 virtual void replaceMachineCodeForFunction(void *Old, void *New) = 0;
  /external/llvm/lib/Target/X86/
X86JITInfo.h 34 /// whose machine code is at OLD turns into a call to NEW, perhaps by
35 /// overwriting OLD with a branch to NEW. This is used for self-modifying
38 virtual void replaceMachineCodeForFunction(void *Old, void *New);
  /external/valgrind/main/gdbserver_tests/
mcwatchpoints.stdoutB.exp 20 Old value = 102 'f'
26 Old value = 100 'd'
  /external/llvm/lib/VMCore/
Value.cpp 217 // Remove old name.
247 // Remove old name.
517 // point into the old table. Handle this by checking for reallocation and
628 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
629 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
630 assert(Old != New && "Changing value into itself!");
634 LLVMContextImpl *pImpl = Old->getContext().pImpl;
635 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
660 // Weak goes to the new value, which will unlink it from Old's list.
673 if (Old->HasValueHandle
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreRegisterInfo.cpp 109 MachineInstr *Old = I;
110 uint64_t Amount = Old->getOperand(0).getImm();
132 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
134 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
137 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
139 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
293 // Erase old instruction.
  /external/bluetooth/glib/glib/
Makefile.am 247 echo "*** Old headers found in $(glibincludedir). You should remove the" ; \
  /external/clang/include/clang/Sema/
IdentifierResolver.h 54 /// Replaces the Old declaration with the New declaration. If the
55 /// replacement is successful, returns true. If the old
57 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
172 /// Replace the decl Old with the new declaration New on its
173 /// identifier chain. Returns true if the old declaration was found
175 bool ReplaceDecl(NamedDecl *Old, NamedDecl *New);
  /external/llvm/unittests/VMCore/
ValueMapTest.cpp 168 // By default, we overwrite the old value with the replaced value.
188 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
192 static void onDelete(const ExtraData &Data, KeyT Old) {
242 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
245 static void onDelete(const ExtraData &Data, KeyT Old) {
274 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
275 (*Map)->erase(Old);
277 static void onDelete(ExtraData Map, KeyT Old) {
278 (*Map)->erase(Old);
  /external/llvm/include/llvm/
CallGraphSCCPass.h 94 /// Old node has been deleted, and New is to be used in its place.
95 void ReplaceNode(CallGraphNode *Old, CallGraphNode *New);
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) {
90 SUnit *SU = newSUnit(Old->getNode());
91 SU->OrigNode = Old->OrigNode;
92 SU->Latency = Old->Latency;
93 SU->isVRegCycle = Old->isVRegCycle;
94 SU->isCall = Old->isCall;
95 SU->isCallOp = Old->isCallOp;
96 SU->isTwoAddress = Old->isTwoAddress;
97 SU->isCommutable = Old->isCommutable;
98 SU->hasPhysRegDefs = Old->hasPhysRegDefs
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 232 // InsertNewInstBefore - insert an instruction New before instruction Old
235 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
238 BasicBlock *BB = Old.getParent();
239 BB->getInstList().insert(&Old, New); // Insert inst
247 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
248 New->setDebugLoc(Old.getDebugLoc());
249 return InsertNewInstBefore(New, Old);
  /external/clang/include/clang/AST/
UnresolvedSet.h 122 bool replace(const NamedDecl* Old, NamedDecl *New) {
124 if (I->getDecl() == Old)
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 12 ATTRIBUTE Old-Password 17 string
40 # For compatibility with ESVA RADIUS, Old Cistron RADIUS
  /external/llvm/lib/Target/ARM/
ARMJITInfo.h 52 /// whose machine code is at OLD turns into a call to NEW, perhaps by
53 /// overwriting OLD with a branch to NEW. This is used for self-modifying
56 virtual void replaceMachineCodeForFunction(void *Old, void *New);

Completed in 578 milliseconds

1 2 3 4