/frameworks/base/services/net/java/android/net/apf/ |
D | ApfGenerator.java | 95 private class Instruction { class in ApfGenerator 112 Instruction(Opcodes opcode, Register register) { in Instruction() method in ApfGenerator.Instruction 117 Instruction(Opcodes opcode) { in Instruction() method in ApfGenerator.Instruction 268 Instruction targetLabelInstruction; in calculateTargetLabelOffset() 358 private final ArrayList<Instruction> mInstructions = new ArrayList<Instruction>(); 359 private final HashMap<String, Instruction> mLabels = new HashMap<String, Instruction>(); 360 private final Instruction mDropLabel = new Instruction(Opcodes.LABEL); 361 private final Instruction mPassLabel = new Instruction(Opcodes.LABEL); 373 private void addInstruction(Instruction instruction) { in addInstruction() 396 Instruction instruction = new Instruction(Opcodes.LABEL); in defineLabel() [all …]
|
/frameworks/compile/slang/BitWriter_3_2/ |
D | BitcodeWriter.cpp | 66 case Instruction::Trunc : return bitc::CAST_TRUNC; in GetEncodedCastOpcode() 67 case Instruction::ZExt : return bitc::CAST_ZEXT; in GetEncodedCastOpcode() 68 case Instruction::SExt : return bitc::CAST_SEXT; in GetEncodedCastOpcode() 69 case Instruction::FPToUI : return bitc::CAST_FPTOUI; in GetEncodedCastOpcode() 70 case Instruction::FPToSI : return bitc::CAST_FPTOSI; in GetEncodedCastOpcode() 71 case Instruction::UIToFP : return bitc::CAST_UITOFP; in GetEncodedCastOpcode() 72 case Instruction::SIToFP : return bitc::CAST_SITOFP; in GetEncodedCastOpcode() 73 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC; in GetEncodedCastOpcode() 74 case Instruction::FPExt : return bitc::CAST_FPEXT; in GetEncodedCastOpcode() 75 case Instruction::PtrToInt: return bitc::CAST_PTRTOINT; in GetEncodedCastOpcode() [all …]
|
D | ValueEnumerator.h | 27 class Instruction; variable 81 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType; 129 unsigned getInstructionID(const llvm::Instruction *I) const; 130 void setInstructionID(const llvm::Instruction *I);
|
D | ValueEnumerator.cpp | 86 for (const Instruction &I : BB) { in ValueEnumerator() 123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const { in getInstructionID() 129 void ValueEnumerator::setInstructionID(const Instruction *I) { in setInstructionID()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | BitcodeWriter.cpp | 66 case Instruction::Trunc : return bitc::CAST_TRUNC; in GetEncodedCastOpcode() 67 case Instruction::ZExt : return bitc::CAST_ZEXT; in GetEncodedCastOpcode() 68 case Instruction::SExt : return bitc::CAST_SEXT; in GetEncodedCastOpcode() 69 case Instruction::FPToUI : return bitc::CAST_FPTOUI; in GetEncodedCastOpcode() 70 case Instruction::FPToSI : return bitc::CAST_FPTOSI; in GetEncodedCastOpcode() 71 case Instruction::UIToFP : return bitc::CAST_UITOFP; in GetEncodedCastOpcode() 72 case Instruction::SIToFP : return bitc::CAST_SITOFP; in GetEncodedCastOpcode() 73 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC; in GetEncodedCastOpcode() 74 case Instruction::FPExt : return bitc::CAST_FPEXT; in GetEncodedCastOpcode() 75 case Instruction::PtrToInt: return bitc::CAST_PTRTOINT; in GetEncodedCastOpcode() [all …]
|
D | ValueEnumerator.h | 26 class Instruction; variable 78 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType; 126 unsigned getInstructionID(const llvm::Instruction *I) const; 127 void setInstructionID(const llvm::Instruction *I);
|
D | ValueEnumerator.cpp | 86 for (const Instruction &I : BB) { in ValueEnumerator() 123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const { in getInstructionID() 129 void ValueEnumerator::setInstructionID(const Instruction *I) { in setInstructionID()
|
/frameworks/compile/slang/BitWriter_2_9/ |
D | BitcodeWriter.cpp | 81 case Instruction::Trunc : return bitc::CAST_TRUNC; in GetEncodedCastOpcode() 82 case Instruction::ZExt : return bitc::CAST_ZEXT; in GetEncodedCastOpcode() 83 case Instruction::SExt : return bitc::CAST_SEXT; in GetEncodedCastOpcode() 84 case Instruction::FPToUI : return bitc::CAST_FPTOUI; in GetEncodedCastOpcode() 85 case Instruction::FPToSI : return bitc::CAST_FPTOSI; in GetEncodedCastOpcode() 86 case Instruction::UIToFP : return bitc::CAST_UITOFP; in GetEncodedCastOpcode() 87 case Instruction::SIToFP : return bitc::CAST_SITOFP; in GetEncodedCastOpcode() 88 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC; in GetEncodedCastOpcode() 89 case Instruction::FPExt : return bitc::CAST_FPEXT; in GetEncodedCastOpcode() 90 case Instruction::PtrToInt: return bitc::CAST_PTRTOINT; in GetEncodedCastOpcode() [all …]
|
D | ValueEnumerator.h | 26 class Instruction; variable 78 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType; 126 unsigned getInstructionID(const llvm::Instruction *I) const; 127 void setInstructionID(const llvm::Instruction *I);
|
D | ValueEnumerator.cpp | 86 for (const Instruction &I : BB) { in ValueEnumerator() 123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const { in getInstructionID() 129 void ValueEnumerator::setInstructionID(const Instruction *I) { in setInstructionID()
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 199 SmallVector<Instruction *, 64> InstructionList; 493 case bitc::CAST_TRUNC : return Instruction::Trunc; in GetDecodedCastOpcode() 494 case bitc::CAST_ZEXT : return Instruction::ZExt; in GetDecodedCastOpcode() 495 case bitc::CAST_SEXT : return Instruction::SExt; in GetDecodedCastOpcode() 496 case bitc::CAST_FPTOUI : return Instruction::FPToUI; in GetDecodedCastOpcode() 497 case bitc::CAST_FPTOSI : return Instruction::FPToSI; in GetDecodedCastOpcode() 498 case bitc::CAST_UITOFP : return Instruction::UIToFP; in GetDecodedCastOpcode() 499 case bitc::CAST_SITOFP : return Instruction::SIToFP; in GetDecodedCastOpcode() 500 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc; in GetDecodedCastOpcode() 501 case bitc::CAST_FPEXT : return Instruction::FPExt; in GetDecodedCastOpcode() [all …]
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 180 SmallPtrSet<Instruction*, 32> DeadInsts; in UpgradeExceptionHandling() 261 for (SmallPtrSet<Instruction*, 32>::iterator in UpgradeExceptionHandling() 263 Instruction *Inst = *I; in UpgradeExceptionHandling() 289 Instruction *Inst = &*I++; in UpgradeExceptionHandling() 441 SmallVector<Instruction *, 64> InstructionList; 730 case bitc::CAST_TRUNC : return Instruction::Trunc; in GetDecodedCastOpcode() 731 case bitc::CAST_ZEXT : return Instruction::ZExt; in GetDecodedCastOpcode() 732 case bitc::CAST_SEXT : return Instruction::SExt; in GetDecodedCastOpcode() 733 case bitc::CAST_FPTOUI : return Instruction::FPToUI; in GetDecodedCastOpcode() 734 case bitc::CAST_FPTOSI : return Instruction::FPToSI; in GetDecodedCastOpcode() [all …]
|
/frameworks/compile/libbcc/lib/Renderscript/ |
D | RSInvariant.cpp | 113 llvm::Instruction *Inst = llvm::cast<llvm::Instruction>(Use.getUser()); in markInvariantUserLoads()
|
D | RSAddDebugInfoPass.cpp | 162 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo() 221 llvm::Instruction *decl = DebugInfo.insertDeclare( in attachDebugInfo() 228 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo()
|
D | RSX86TranslateGEPPass.cpp | 57 llvm::Instruction *InsertBefore) { in incrementOffset()
|
D | RSKernelExpand.cpp | 447 Builder.SetInsertPoint(llvm::cast<llvm::Instruction>(IVNext)); in createLoop() 550 llvm::Instruction *LoopHeaderInsertionPoint) { in ExpandSpecialArguments()
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
D | HexagonEncodings.h | 12 Instruction insn_encodings[] = {
|
D | HexagonRelocationFunctions.h | 18 } Instruction; typedef
|
D | HexagonRelocator.cpp | 142 Instruction* encodings, in findBitMask() 163 sizeof(insn_encodings) / sizeof(Instruction))
|
/frameworks/base/docs/html/ndk/guides/ |
D | abis.jd | 50 <th>Supported Instruction Set(s)</th> 258 Instruction Set Reference</a></li> 311 Intel64 and IA-32 Architectures Software Developer's Manual, Volume 2: Instruction Set
|
D | application_mk.jd | 129 <th scope="col">Instruction set</th>
|