/external/v8/src/compiler/ |
instruction-selector.h | 173 InstructionCode Encode(InstructionCode opcode) { 292 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 294 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 297 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 300 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 304 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 308 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 313 Instruction* Emit(InstructionCode opcode, InstructionOperand output, 318 Instruction* Emit(InstructionCode opcode, size_t output_count [all...] |
instruction-codes.h | 157 // are encoded into the InstructionCode of the instruction and tell the 232 // The InstructionCode is an opaque, target-specific integer that encodes 236 typedef int32_t InstructionCode; 238 // Helpers for encoding / decoding InstructionCode into the fields needed 240 // continuation into a single InstructionCode which is stored as part of
|
instruction-selector.cc | 157 Instruction* InstructionSelector::Emit(InstructionCode opcode, 166 Instruction* InstructionSelector::Emit(InstructionCode opcode, 175 Instruction* InstructionSelector::Emit(InstructionCode opcode, 188 Instruction* InstructionSelector::Emit(InstructionCode opcode, 203 InstructionCode opcode, InstructionOperand output, InstructionOperand a, 215 InstructionCode opcode, InstructionOperand output, InstructionOperand a, 227 InstructionCode opcode, InstructionOperand output, InstructionOperand a, 240 InstructionCode opcode, size_t output_count, InstructionOperand* outputs, 676 InstructionCode opcode, FlagsContinuation* cont) { 681 InstructionCode opcode, InstructionOperand a, FlagsContinuation* cont) [all...] |
instruction.h | 838 InstructionCode opcode() const { return opcode_; } 848 static Instruction* New(Zone* zone, InstructionCode opcode) { 852 static Instruction* New(Zone* zone, InstructionCode opcode, [all...] |
instruction.cc | 322 Instruction::Instruction(InstructionCode opcode) 332 Instruction::Instruction(InstructionCode opcode, size_t output_count, [all...] |
/external/v8/src/compiler/arm/ |
instruction-selector-arm.cc | 29 bool CanBeImmediate(Node* node, InstructionCode opcode) { 144 InstructionCode* opcode_return, Node* node, 166 InstructionCode* opcode_return, Node* node, 182 bool TryMatchROR(InstructionSelector* selector, InstructionCode* opcode_return, 191 bool TryMatchASR(InstructionSelector* selector, InstructionCode* opcode_return, 200 bool TryMatchLSL(InstructionSelector* selector, InstructionCode* opcode_return, 209 InstructionCode* opcode_return, Node* node, 217 bool TryMatchLSR(InstructionSelector* selector, InstructionCode* opcode_return, 227 InstructionCode* opcode_return, Node* node, 239 InstructionCode* opcode_return, Node* node [all...] |
code-generator-arm.cc | 328 InstructionCode opcode, 339 InstructionCode opcode, 711 InstructionCode opcode = instr->opcode(); [all...] |
/external/v8/src/compiler/x64/ |
instruction-selector-x64.cc | 51 bool CanBeMemoryOperand(InstructionCode opcode, Node* node, Node* input, 317 InstructionCode code = opcode | AddressingModeField::encode(mode); 363 InstructionCode code = kArchStoreWithWriteBarrier; 373 InstructionCode code = 399 InstructionCode code = opcode | AddressingModeField::encode(addressing_mode) | 415 InstructionCode opcode, FlagsContinuation* cont) { 482 InstructionCode opcode) { 604 void EmitLea(InstructionSelector* selector, InstructionCode opcode, 674 InstructionCode opcode) { 747 InstructionCode code = opcode | AddressingModeField::encode(mode) [all...] |
code-generator-x64.cc | 334 InstructionCode opcode, Instruction* instr, 344 InstructionCode opcode, Instruction* instr, 677 InstructionCode opcode = instr->opcode(); [all...] |
/external/v8/src/compiler/ia32/ |
instruction-selector-ia32.cc | 30 bool CanBeMemoryOperand(InstructionCode opcode, Node* node, Node* input, 193 InstructionCode opcode) { 317 InstructionCode code = opcode | AddressingModeField::encode(mode); 366 InstructionCode code = kArchStoreWithWriteBarrier; 415 InstructionCode code = 438 InstructionCode opcode, FlagsContinuation* cont) { 500 InstructionCode opcode) { 590 InstructionCode opcode = AddressingModeField::encode(mode) | kIA32Lea; 696 void VisitWord32PairShift(InstructionSelector* selector, InstructionCode opcode, 854 InstructionCode opcode = AddressingModeField::encode(mode) | kIA32Lea [all...] |
code-generator-ia32.cc | 335 InstructionCode opcode, Instruction* instr, 647 InstructionCode opcode = instr->opcode(); [all...] |
/external/v8/src/compiler/mips/ |
instruction-selector-mips.cc | 27 InstructionOperand UseOperand(Node* node, InstructionCode opcode) { 67 bool CanBeImmediate(Node* node, InstructionCode opcode) { 159 InstructionCode* opcode_return, Node* node, 172 InstructionCode opcode, bool has_reverse_opcode, 173 InstructionCode reverse_opcode, 216 InstructionCode opcode, bool has_reverse_opcode, 217 InstructionCode reverse_opcode) { 223 InstructionCode opcode, FlagsContinuation* cont) { 228 InstructionCode opcode) { 254 InstructionCode opcode = kArchNop [all...] |
code-generator-mips.cc | 316 InstructionCode opcode, Instruction* instr, 601 InstructionCode opcode = instr->opcode(); [all...] |
/external/v8/src/compiler/ppc/ |
instruction-selector-ppc.cc | 85 void VisitRR(InstructionSelector* selector, InstructionCode opcode, 92 void VisitRRR(InstructionSelector* selector, InstructionCode opcode, 100 void VisitRRO(InstructionSelector* selector, InstructionCode opcode, Node* node, 111 InstructionCode opcode, Node* node) { 131 InstructionCode opcode, ImmediateMode operand_mode, 165 InstructionCode opcode, ImmediateMode operand_mode) { 191 InstructionCode opcode = kArchNop; 303 InstructionCode code = kArchStoreWithWriteBarrier; 741 void VisitPairBinop(InstructionSelector* selector, InstructionCode opcode, 742 InstructionCode opcode2, Node* node) [all...] |
/external/v8/src/compiler/mips64/ |
instruction-selector-mips64.cc | 27 InstructionOperand UseOperand(Node* node, InstructionCode opcode) { 71 bool CanBeImmediate(Node* node, InstructionCode mode) { 76 bool CanBeImmediate(int64_t value, InstructionCode opcode) { 240 InstructionCode opcode = 253 InstructionCode* opcode_return, Node* node, 266 InstructionCode opcode, bool has_reverse_opcode, 267 InstructionCode reverse_opcode, 310 InstructionCode opcode, bool has_reverse_opcode, 311 InstructionCode reverse_opcode) { 317 InstructionCode opcode, FlagsContinuation* cont) [all...] |
code-generator-mips64.cc | 327 InstructionCode opcode, Instruction* instr, 614 InstructionCode opcode = instr->opcode(); [all...] |
/external/v8/src/compiler/s390/ |
instruction-selector-s390.cc | 142 bool CanBeMemoryOperand(InstructionCode opcode, Node* user, Node* input, 274 bool S390OpcodeOnlySupport12BitDisp(InstructionCode op) { 450 Node* right, InstructionCode& opcode, 494 Node* left, Node* right, InstructionCode& opcode, 515 InstructionCode opcode, OperandModes operand_mode, 521 InstructionCode opcode, OperandModes operand_mode, 556 InstructionSelector* selector, Node* node, InstructionCode opcode, \ 562 InstructionSelector* selector, Node* node, InstructionCode opcode, \ 574 InstructionCode opcode, OperandModes operand_mode, 622 InstructionCode opcode, OperandModes operand_mode [all...] |
/external/v8/src/compiler/arm64/ |
instruction-selector-arm64.cc | 249 InstructionCode opcode = 262 Node* input_node, InstructionCode* opcode, bool try_ror) { 301 InstructionOperand* right_op, InstructionCode* opcode) { 372 uint8_t GetBinopProperties(InstructionCode opcode) { 426 InstructionCode opcode, ImmediateMode operand_mode, 550 void EmitLoad(InstructionSelector* selector, Node* node, InstructionCode opcode, 604 InstructionCode opcode = kArchNop; 705 InstructionCode code = kArchStoreWithWriteBarrier; 712 InstructionCode opcode = kArchNop; [all...] |
code-generator-arm64.cc | 368 InstructionCode opcode, Instruction* instr, 597 InstructionCode opcode = instr->opcode(); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509Extensions.java | 81 public static final ASN1ObjectIdentifier InstructionCode = new ASN1ObjectIdentifier("2.5.29.23");
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
X509Extensions.java | 83 public static final ASN1ObjectIdentifier InstructionCode = new ASN1ObjectIdentifier("2.5.29.23");
|