/external/v8/test/unittests/compiler/ |
D | node-properties-unittest.cc | 52 Node* use_exception = NewMockNode(common.IfException(kNoHint), effect, node); in TEST_F() 102 Node* if_ex = NewMockNode(common.IfException(kNoHint), call, call); in TEST_F()
|
D | tail-call-optimization-unittest.cc | 67 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F() 139 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
|
D | common-operator-unittest.cc | 223 TEST_F(CommonOperatorTest, IfException) { in TEST_F() argument 227 const Operator* const op = common()->IfException(hint); in TEST_F()
|
D | graph-reducer-unittest.cc | 351 Node* exception = graph()->NewNode(common.IfException(kNoHint), effect, node); in TEST_F() 375 Node* exception = graph()->NewNode(common.IfException(kNoHint), effect, node); in TEST_F()
|
D | dead-code-elimination-unittest.cc | 131 Reduce(graph()->NewNode(common()->IfException(hint), graph()->start(), in TEST_F()
|
D | loop-peeling-unittest.cc | 484 common()->IfException(IfExceptionHint::kLocallyUncaught), call, call); in TEST_F()
|
D | scheduler-unittest.cc | 1057 common()->IfException(IfExceptionHint::kLocallyUncaught), c1, c1); in TARGET_TEST_F() 1061 common()->IfException(IfExceptionHint::kLocallyUncaught), c2, c2); in TARGET_TEST_F()
|
/external/llvm/include/llvm/IR/ |
D | Instructions.h | 3337 void init(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, 3342 Func, IfNormal, IfException, Args, Bundles, NameStr); 3345 BasicBlock *IfException, ArrayRef<Value *> Args, 3351 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, 3357 Func, IfNormal, IfException, Args, Bundles, Values, NameStr, 3361 BasicBlock *IfException, ArrayRef<Value *> Args, 3367 inline InvokeInst(Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, 3382 BasicBlock *IfException, ArrayRef<Value *> Args, 3387 Func, IfNormal, IfException, Args, None, NameStr, 3391 BasicBlock *IfException, ArrayRef<Value *> Args, [all …]
|
/external/v8/src/compiler/ |
D | common-operator.h | 134 const Operator* IfException(IfExceptionHint hint);
|
D | opcodes.h | 19 V(IfException) \
|
D | common-operator.cc | 503 const Operator* CommonOperatorBuilder::IfException(IfExceptionHint hint) { in IfException() function in v8::internal::compiler::CommonOperatorBuilder
|
D | typer.cc | 99 DECLARE_CASE(IfException) in Reduce() 143 DECLARE_CASE(IfException) in TypeNode() 187 DECLARE_METHOD(IfException) in DECLARE_METHOD() argument
|
D | js-typed-lowering.cc | 378 graph()->NewNode(common()->IfException(hint), left_conv, left_conv); in ConvertBothInputsToNumber() 380 graph()->NewNode(common()->IfException(hint), right_conv, right_conv); in ConvertBothInputsToNumber()
|
D | ast-graph-builder.cc | 4131 const Operator* op = common()->IfException(hint); in MakeNode()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 545 BasicBlock *IfException, ArrayRef<Value *> Args, in init() argument 554 Op<-1>() = IfException; in init()
|