Home
last modified time | relevance | path

Searched refs:trap_id (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/compiler/
Dinstruction-selector.h79 static FlagsContinuation ForTrap(FlagsCondition condition, TrapId trap_id, in ForTrap() argument
81 return FlagsContinuation(condition, trap_id, result); in ForTrap()
121 TrapId trap_id() const { in trap_id() function
213 FlagsContinuation(FlagsCondition condition, TrapId trap_id, Node* result) in FlagsContinuation() argument
217 trap_id_(trap_id) { in FlagsContinuation()
610 void VisitTrapIf(Node* node, TrapId trap_id);
611 void VisitTrapUnless(Node* node, TrapId trap_id);
Dcommon-operator.cc44 std::ostream& operator<<(std::ostream& os, TrapId trap_id) { in operator <<() argument
45 switch (trap_id) { in operator <<()
764 template <TrapId trap_id>
772 trap_id) {} // parameter in TrapIfOperator()
779 template <TrapId trap_id>
787 trap_id) {} // parameter in TrapUnlessOperator()
993 const Operator* CommonOperatorBuilder::TrapIf(TrapId trap_id) { in TrapIf() argument
994 switch (trap_id) { in TrapIf()
1009 trap_id); // parameter in TrapIf()
1012 const Operator* CommonOperatorBuilder::TrapUnless(TrapId trap_id) { in TrapUnless() argument
[all …]
Dcommon-operator.h71 std::ostream& operator<<(std::ostream&, TrapId trap_id);
467 const Operator* TrapIf(TrapId trap_id); in NON_EXPORTED_BASE()
468 const Operator* TrapUnless(TrapId trap_id); in NON_EXPORTED_BASE()
Dinstruction-selector.cc729 int trap_id = static_cast<int>(cont->trap_id()); in EmitWithContinuation() local
730 continuation_inputs_.push_back(g.UseImmediate(trap_id)); in EmitWithContinuation()
2885 void InstructionSelector::VisitTrapIf(Node* node, TrapId trap_id) { in VisitTrapIf() argument
2887 FlagsContinuation::ForTrap(kNotEqual, trap_id, node->InputAt(1)); in VisitTrapIf()
2891 void InstructionSelector::VisitTrapUnless(Node* node, TrapId trap_id) { in VisitTrapUnless() argument
2893 FlagsContinuation::ForTrap(kEqual, trap_id, node->InputAt(1)); in VisitTrapUnless()
Dwasm-compiler.cc936 TrapId trap_id = GetTrapIdForTrap(reason); in TrapIfTrue() local
937 Node* node = SetControl(graph()->NewNode(mcgraph()->common()->TrapIf(trap_id), in TrapIfTrue()
945 TrapId trap_id = GetTrapIdForTrap(reason); in TrapIfFalse() local
947 mcgraph()->common()->TrapUnless(trap_id), cond, Effect(), Control())); in TrapIfFalse()
/external/v8/src/compiler/ppc/
Dcode-generator-ppc.cc2150 TrapId trap_id = in AssembleArchTrap() local
2152 GenerateCallToTrap(trap_id); in AssembleArchTrap()
2156 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
2157 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
2175 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/v8/src/compiler/arm64/
Dcode-generator-arm64.cc2247 TrapId trap_id = in AssembleArchTrap() local
2249 GenerateCallToTrap(trap_id); in AssembleArchTrap()
2253 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
2254 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
2270 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc280 TrapId trap_id = in Generate() local
282 GenerateWithTrapId(trap_id); in Generate()
288 void GenerateWithTrapId(TrapId trap_id) { GenerateCallToTrap(trap_id); } in GenerateWithTrapId() argument
291 void GenerateCallToTrap(TrapId trap_id) { in GenerateCallToTrap() argument
307 __ near_call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in GenerateCallToTrap()
/external/v8/src/compiler/s390/
Dcode-generator-s390.cc2807 TrapId trap_id = in AssembleArchTrap() local
2809 GenerateCallToTrap(trap_id); in AssembleArchTrap()
2813 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
2814 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
2832 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/v8/src/compiler/mips/
Dcode-generator-mips.cc2956 TrapId trap_id = in AssembleArchTrap() local
2958 GenerateCallToTrap(trap_id); in AssembleArchTrap()
2962 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
2963 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
2981 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/v8/src/compiler/mips64/
Dcode-generator-mips64.cc3194 TrapId trap_id = in AssembleArchTrap() local
3196 GenerateCallToTrap(trap_id); in AssembleArchTrap()
3200 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
3201 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
3220 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/v8/src/compiler/arm/
Dcode-generator-arm.cc2898 TrapId trap_id = in AssembleArchTrap() local
2900 GenerateCallToTrap(trap_id); in AssembleArchTrap()
2904 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
2905 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
2923 __ Call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()
/external/u-boot/arch/arm/include/asm/arch-mx7/
Dimx-regs.h1024 u32 trap_id[4]; /* Trap ID */ member
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc3949 TrapId trap_id = in AssembleArchTrap() local
3951 GenerateCallToTrap(trap_id); in AssembleArchTrap()
3955 void GenerateCallToTrap(TrapId trap_id) { in AssembleArchTrap() argument
3956 if (trap_id == TrapId::kInvalid) { in AssembleArchTrap()
3971 __ wasm_call(static_cast<Address>(trap_id), RelocInfo::WASM_STUB_CALL); in AssembleArchTrap()