Searched refs:NativeRegExpMacroAssembler (Results 1 - 13 of 13) sorted by relevance

/external/v8/src/
H A Dregexp-macro-assembler.cc57 NativeRegExpMacroAssembler::NativeRegExpMacroAssembler() function in class:v8::internal::NativeRegExpMacroAssembler
62 NativeRegExpMacroAssembler::~NativeRegExpMacroAssembler() {
66 bool NativeRegExpMacroAssembler::CanReadUnaligned() {
74 const byte* NativeRegExpMacroAssembler::StringCharacterPosition(
104 NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler::Match(
157 NativeRegExpMacroAssembler::Result NativeRegExpMacroAssembler
[all...]
H A Dregexp-macro-assembler.h177 class NativeRegExpMacroAssembler: public RegExpMacroAssembler { class in namespace:v8::internal
193 NativeRegExpMacroAssembler();
194 virtual ~NativeRegExpMacroAssembler();
H A Dassembler.cc1029 Redirect(isolate, FUNCTION_ADDR(NativeRegExpMacroAssembler::GrowStack)));
1036 FUNCTION_ADDR(NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16)));
1041 NativeRegExpMacroAssembler::word_character_map_address());
H A Djsregexp.cc471 NativeRegExpMacroAssembler::Result res =
472 NativeRegExpMacroAssembler::Match(code,
478 if (res != NativeRegExpMacroAssembler::RETRY) {
479 ASSERT(res != NativeRegExpMacroAssembler::EXCEPTION ||
482 static_cast<int>(NativeRegExpMacroAssembler::SUCCESS) == RE_SUCCESS);
484 static_cast<int>(NativeRegExpMacroAssembler::FAILURE) == RE_FAILURE);
485 STATIC_ASSERT(static_cast<int>(NativeRegExpMacroAssembler::EXCEPTION)
5307 NativeRegExpMacroAssembler::Mode mode =
5308 is_ascii ? NativeRegExpMacroAssembler::ASCII
5309 : NativeRegExpMacroAssembler
[all...]
/external/v8/test/cctest/
H A Dtest-regexp.cc713 return NativeRegExpMacroAssembler::Execute(
729 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4);
743 NativeRegExpMacroAssembler::Result result =
751 CHECK_EQ(NativeRegExpMacroAssembler::SUCCESS, result);
764 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::ASCII, 4);
787 NativeRegExpMacroAssembler::Result result =
795 CHECK_EQ(NativeRegExpMacroAssembler::SUCCESS, result);
812 CHECK_EQ(NativeRegExpMacroAssembler::FAILURE, result);
821 ArchRegExpMacroAssembler m(NativeRegExpMacroAssembler::UC16, 4);
847 NativeRegExpMacroAssembler
[all...]
/external/v8/src/arm/
H A Dregexp-macro-assembler-arm.h46 class RegExpMacroAssemblerARM: public NativeRegExpMacroAssembler {
H A Dcode-stubs-arm.cc4896 __ cmp(r0, Operand(NativeRegExpMacroAssembler::SUCCESS));
4899 __ cmp(r0, Operand(NativeRegExpMacroAssembler::FAILURE));
4901 __ cmp(r0, Operand(NativeRegExpMacroAssembler::EXCEPTION));
/external/v8/src/ia32/
H A Dregexp-macro-assembler-ia32.h45 class RegExpMacroAssemblerIA32: public NativeRegExpMacroAssembler {
H A Dcode-stubs-ia32.cc3893 __ cmp(eax, NativeRegExpMacroAssembler::SUCCESS);
3896 __ cmp(eax, NativeRegExpMacroAssembler::FAILURE);
3898 __ cmp(eax, NativeRegExpMacroAssembler::EXCEPTION);
/external/v8/src/mips/
H A Dregexp-macro-assembler-mips.h48 class RegExpMacroAssemblerMIPS: public NativeRegExpMacroAssembler {
H A Dcode-stubs-mips.cc5128 __ Branch(&success, eq, v0, Operand(NativeRegExpMacroAssembler::SUCCESS));
5130 __ Branch(&failure, eq, v0, Operand(NativeRegExpMacroAssembler::FAILURE));
5132 __ Branch(&runtime, ne, v0, Operand(NativeRegExpMacroAssembler::EXCEPTION));
/external/v8/src/x64/
H A Dregexp-macro-assembler-x64.h42 class RegExpMacroAssemblerX64: public NativeRegExpMacroAssembler {
H A Dcode-stubs-x64.cc2963 __ cmpl(rax, Immediate(NativeRegExpMacroAssembler::SUCCESS));
2965 __ cmpl(rax, Immediate(NativeRegExpMacroAssembler::EXCEPTION));
2967 __ cmpl(rax, Immediate(NativeRegExpMacroAssembler::FAILURE));

Completed in 1451 milliseconds