Searched refs:Instruction (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/services/net/java/android/net/apf/
H A DApfGenerator.java95 private class Instruction { class in class:ApfGenerator
112 Instruction(Opcodes opcode, Register register) { method in class:ApfGenerator.Instruction
117 Instruction(Opcodes opcode) { method in class:ApfGenerator.Instruction
268 Instruction targetLabelInstruction;
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(Opcode
[all...]
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp66 case Instruction::Trunc : return bitc::CAST_TRUNC;
67 case Instruction::ZExt : return bitc::CAST_ZEXT;
68 case Instruction::SExt : return bitc::CAST_SEXT;
69 case Instruction::FPToUI : return bitc::CAST_FPTOUI;
70 case Instruction::FPToSI : return bitc::CAST_FPTOSI;
71 case Instruction::UIToFP : return bitc::CAST_UITOFP;
72 case Instruction::SIToFP : return bitc::CAST_SITOFP;
73 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC;
74 case Instruction::FPExt : return bitc::CAST_FPEXT;
75 case Instruction
[all...]
H A DValueEnumerator.h26 class Instruction;
78 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType;
126 unsigned getInstructionID(const llvm::Instruction *I) const;
127 void setInstructionID(const llvm::Instruction *I);
H A DValueEnumerator.cpp86 for (const Instruction &I : BB) {
123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
125 assert(I != InstructionMap.end() && "Instruction is not mapped!");
129 void ValueEnumerator::setInstructionID(const Instruction *I) {
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp66 case Instruction::Trunc : return bitc::CAST_TRUNC;
67 case Instruction::ZExt : return bitc::CAST_ZEXT;
68 case Instruction::SExt : return bitc::CAST_SEXT;
69 case Instruction::FPToUI : return bitc::CAST_FPTOUI;
70 case Instruction::FPToSI : return bitc::CAST_FPTOSI;
71 case Instruction::UIToFP : return bitc::CAST_UITOFP;
72 case Instruction::SIToFP : return bitc::CAST_SITOFP;
73 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC;
74 case Instruction::FPExt : return bitc::CAST_FPEXT;
75 case Instruction
[all...]
H A DValueEnumerator.h27 class Instruction;
81 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType;
129 unsigned getInstructionID(const llvm::Instruction *I) const;
130 void setInstructionID(const llvm::Instruction *I);
H A DValueEnumerator.cpp86 for (const Instruction &I : BB) {
123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
125 assert(I != InstructionMap.end() && "Instruction is not mapped!");
129 void ValueEnumerator::setInstructionID(const Instruction *I) {
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInvariant.cpp113 llvm::Instruction *Inst = llvm::cast<llvm::Instruction>(Use.getUser());
H A DRSAddDebugInfoPass.cpp162 for (llvm::Instruction &inst : llvm::instructions(Func)) {
221 llvm::Instruction *decl = DebugInfo.insertDeclare(
228 for (llvm::Instruction &inst : llvm::instructions(Func)) {
H A DRSX86TranslateGEPPass.cpp57 llvm::Instruction *InsertBefore) {
H A DRSKernelExpand.cpp447 Builder.SetInsertPoint(llvm::cast<llvm::Instruction>(IVNext));
538 // LoopHeaderInsertionPoint - an Instruction in the loop header, before which
550 llvm::Instruction *LoopHeaderInsertionPoint) {
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp81 case Instruction::Trunc : return bitc::CAST_TRUNC;
82 case Instruction::ZExt : return bitc::CAST_ZEXT;
83 case Instruction::SExt : return bitc::CAST_SEXT;
84 case Instruction::FPToUI : return bitc::CAST_FPTOUI;
85 case Instruction::FPToSI : return bitc::CAST_FPTOSI;
86 case Instruction::UIToFP : return bitc::CAST_UITOFP;
87 case Instruction::SIToFP : return bitc::CAST_SITOFP;
88 case Instruction::FPTrunc : return bitc::CAST_FPTRUNC;
89 case Instruction::FPExt : return bitc::CAST_FPEXT;
90 case Instruction
[all...]
H A DValueEnumerator.h26 class Instruction;
78 typedef llvm::DenseMap<const llvm::Instruction*, unsigned> InstructionMapType;
126 unsigned getInstructionID(const llvm::Instruction *I) const;
127 void setInstructionID(const llvm::Instruction *I);
H A DValueEnumerator.cpp86 for (const Instruction &I : BB) {
123 unsigned ValueEnumerator::getInstructionID(const Instruction *Inst) const {
125 assert(I != InstructionMap.end() && "Instruction is not mapped!");
129 void ValueEnumerator::setInstructionID(const Instruction *I) {
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp180 SmallPtrSet<Instruction*, 32> DeadInsts;
261 for (SmallPtrSet<Instruction*, 32>::iterator
263 Instruction *Inst = *I;
289 Instruction *Inst = &*I++;
441 SmallVector<Instruction *, 64> InstructionList;
730 case bitc::CAST_TRUNC : return Instruction::Trunc;
731 case bitc::CAST_ZEXT : return Instruction::ZExt;
732 case bitc::CAST_SEXT : return Instruction::SExt;
733 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
734 case bitc::CAST_FPTOSI : return Instruction
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp199 SmallVector<Instruction *, 64> InstructionList;
493 case bitc::CAST_TRUNC : return Instruction::Trunc;
494 case bitc::CAST_ZEXT : return Instruction::ZExt;
495 case bitc::CAST_SEXT : return Instruction::SExt;
496 case bitc::CAST_FPTOUI : return Instruction::FPToUI;
497 case bitc::CAST_FPTOSI : return Instruction::FPToSI;
498 case bitc::CAST_UITOFP : return Instruction::UIToFP;
499 case bitc::CAST_SITOFP : return Instruction::SIToFP;
500 case bitc::CAST_FPTRUNC : return Instruction::FPTrunc;
501 case bitc::CAST_FPEXT : return Instruction
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocationFunctions.h18 } Instruction; typedef in typeref:struct:__anon1220
H A DHexagonRelocator.cpp142 Instruction* encodings,
163 sizeof(insn_encodings) / sizeof(Instruction))
H A DHexagonEncodings.h12 Instruction insn_encodings[] = {
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 284 milliseconds