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

1 2 3 4 5

  /external/clang/test/CXX/temp/temp.type/
p1-0x.cpp 3 namespace Old {
  /external/llvm/lib/Target/Mips/
MipsJITInfo.h 36 /// whose machine code is at OLD turns into a call to NEW, perhaps by
37 /// overwriting OLD with a branch to NEW. This is used for self-modifying
40 virtual void replaceMachineCodeForFunction(void *Old, void *New);
MipsJITInfo.cpp 29 void MipsJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
31 unsigned OldAddr = (intptr_t)Old;
36 unsigned *OldInstruction = (unsigned *)Old;
47 sys::Memory::InvalidateInstructionCache(Old, 2 * 4);
51 unsigned* CurrentInstr = (unsigned*)Old;
57 // the old function.
70 sys::Memory::InvalidateInstructionCache(Old, 4 * 4);
  /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 468 void PPCJITInfo::replaceMachineCodeForFunction(void *Old, void *New) {
469 EmitBranchToAt((intptr_t)Old, (intptr_t)New, false, is64Bit);
470 sys::Memory::InvalidateInstructionCache(Old, 7*4);
  /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 153 bool Sema::CheckEquivalentExceptionSpec(FunctionDecl *Old, FunctionDecl *New) {
166 Old->getType()->getAs<FunctionProtoType>(), Old->getLocation(),
175 hasImplicitExceptionSpec(Old) != hasImplicitExceptionSpec(New)) {
177 << hasImplicitExceptionSpec(Old);
178 if (!Old->getLocation().isInvalid())
179 Diag(Old->getLocation(), diag::note_previous_declaration);
201 (Old->getLocation().isInvalid() ||
202 Context.getSourceManager().isInSystemHeader(Old->getLocation())) &&
203 Old->isExternC())
    [all...]
SemaDecl.cpp 1624 NamedDecl *old = filter.next(); local
    [all...]
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.cpp 237 MachineInstr *Old = I;
238 uint64_t Amount = Old->getOperand(0).getImm();
246 if (Old->getOpcode() == TII.getCallFrameSetupOpcode()) {
247 New = BuildMI(MF, Old->getDebugLoc(),
251 assert(Old->getOpcode() == TII.getCallFrameDestroyOpcode());
253 uint64_t CalleeAmt = Old->getOperand(1).getImm();
256 New = BuildMI(MF, Old->getDebugLoc(),
273 MachineInstr *Old = I;
275 BuildMI(MF, Old->getDebugLoc(), TII.get(MSP430::SUB16ri),
  /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/clang/include/clang/AST/
ASTUnresolvedSet.h 51 bool replace(const NamedDecl* Old, NamedDecl *New, AccessSpecifier AS) {
53 if (I->getDecl() == Old) {
UnresolvedSet.h 125 bool replace(const NamedDecl* Old, NamedDecl *New) {
127 if (I->getDecl() == Old)
  /external/llvm/unittests/IR/
ValueMapTest.cpp 167 // By default, we overwrite the old value with the replaced value.
187 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
191 static void onDelete(const ExtraData &Data, KeyT Old) {
241 static void onRAUW(const ExtraData &Data, KeyT Old, KeyT New) {
244 static void onDelete(const ExtraData &Data, KeyT Old) {
273 static void onRAUW(ExtraData Map, KeyT Old, KeyT New) {
274 (*Map)->erase(Old);
276 static void onDelete(ExtraData Map, KeyT Old) {
277 (*Map)->erase(Old);
  /external/llvm/include/llvm/Analysis/
CallGraphSCCPass.h 97 /// Old node has been deleted, and New is to be used in its place.
98 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/IR/
Value.cpp 223 // Remove old name.
253 // Remove old name.
529 // point into the old table. Handle this by checking for reallocation and
640 void ValueHandleBase::ValueIsRAUWd(Value *Old, Value *New) {
641 assert(Old->HasValueHandle &&"Should only be called if ValueHandles present");
642 assert(Old != New && "Changing value into itself!");
646 LLVMContextImpl *pImpl = Old->getContext().pImpl;
647 ValueHandleBase *Entry = pImpl->ValueHandles[Old];
672 // Weak goes to the new value, which will unlink it from Old's list.
685 if (Old->HasValueHandle
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.cpp 312 MachineInstr *Old = I;
313 uint64_t Amount = Old->getOperand(0).getImm();
335 if (Old->getOpcode() == XCore::ADJCALLSTACKDOWN) {
337 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode))
340 assert(Old->getOpcode() == XCore::ADJCALLSTACKUP);
342 New=BuildMI(MF, Old->getDebugLoc(), TII.get(Opcode), XCore::SP)
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 240 // InsertNewInstBefore - insert an instruction New before instruction Old
243 Instruction *InsertNewInstBefore(Instruction *New, Instruction &Old) {
246 BasicBlock *BB = Old.getParent();
247 BB->getInstList().insert(&Old, New); // Insert inst
255 Instruction *InsertNewInstWith(Instruction *New, Instruction &Old) {
256 New->setDebugLoc(Old.getDebugLoc());
257 return InsertNewInstBefore(New, 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);
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 215 MDNode *Old = MI->second;
216 MDNode *New = MapValue(Old, VMap, Flags, TypeMapper, Materializer);
217 if (New != Old)

Completed in 403 milliseconds

1 2 3 4 5