/external/llvm/include/llvm/Target/ |
D | TargetOptions.h | 42 namespace JumpTable { 106 JTType(JumpTable::Single), ThreadModel(ThreadModel::POSIX), in TargetOptions() 245 JumpTable::JumpTableType JTType;
|
/external/llvm/include/llvm/CodeGen/ |
D | CommandFlags.h | 250 cl::opt<llvm::JumpTable::JumpTableType> 253 cl::init(JumpTable::Single), 255 clEnumValN(JumpTable::Single, "single", 257 clEnumValN(JumpTable::Arity, "arity", 259 clEnumValN(JumpTable::Simplified, "simplified", 261 clEnumValN(JumpTable::Full, "full",
|
D | PseudoSourceValue.h | 41 JumpTable, enumerator 69 bool isJumpTable() const { return Kind == JumpTable; } in isJumpTable()
|
D | ISDOpcodes.h | 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress, enumerator
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 233 struct JumpTable { struct 234 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M, in JumpTable() function 258 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock; argument 466 void visitJumpTable(JumpTable &JT); 467 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
|
/external/v8/src/compiler/ |
D | code-generator.cc | 19 class CodeGenerator::JumpTable final : public ZoneObject { class in v8::internal::compiler::CodeGenerator 21 JumpTable(JumpTable* next, Label** targets, size_t target_count) in JumpTable() function in v8::internal::compiler::CodeGenerator::JumpTable 25 JumpTable* next() const { return next_; } in next() 31 JumpTable* const next_; 209 for (JumpTable* table = jump_tables_; table; table = table->next()) { in GenerateCode() 591 jump_tables_ = new (zone()) JumpTable(jump_tables_, targets, target_count); in AddJumpTable()
|
D | code-generator.h | 191 class JumpTable; variable 279 JumpTable* jump_tables_;
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.h | 246 struct JumpTable { struct 247 JumpTable(unsigned R, unsigned J, MachineBasicBlock *M, in JumpTable() function 272 typedef std::pair<JumpTableHeader, JumpTable> JumpTableBlock; argument 818 void visitJumpTable(JumpTable &JT); 819 void visitJumpTableHeader(JumpTable &JT, JumpTableHeader &JTH,
|
D | SelectionDAGDumper.cpp | 100 case ISD::JumpTable: return "JumpTable"; in getOperationName()
|
/external/llvm/lib/Transforms/IPO/ |
D | LowerTypeTests.cpp | 757 auto JumpTable = new GlobalVariable(*M, JumpTableType, in buildBitSetsFromFunctions() local 760 JumpTable->setSection(ObjectFormat == Triple::MachO in buildBitSetsFromFunctions() 763 lowerTypeTestCalls(TypeIds, JumpTable, GlobalLayout); in buildBitSetsFromFunctions() 770 JumpTableType, JumpTable, in buildBitSetsFromFunctions() 793 createJumpTableEntry(JumpTable, Functions[I], I)); in buildBitSetsFromFunctions() 794 JumpTable->setInitializer( in buildBitSetsFromFunctions()
|
D | ForceFunctionAttrs.cpp | 35 .Case("jumptable", Attribute::JumpTable) in parseAttrKind()
|
/external/llvm/utils/ |
D | llvm.grm | 360 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]" 368 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef
|
/external/swiftshader/third_party/LLVM/utils/ |
D | llvm.grm | 359 | switch IntType ValueRef ^ "," label ValueRef "[" JumpTable "]" 367 JumpTable ::= JumpTable IntType ConstValueRef ^ "," label ValueRef
|
/external/llvm/lib/CodeGen/ |
D | PseudoSourceValue.cpp | 99 JumpTablePSV(PseudoSourceValue::JumpTable), in PseudoSourceValueManager()
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 63 JumpTable, ConstantPool, ExternalSymbol, BlockAddress, enumerator
|
D | SelectionDAGNodes.h | 1264 : SDNode(isTarg ? ISD::TargetJumpTable : ISD::JumpTable, 1274 return N->getOpcode() == ISD::JumpTable ||
|
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/ |
D | JITEmitter.cpp | 315 MachineJumpTableInfo *JumpTable; member in __anonc362e38e0111::JITEmitter 1125 JumpTable = MJTI; in initJumpTableInfo() 1234 const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables(); in getJumpTableEntryAddress() 1237 unsigned EntrySize = JumpTable->getEntrySize(*TheJIT->getTargetData()); in getJumpTableEntryAddress()
|
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/ |
D | BlackfinISelLowering.cpp | 61 setOperationAction(ISD::JumpTable, MVT::i32, Custom); in BlackfinTargetLowering() 467 case ISD::JumpTable: return LowerJumpTable(Op, DAG); in LowerOperation()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyISelLowering.cpp | 62 setOperationAction(ISD::JumpTable, MVTPtr, Custom); in WebAssemblyTargetLowering() 539 case ISD::JumpTable: in LowerOperation()
|
/external/swiftshader/third_party/LLVM/lib/Target/Alpha/ |
D | AlphaISelLowering.cpp | 154 setOperationAction(ISD::JumpTable, MVT::i64, Custom); in AlphaTargetLowering() 155 setOperationAction(ISD::JumpTable, MVT::i32, Custom); in AlphaTargetLowering() 578 case ISD::JumpTable: return LowerJumpTable(Op, DAG); in LowerOperation()
|
/external/llvm/include/llvm/IR/ |
D | Attributes.td | 65 def JumpTable : EnumAttr<"jumptable">;
|
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/ |
D | SystemZISelLowering.cpp | 95 setOperationAction(ISD::JumpTable, MVT::i64, Custom); in SystemZTargetLowering() 169 case ISD::JumpTable: return LowerJumpTable(Op, DAG); in LowerOperation()
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeISelLowering.cpp | 149 setOperationAction(ISD::JumpTable, MVT::i32, Custom); in MBlazeTargetLowering() 202 case ISD::JumpTable: return LowerJumpTable(Op, DAG); in LowerOperation()
|
/external/llvm/lib/IR/ |
D | Attributes.cpp | 255 if (hasAttribute(Attribute::JumpTable)) in getAsString() 513 case Attribute::JumpTable: return 1ULL << 45; in getAttrMask()
|
/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.cpp | 164 setOperationAction(ISD::JumpTable, MVT::i16, Custom); in MSP430TargetLowering() 195 case ISD::JumpTable: return LowerJumpTable(Op, DAG); in LowerOperation()
|